2020-08-18 13:54:53 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-10-13 22:57:06 +02:00
|
|
|
"module": "es2020",
|
|
|
|
"target": "es2018",
|
2020-09-08 18:45:03 +02:00
|
|
|
"moduleResolution": "node",
|
2020-10-13 22:57:06 +02:00
|
|
|
"lib": ["es2018", "dom"],
|
|
|
|
"typeRoots": [
|
|
|
|
"typings",
|
|
|
|
"node_modules/@types"
|
|
|
|
],
|
2020-09-08 18:45:03 +02:00
|
|
|
"outDir": "build",
|
|
|
|
|
2020-08-21 15:01:04 +02:00
|
|
|
"removeComments": false,
|
2020-10-13 22:57:06 +02:00
|
|
|
"preserveConstEnums": true,
|
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
"experimentalDecorators": true,
|
2020-08-21 15:01:04 +02:00
|
|
|
"sourceMap": true,
|
2020-10-13 22:57:06 +02:00
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
2020-08-21 15:01:04 +02:00
|
|
|
"strictNullChecks": true,
|
2020-10-13 22:57:06 +02:00
|
|
|
"importHelpers": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"resolveJsonModule": true,
|
2020-08-18 13:54:53 +02:00
|
|
|
},
|
2020-08-21 15:01:04 +02:00
|
|
|
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
|
2020-09-08 18:45:03 +02:00
|
|
|
"include": ["src"],
|
|
|
|
}
|