see https://github.com/withastro/astro/issues/10174#issuecomment-2026297879 for the why the tsconfig.json change
14 lines
240 B
JSON
14 lines
240 B
JSON
{
|
|
"extends": "astro/tsconfigs/base",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"strictNullChecks": true,
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"outDir": "dist"
|
|
}
|
|
}
|