control-center/tsconfig.json

32 lines
1.0 KiB
JSON
Raw Normal View History

{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"downlevelIteration": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "ESNext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
2022-12-16 10:51:58 +00:00
"target": "ES2022",
"typeRoots": ["./node_modules/@types"],
"lib": ["ESNext", "DOM"],
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
2021-08-05 15:26:06 +00:00
"skipLibCheck": false,
"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/*"]
2022-12-16 10:51:58 +00:00
},
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}