Files
moodle/tsconfig.json
meirzamoodleandAndrew Nicols f6f2b6fe62 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.
2026-03-15 20:48:04 +08:00

13 lines
306 B
JSON

{
"extends": "./tsconfig.aliases.json", // Added to extend the generated aliases.
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"skipLibCheck": true
},
"include": ["public/**/esm/src/**/*"]
}