26 lines
601 B
JSON
26 lines
601 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"noImplicitAny": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"stripInternal": true,
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node",
|
|
"newLine": "LF",
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"resolveJsonModule": true,
|
|
},
|
|
"include": [
|
|
"src",
|
|
"test"
|
|
]
|
|
}
|