control-center/tsconfig.json

39 lines
1.3 KiB
JSON
Raw Normal View History

2023-06-21 11:21:04 +00:00
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
2023-06-21 11:21:04 +00:00
"forceConsistentCasingInFileNames": true,
"strict": false,
"noImplicitOverride": false,
"noPropertyAccessFromIndexSignature": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
"sourceMap": true,
"declaration": false,
2023-06-21 11:21:04 +00:00
"downlevelIteration": true,
"experimentalDecorators": true,
2023-06-21 11:21:04 +00:00
"moduleResolution": "node",
"importHelpers": true,
2022-12-16 10:51:58 +00:00
"target": "ES2022",
2023-06-21 11:21:04 +00:00
"module": "ES2022",
"useDefineForClassFields": false,
"lib": ["ESNext", "DOM"],
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
2024-01-09 08:23:05 +00:00
"skipLibCheck": true,
"paths": {
"@cc/*": ["src/*"],
2023-04-21 12:49:05 +00:00
// 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/*"]
2023-06-21 11:21:04 +00:00
}
},
"angularCompilerOptions": {
2023-06-21 11:21:04 +00:00
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": false
}
}