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