astro-app/tsconfig.json

14 lines
212 B
JSON
Raw Normal View History

2025-03-17 18:11:25 -04:00
{
"extends": "astro/tsconfigs/strict",
2025-03-27 01:03:33 -04:00
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}