build: fix tsconfig

This commit is contained in:
eneller
2026-02-28 01:33:59 +01:00
parent 05090ebb14
commit e901ff99b0
4 changed files with 5 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"outDir": "../dist/out-tsc/client",
"types": ["@angular/localize"]
},
"include": ["src/**/*.ts"],

View File

@@ -1,7 +1,7 @@
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "../../tsconfig.json",
"extends": "../tsconfig.json",
"compileOnSave": false,
"compilerOptions": {
"strict": true,
@@ -14,7 +14,6 @@
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "preserve"
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,

View File

@@ -3,7 +3,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/spec",
"outDir": "../dist/out-tsc/spec",
"types": ["vitest/globals", "@angular/localize"]
},
"include": ["src/**/*.d.ts", "src/**/*.spec.ts"]