junderw
6 years ago
3 changed files with 31 additions and 1 deletions
@ -1,4 +1,5 @@ |
|||||
coverage |
coverage |
||||
|
dist |
||||
node_modules |
node_modules |
||||
.nyc_output |
.nyc_output |
||||
npm-debug.log |
npm-debug.log |
||||
|
@ -0,0 +1,27 @@ |
|||||
|
{ |
||||
|
"compilerOptions": { |
||||
|
"target": "ES2015", |
||||
|
"module": "commonjs", |
||||
|
"outDir": "./dist", |
||||
|
"rootDir": "./", |
||||
|
"types": [ |
||||
|
"node" |
||||
|
], |
||||
|
"allowJs": true, |
||||
|
"strict": false, |
||||
|
"noImplicitAny": false, |
||||
|
"strictNullChecks": false, |
||||
|
"strictFunctionTypes": false, |
||||
|
"strictBindCallApply": false, |
||||
|
"strictPropertyInitialization": false, |
||||
|
"noImplicitThis": false, |
||||
|
"alwaysStrict": false, |
||||
|
"esModuleInterop": true |
||||
|
}, |
||||
|
"include": [ |
||||
|
"src/**/*" |
||||
|
], |
||||
|
"exclude": [ |
||||
|
"**/*.spec.ts" |
||||
|
] |
||||
|
} |
Loading…
Reference in new issue