MDL-88124 core: Update tsconfig moduleResolution to bundler

Switch moduleResolution from "node" to "bundler" and remove the
explicit baseUrl, as these settings are now handled by the
extended tsconfig.aliases.json configuration.
This commit is contained in:
meirzamoodle
2026-03-15 20:48:04 +08:00
committed by Andrew Nicols
parent c4855443c6
commit f6f2b6fe62
+1 -2
View File
@@ -1,10 +1,9 @@
{
"extends": "./tsconfig.aliases.json", // Added to extend the generated aliases.
"compilerOptions": {
"baseUrl": ".",
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"skipLibCheck": true