chore: initial environment setup

This commit is contained in:
2026-02-24 11:38:36 -06:00
commit b340b1790f
18 changed files with 1214 additions and 0 deletions

11
tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"paths": {
"@/*": ["./src/*"],
"@styled-system/*": ["./styled-system/*"]
}
},
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"]
}