From 552fce1d25524dd45570d95733bb49924de77780 Mon Sep 17 00:00:00 2001 From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Mon, 29 Dec 2025 06:11:31 +0000 Subject: [PATCH] fix(ts): set moduleResolution to bundler --- libs/ui/tsconfig.json | 1 + tsconfig.base.json | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ui/tsconfig.json b/libs/ui/tsconfig.json index 096c8eddd..6cf9b803c 100644 --- a/libs/ui/tsconfig.json +++ b/libs/ui/tsconfig.json @@ -14,6 +14,7 @@ } ], "compilerOptions": { + "moduleResolution": "bundler", "target": "es2022", // TODO: Remove once solved in tsconfig.base.json "strict": false, diff --git a/tsconfig.base.json b/tsconfig.base.json index 909e1757a..34ed5d559 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -4,9 +4,8 @@ "rootDir": ".", "sourceMap": true, "declaration": false, - "moduleResolution": "bundler", + "moduleResolution": "node", "emitDecoratorMetadata": true, - "esModuleInterop": true, "experimentalDecorators": true, "importHelpers": true, "target": "es2015",