feat: add initial website infrastructure

This commit is contained in:
2026-03-07 20:02:34 +01:00
commit 3e8a34ae35
20 changed files with 8337 additions and 0 deletions

9
tsconfig.json Normal file
View File

@@ -0,0 +1,9 @@
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "astro/tsconfigs/strictest",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"plugins": [{ "name": "@astrojs/ts-plugin" }]
}
}