Initial commit from Astro

This commit is contained in:
houston[bot]
2025-08-02 13:27:23 -06:00
committed by Ignacio
commit c636f09699
131 changed files with 26084 additions and 0 deletions

34
tsconfig.json Normal file
View File

@@ -0,0 +1,34 @@
{
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"noUnusedLocals": false,
"noUnusedParameters": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitAny": true,
"noImplicitThis": true,
"baseUrl": ".",
"lib": [
"es2022",
"dom",
"dom.iterable"
],
"paths": {
"@/*": [
"src/*"
]
},
},
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"node_modules",
"**/node_modules/*",
".vscode",
"dist"
]
}