first deploy with astro

This commit is contained in:
2025-03-11 20:57:48 -03:00
parent 772cc74550
commit ac4d429eca
21 changed files with 6094 additions and 13 deletions

14
eduseg/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"
}
}