add react

This commit is contained in:
2025-02-02 00:58:28 -05:00
parent ead9309e30
commit f5f335ff33
16 changed files with 258 additions and 31 deletions

View File

@ -1,8 +1,15 @@
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"noImplicitAny": true
"noImplicitAny": true,
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}
}