Populated with a template

This commit is contained in:
2025-06-10 19:41:26 -07:00
parent 0f0025219c
commit e2c68b39b4
35 changed files with 8543 additions and 1 deletions

15
tsconfig.json Normal file
View File

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