build: fix tsconfig

This commit is contained in:
eneller
2026-02-28 02:08:56 +01:00
parent c4efd793e2
commit 096af359f0
3 changed files with 6 additions and 10 deletions

View File

@@ -20,6 +20,7 @@
"build": {
"builder": "@angular/build:application",
"options": {
"outputPath": "../dist/out-tsc/client",
"browser": "src/main.ts",
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "less",

View File

@@ -9,11 +9,9 @@
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"isolatedModules": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"importHelpers": true,
"target": "ES2022",
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,

View File

@@ -5,13 +5,10 @@
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "nodenext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2017",
"module": "nodenext",
"lib": ["es2020", "dom"]
"moduleResolution": "node",
"target": "ES2022",
"module": "es2022",
"lib": ["es2022", "dom"]
},
"exclude": ["node_modules"]
}