Initial commit

This commit is contained in:
Fishandchips321 2025-12-19 13:49:46 +00:00
commit bcf92c21e6
16 changed files with 6384 additions and 0 deletions

14
frontend/tsconfig.json Normal file
View file

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