From dc3d3e94c6b5c07ce18c4b687088be7d28df92de Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sun, 16 Aug 2026 17:40:49 +0700 Subject: [PATCH] fix(client): clean up typescript target configurations --- apps/client/tsconfig.app.json | 1 - apps/client/tsconfig.json | 3 +-- apps/client/tsconfig.spec.json | 3 +-- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/apps/client/tsconfig.app.json b/apps/client/tsconfig.app.json index 56a5535d4..8e4876ef3 100644 --- a/apps/client/tsconfig.app.json +++ b/apps/client/tsconfig.app.json @@ -4,7 +4,6 @@ "outDir": "../../dist/out-tsc", "types": ["node"], "typeRoots": ["../../node_modules/@types"], - "target": "ES2022", "useDefineForClassFields": false }, "files": ["src/main.ts", "src/polyfills.ts"], diff --git a/apps/client/tsconfig.json b/apps/client/tsconfig.json index ae0aaf61a..710e76401 100644 --- a/apps/client/tsconfig.json +++ b/apps/client/tsconfig.json @@ -22,7 +22,6 @@ "compilerOptions": { "lib": ["dom", "es2022"], "module": "preserve", - "strictNullChecks": true, - "target": "es2020" + "strictNullChecks": true } } diff --git a/apps/client/tsconfig.spec.json b/apps/client/tsconfig.spec.json index 36a2e401c..8afad0f4c 100644 --- a/apps/client/tsconfig.spec.json +++ b/apps/client/tsconfig.spec.json @@ -4,8 +4,7 @@ "outDir": "../../dist/out-tsc", "module": "preserve", "isolatedModules": true, - "types": ["jest", "node"], - "target": "es2016" + "types": ["jest", "node"] }, "files": ["src/test-setup.ts"], "include": ["**/*.spec.ts", "**/*.test.ts", "**/*.d.ts", "jest.config.ts"]