From ae955b5a1651f592d8c690a3324a8d8602e88cd3 Mon Sep 17 00:00:00 2001 From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Mon, 29 Dec 2025 11:19:33 +0000 Subject: [PATCH] feat(ts): remove duplicates of bundler module resolution --- apps/api/tsconfig.app.json | 1 - apps/client/tsconfig.app.json | 1 - apps/client/tsconfig.json | 1 - apps/client/tsconfig.spec.json | 1 - libs/common/tsconfig.json | 1 - libs/common/tsconfig.spec.json | 1 - libs/ui/tsconfig.json | 1 - libs/ui/tsconfig.spec.json | 1 - tsconfig.base.json | 2 +- 9 files changed, 1 insertion(+), 9 deletions(-) diff --git a/apps/api/tsconfig.app.json b/apps/api/tsconfig.app.json index 45a4f8367..8624cf568 100644 --- a/apps/api/tsconfig.app.json +++ b/apps/api/tsconfig.app.json @@ -1,7 +1,6 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "moduleResolution": "bundler", "outDir": "../../dist/out-tsc", "types": ["node"], "emitDecoratorMetadata": true, diff --git a/apps/client/tsconfig.app.json b/apps/client/tsconfig.app.json index 6f3ea7448..56a5535d4 100644 --- a/apps/client/tsconfig.app.json +++ b/apps/client/tsconfig.app.json @@ -1,7 +1,6 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "moduleResolution": "bundler", "outDir": "../../dist/out-tsc", "types": ["node"], "typeRoots": ["../../node_modules/@types"], diff --git a/apps/client/tsconfig.json b/apps/client/tsconfig.json index 48be8f223..885751abd 100644 --- a/apps/client/tsconfig.json +++ b/apps/client/tsconfig.json @@ -21,7 +21,6 @@ "compilerOptions": { "lib": ["dom", "es2022"], "module": "preserve", - "moduleResolution": "bundler", "target": "es2020" } } diff --git a/apps/client/tsconfig.spec.json b/apps/client/tsconfig.spec.json index c703976bf..36a2e401c 100644 --- a/apps/client/tsconfig.spec.json +++ b/apps/client/tsconfig.spec.json @@ -3,7 +3,6 @@ "compilerOptions": { "outDir": "../../dist/out-tsc", "module": "preserve", - "moduleResolution": "bundler", "isolatedModules": true, "types": ["jest", "node"], "target": "es2016" diff --git a/libs/common/tsconfig.json b/libs/common/tsconfig.json index 54feb703a..a14e0fc44 100644 --- a/libs/common/tsconfig.json +++ b/libs/common/tsconfig.json @@ -12,7 +12,6 @@ ], "compilerOptions": { "module": "preserve", - "moduleResolution": "bundler", "lib": ["dom", "es2022"] } } diff --git a/libs/common/tsconfig.spec.json b/libs/common/tsconfig.spec.json index 41f2c6cda..864945e11 100644 --- a/libs/common/tsconfig.spec.json +++ b/libs/common/tsconfig.spec.json @@ -3,7 +3,6 @@ "compilerOptions": { "outDir": "../../dist/out-tsc", "module": "preserve", - "moduleResolution": "bundler", "isolatedModules": true, "types": ["jest", "node"] }, diff --git a/libs/ui/tsconfig.json b/libs/ui/tsconfig.json index 6afa366b0..04f4630bc 100644 --- a/libs/ui/tsconfig.json +++ b/libs/ui/tsconfig.json @@ -16,7 +16,6 @@ "compilerOptions": { "lib": ["dom", "es2022"], "module": "preserve", - "moduleResolution": "bundler", "target": "es2020", // TODO: Remove once solved in tsconfig.base.json "strict": false, diff --git a/libs/ui/tsconfig.spec.json b/libs/ui/tsconfig.spec.json index c703976bf..36a2e401c 100644 --- a/libs/ui/tsconfig.spec.json +++ b/libs/ui/tsconfig.spec.json @@ -3,7 +3,6 @@ "compilerOptions": { "outDir": "../../dist/out-tsc", "module": "preserve", - "moduleResolution": "bundler", "isolatedModules": true, "types": ["jest", "node"], "target": "es2016" diff --git a/tsconfig.base.json b/tsconfig.base.json index 34ed5d559..f31d245c8 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -4,7 +4,7 @@ "rootDir": ".", "sourceMap": true, "declaration": false, - "moduleResolution": "node", + "moduleResolution": "bundler", "emitDecoratorMetadata": true, "experimentalDecorators": true, "importHelpers": true,