From 9045e7e3474f7a121f0181ac5b28783bd0495973 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Tue, 2 Jun 2026 19:14:50 +0700 Subject: [PATCH] chore(backend): switch moduleResolution to bundler and remove baseUrl from tsconfig --- services/backend/tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/services/backend/tsconfig.json b/services/backend/tsconfig.json index 23ce02e..f853b4b 100644 --- a/services/backend/tsconfig.json +++ b/services/backend/tsconfig.json @@ -3,7 +3,7 @@ "target": "ES2020", "module": "ES2020", "lib": ["ES2020"], - "moduleResolution": "node", + "moduleResolution": "bundler", "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, @@ -15,7 +15,6 @@ "sourceMap": true, "outDir": "./dist", "rootDir": "./src", - "baseUrl": ".", "paths": { "@/*": ["./src/*"] }