First commit

This commit is contained in:
Jorge Vargas 2025-03-10 18:11:13 -06:00
commit 5daf2dc6b9
17 changed files with 5649 additions and 0 deletions

15
tsconfig.json Normal file
View file

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