Init astro app

This commit is contained in:
2025-07-13 19:56:36 -03:00
parent d5ee4b91d5
commit d0299ca1a1
14 changed files with 4808 additions and 0 deletions

20
astro-app/tsconfig.json Normal file
View File

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