29 lines
539 B
JSON
29 lines
539 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2017",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"es6"
|
||
|
],
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"importHelpers": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"declaration": false,
|
||
|
"noEmitOnError": false,
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"strict": true,
|
||
|
"strictFunctionTypes": true,
|
||
|
"sourceMap": true,
|
||
|
"preserveConstEnums": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"build",
|
||
|
"tools",
|
||
|
"src/scripts",
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|