diff --git a/client/angular.json b/client/angular.json index 975f729..d65a25e 100644 --- a/client/angular.json +++ b/client/angular.json @@ -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", diff --git a/client/tsconfig.json b/client/tsconfig.json index b769d31..ba78c71 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -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, diff --git a/tsconfig.json b/tsconfig.json index 9462d83..7e403b1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,11 +5,9 @@ "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, - "moduleResolution": "nodenext", - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "target": "es2017", - "module": "nodenext", + "moduleResolution": "node", + "target": "ES2022", + "module": "es2022", "lib": ["es2020", "dom"] }, "exclude": ["node_modules"]