dashboard/tsconfig.json

39 lines
1.3 KiB
JSON
Raw Normal View History

/* To learn more about this file see: https://angular.io/config/tsconfig. */
2018-11-27 09:06:26 +00:00
{
2018-11-30 13:26:03 +00:00
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": false,
"noImplicitOverride": false,
"noPropertyAccessFromIndexSignature": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
2018-11-30 13:26:03 +00:00
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
2018-11-30 13:26:03 +00:00
"experimentalDecorators": true,
"moduleResolution": "node",
2018-11-30 13:26:03 +00:00
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": ["ESNext", "DOM"],
2019-04-09 14:39:03 +00:00
"allowSyntheticDefaultImports": true,
2019-08-12 13:34:18 +00:00
"resolveJsonModule": true,
2021-08-02 15:06:09 +00:00
"skipLibCheck": true,
"paths": {
"@dsh/*": ["src/*"],
// necessary for local work with the library (ng-core), so that the node does not use the second angular from the local library node_modules
"@angular/*": ["./node_modules/@angular/*"]
}
2020-03-30 13:40:22 +00:00
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": false,
"strictTemplates": false
2018-11-30 13:26:03 +00:00
}
2018-11-27 09:06:26 +00:00
}