chore(backend): switch moduleResolution to bundler and remove baseUrl from tsconfig

This commit is contained in:
MythEclipse
2026-06-02 19:14:50 +07:00
parent 61b5a59ed3
commit 9045e7e347
+1 -2
View File
@@ -3,7 +3,7 @@
"target": "ES2020", "target": "ES2020",
"module": "ES2020", "module": "ES2020",
"lib": ["ES2020"], "lib": ["ES2020"],
"moduleResolution": "node", "moduleResolution": "bundler",
"esModuleInterop": true, "esModuleInterop": true,
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"strict": true, "strict": true,
@@ -15,7 +15,6 @@
"sourceMap": true, "sourceMap": true,
"outDir": "./dist", "outDir": "./dist",
"rootDir": "./src", "rootDir": "./src",
"baseUrl": ".",
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": ["./src/*"]
} }