2018-04-26 15:33:47 +02:00
|
|
|
{
|
|
|
|
|
//"allowUnusedLabels": true,
|
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
|
"buildOnSave": false,
|
|
|
|
|
"compileOnSave": true,
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"emitBOM": false,
|
2025-11-19 14:22:45 +01:00
|
|
|
"esModuleInterop": true,
|
2018-04-26 15:33:47 +02:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2025-11-19 14:22:45 +01:00
|
|
|
"lib": ["dom", "es2015", "scripthost"],
|
2018-04-26 15:33:47 +02:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
//"noImplicitAny": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
//"noUnusedLocals": true,
|
|
|
|
|
//"noUnusedParameters": true,
|
|
|
|
|
"outDir": "../../lib",
|
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
|
"removeComments": true,
|
2019-04-22 14:49:42 +02:00
|
|
|
"rootDir": "./src",
|
2018-04-26 15:33:47 +02:00
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"strictNullChecks": true,
|
2025-11-19 14:22:45 +01:00
|
|
|
"target": "es2015"
|
2018-04-26 15:33:47 +02:00
|
|
|
}
|
2025-11-19 14:22:45 +01:00
|
|
|
}
|