Switch moduleResolution from "node" to "bundler" and remove the explicit baseUrl, as these settings are now handled by the extended tsconfig.aliases.json configuration.
13 lines
306 B
JSON
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/**/*"]
|
|
}
|