2023-06-21 11:21:04 +00:00
|
|
|
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
2018-08-02 13:41:30 +00:00
|
|
|
{
|
2020-10-07 12:29:59 +00:00
|
|
|
"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,
|
2020-10-07 12:29:59 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": false,
|
2023-06-21 11:21:04 +00:00
|
|
|
"downlevelIteration": true,
|
2020-10-07 12:29:59 +00:00
|
|
|
"experimentalDecorators": true,
|
2023-06-21 11:21:04 +00:00
|
|
|
"moduleResolution": "node",
|
2020-10-07 12:29:59 +00:00
|
|
|
"importHelpers": true,
|
2022-12-16 10:51:58 +00:00
|
|
|
"target": "ES2022",
|
2023-06-21 11:21:04 +00:00
|
|
|
"module": "ES2022",
|
|
|
|
"useDefineForClassFields": false,
|
2022-05-20 11:01:18 +00:00
|
|
|
"lib": ["ESNext", "DOM"],
|
2020-10-07 12:29:59 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"paths": {
|
2022-04-25 08:20:58 +00:00
|
|
|
"@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
|
|
|
}
|
2020-10-07 12:29:59 +00:00
|
|
|
},
|
|
|
|
"angularCompilerOptions": {
|
2023-06-21 11:21:04 +00:00
|
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
|
|
"strictInjectionParameters": true,
|
|
|
|
"strictInputAccessModifiers": true,
|
|
|
|
"strictTemplates": false
|
2020-10-07 12:29:59 +00:00
|
|
|
}
|
2018-08-02 13:41:30 +00:00
|
|
|
}
|