2020-08-18 13:54:53 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
//"allowUnreachableCode": true,
|
|
|
|
//"noUnusedLocals": false,
|
|
|
|
//"noUnusedParameters": false,
|
|
|
|
"removeComments": false,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"outDir": "build",
|
2020-08-20 02:10:42 +02:00
|
|
|
"module": "es2020",
|
2020-08-18 13:54:53 +02:00
|
|
|
"moduleResolution": "node",
|
2020-08-20 02:05:34 +02:00
|
|
|
"target": "es2018",
|
|
|
|
"lib": ["es2018", "dom"],
|
2020-08-18 13:54:53 +02:00
|
|
|
"typeRoots": [
|
|
|
|
"typings",
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"formatCodeOptions": {
|
|
|
|
"indentSize": 2,
|
|
|
|
"tabSize": 2
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
|
|
|
}
|