27 lines
666 B
JSON
27 lines
666 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"isolatedModules": false,
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"declaration": false,
|
||
|
"noImplicitAny": false,
|
||
|
"noImplicitUseStrict": false,
|
||
|
"strictNullChecks": true,
|
||
|
"removeComments": true,
|
||
|
"noLib": false,
|
||
|
"preserveConstEnums": true,
|
||
|
"suppressImplicitAnyIndexErrors": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
],
|
||
|
"compileOnSave": true,
|
||
|
"buildOnSave": false,
|
||
|
"atom": {
|
||
|
"rewriteTsconfig": false
|
||
|
}
|
||
|
}
|