2020-08-18 13:54:53 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-09-08 18:26:51 +02:00
|
|
|
"allowSyntheticDefaultImports": false,
|
2020-08-21 15:01:04 +02:00
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
2020-09-08 18:26:51 +02:00
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
"esModuleInterop": false,
|
2020-08-18 13:54:53 +02:00
|
|
|
"experimentalDecorators": true,
|
2020-08-21 15:01:04 +02:00
|
|
|
"importHelpers": true,
|
|
|
|
"incremental": false,
|
2020-09-08 18:26:51 +02:00
|
|
|
"lib": ["es2018", "dom"],
|
2020-08-21 15:01:04 +02:00
|
|
|
"listFiles": false,
|
2020-09-08 18:26:51 +02:00
|
|
|
"module": "es2020",
|
|
|
|
"moduleResolution": "node",
|
2020-08-21 15:01:04 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-08-18 13:54:53 +02:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
2020-08-21 15:01:04 +02:00
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noUnusedParameters": false,
|
2020-09-08 18:26:51 +02:00
|
|
|
"outDir": "build",
|
2020-08-21 15:01:04 +02:00
|
|
|
"preserveConstEnums": true,
|
|
|
|
"pretty": true,
|
|
|
|
"removeComments": false,
|
2020-09-08 18:26:51 +02:00
|
|
|
"resolveJsonModule": true,
|
2020-08-18 13:54:53 +02:00
|
|
|
"skipLibCheck": true,
|
2020-08-21 15:01:04 +02:00
|
|
|
"sourceMap": true,
|
|
|
|
"strict": false,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
2020-08-20 02:05:34 +02:00
|
|
|
"target": "es2018",
|
2020-08-21 15:01:04 +02:00
|
|
|
"typeRoots": ["typings", "node_modules/@types"]
|
2020-08-18 13:54:53 +02:00
|
|
|
},
|
2020-08-21 15:01:04 +02:00
|
|
|
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
|
|
|
|
"include": ["src"]
|
2020-08-18 13:54:53 +02:00
|
|
|
}
|