2017-03-19 08:20:35 +00:00
|
|
|
{
|
2019-08-16 13:02:54 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"outDir": "./dist",
|
2019-08-16 13:27:17 +00:00
|
|
|
"module": "commonjs"
|
2019-08-16 13:02:54 +00:00
|
|
|
},
|
2019-08-16 14:01:55 +00:00
|
|
|
"target": "es5",
|
|
|
|
"lib": [
|
|
|
|
"es2016"
|
|
|
|
],
|
|
|
|
"sourceMap": true,
|
2019-08-21 19:40:19 +00:00
|
|
|
"declaration": true,
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
"exclude": ["tests", "node_modules"]
|
2018-11-26 01:00:37 +00:00
|
|
|
}
|