2019-09-09 20:16:28 +00:00
|
|
|
{
|
2017-03-23 21:38:12 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2017-03-26 01:38:09 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": false,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"stripInternal": true,
|
|
|
|
"strictNullChecks": true,
|
2017-07-20 19:39:08 +00:00
|
|
|
"moduleResolution": "node",
|
2018-04-15 16:13:33 +00:00
|
|
|
"newLine": "LF",
|
2019-08-27 17:54:01 +00:00
|
|
|
"outDir": "dist",
|
2018-04-15 16:13:33 +00:00
|
|
|
"lib": [
|
|
|
|
"es2017"
|
2019-06-07 22:12:29 +00:00
|
|
|
],
|
|
|
|
"resolveJsonModule": true,
|
2017-12-31 16:28:41 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2017-05-03 17:12:25 +00:00
|
|
|
"src",
|
|
|
|
"test"
|
2017-04-02 22:28:38 +00:00
|
|
|
]
|
2017-12-31 16:28:41 +00:00
|
|
|
}
|