2019-09-25 22:13:20 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-07-22 02:24:12 -04:00
|
|
|
"alwaysStrict": true,
|
2019-09-25 22:13:20 -04:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2021-07-22 02:24:12 -04:00
|
|
|
"noImplicitReturns": true,
|
2021-07-22 02:47:41 -04:00
|
|
|
"noUnusedLocals": true,
|
2019-09-25 22:13:20 -04:00
|
|
|
"target": "es2015",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"sourceMap": true,
|
2021-07-22 02:38:44 -04:00
|
|
|
"strictNullChecks": true,
|
2019-09-25 22:13:20 -04:00
|
|
|
"outDir": "./lib",
|
|
|
|
"types": [
|
2019-11-13 23:38:19 -05:00
|
|
|
"node",
|
|
|
|
"mocha"
|
2019-09-25 22:13:20 -04:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./src/**/*"
|
|
|
|
]
|
|
|
|
}
|