Initial commit

Created from https://vercel.com/new
This commit is contained in:
SirBlobby
2025-11-19 17:48:12 +00:00
commit 01b3dba533
125 changed files with 12891 additions and 0 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist", "public/pagefind"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}