Skip to content

Commit

Permalink
tsconfig changes, fixed broken keyboard typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bvego committed Jun 25, 2019
1 parent 1c76037 commit f962994
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nope-validator",
"version": "0.2.0",
"version": "0.3.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import NopeObject from './NopeObject';
import NopeString from './NopeString';
import NopeNumber from './NopeNumber';
import NopeBoolean from './NopeBooolean';
import NopeBoolean from './NopeBoolean';
import NopeDate from './NopeDate';
import NopeReference from './NopeReference';

Expand Down
13 changes: 8 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"compilerOptions": {
"target": "es5",
"module": "umd",
"module": "commonjs",
"lib": ["es2017", "es7", "es6", "dom"],
"declaration": true,
"outDir": "./lib",
"outDir": "lib",
"strict": true,
"esModuleInterop": true
},
"include": ["src"],
"exclude": ["node_modules", "**/__tests__/*"]
}
"exclude": [
"node_modules",
"dist"
]
}

0 comments on commit f962994

Please sign in to comment.