fix: tsconfig

This commit is contained in:
eneller
2026-02-28 02:08:56 +01:00
parent c4efd793e2
commit 5f41d26bc4
3 changed files with 5 additions and 8 deletions

View File

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

View File

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

View File

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