16 lines
271 B
JSON
16 lines
271 B
JSON
|
|
{
|
||
|
|
"extends": "astro/tsconfigs/strict",
|
||
|
|
"include": [
|
||
|
|
".astro/types.d.ts",
|
||
|
|
"**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"dist"
|
||
|
|
],
|
||
|
|
"compilerOptions": {
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"jsxImportSource": "react",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"esModuleInterop": true
|
||
|
|
}
|
||
|
|
}
|