be5f5775ef
- ng update @angular/core@20 @angular/cli@20 @angular/material@20 @angular-eslint@20 @angular/google-maps@20 - Remove ng-chartist (abandoned, incompatible with Angular 20): replace <x-chartist> with <app-bars-chart> in dropzones-bar and jumps-by-month - Migrate all constructor injection to inject() function (ng generate @angular/core:inject, 67 files) - TypeScript 5.5 → 5.9.3 - DOCUMENT import moved from @angular/common to @angular/core (automatic migration) - tsconfig moduleResolution updated to "bundler"
60 lines
2.3 KiB
JSON
60 lines
2.3 KiB
JSON
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"rootDir": "./",
|
|
"paths": {
|
|
"@app/*": ["src/app/*"],
|
|
"@components/*": ["src/app/components/*"],
|
|
"@components": ["src/app/components"],
|
|
"@core/*": ["src/app/core/*"],
|
|
"@models": ["src/app/core/models"],
|
|
"@models/*": ["src/app/core/models/*"],
|
|
"@services": ["src/app/core/services"],
|
|
"@services/*": ["src/app/core/services/*"],
|
|
"@guards": ["src/app/core/guards"],
|
|
"@guards/*": ["src/app/core/guards/*"],
|
|
"@interceptors": ["src/app/core/interceptors"],
|
|
"@interceptors/*": ["src/app/core/interceptors/*"],
|
|
"@resolvers": ["src/app/core/resolvers"],
|
|
"@resolvers/*": ["src/app/core/resolvers/*"],
|
|
"@viewmodels": ["src/app/core/viewmodels"],
|
|
"@viewmodels/*": ["src/app/core/viewmodels/*"],
|
|
"@interfaces": ["src/app/core/interfaces"],
|
|
"@interfaces/*": ["src/app/core/interfaces/*"],
|
|
"@constants": ["src/app/core/constants"],
|
|
"@constants/*": ["src/app/core/constants/*"],
|
|
"@environments/*": ["src/environments/*"],
|
|
"@data/*": ["src/files-data/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@styles/*": ["src/styles/*"]
|
|
},
|
|
"outDir": "./dist/out-tsc",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "bundler",
|
|
"importHelpers": true,
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"useDefineForClassFields": false,
|
|
"lib": ["ES2022", "dom"],
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"strictTemplates": true
|
|
}
|
|
}
|