This commit is contained in:
2025-01-22 10:36:58 -06:00
commit 112d9dd063
14 changed files with 4558 additions and 0 deletions

14
tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js"
}
}