Files
flights_web/ClientApp/tsconfig.json
gnezim d6c6634563 fix: configure Angular 12 compatibility with Node 16
- Remove NODE_OPTIONS openssl-legacy-provider flags (Node 16 incompatible)
- Add skipLibCheck to tsconfig for Leaflet type compatibility
- Upgrade @types/leaflet to 1.7.11 for Node 16 compatibility
- Project now builds and runs successfully with Node 16.20.2
2026-04-04 20:05:20 +03:00

85 lines
1.7 KiB
JSON

{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "es2020",
"moduleResolution": "node",
"target": "es2017",
"skipLibCheck": true,
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
],
"paths": {
"@app/*": [
"src/app/*"
],
"@components/*": [
"src/app/components/*"
],
"@shared": [
"src/app/shared/index"
],
"@shared/*": [
"src/app/shared/*"
],
"@modules/*": [
"src/app/modules/*"
],
"@typings/*": [
"src/typings/*"
],
"@utils/*": [
"src/app/utils/*"
],
"@online-board/*": [
"src/app/features/online-board/*"
],
"@components": [
"src/app/modules/components/index"
],
"@toolkit/*": [
"src/app/toolkit/*"
],
"@board": [
"src/app/modules/pages/board/index"
],
"@schedule/*": [
"src/app/features/schedule/*"
],
"@environment": [
"src/environments/environment"
]
},
"types": [
"node"
]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.d.ts"
],
"exclude": [
"**/appsettings.json",
"**/appsettings.Development.json",
"**/*.stories.*",
"**/*.mock.*",
]
}