16 lines
302 B
JSON
16 lines
302 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": ["src/**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true
|
|
}
|
|
}
|