mirror of
https://github.com/valitydev/control-center.git
synced 2024-11-06 02:25:17 +00:00
32 lines
1.0 KiB
JSON
32 lines
1.0 KiB
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"downlevelIteration": true,
|
|
"outDir": "./dist/out-tsc",
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"target": "ES2022",
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"lib": ["ESNext", "DOM"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": false,
|
|
"paths": {
|
|
"@cc/*": ["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/*"]
|
|
},
|
|
"useDefineForClassFields": false
|
|
},
|
|
"angularCompilerOptions": {
|
|
"fullTemplateTypeCheck": true,
|
|
"strictInjectionParameters": true
|
|
}
|
|
}
|