initial commit

This commit is contained in:
2025-05-22 17:46:02 +02:00
parent a6d168c504
commit 6fb1e51c79
25 changed files with 1599 additions and 10 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"baseUrl": "./src",
"strict": true,
"paths": {
"@/*": ["./*"]
},
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"jsx": "preserve",
"jsxImportSource": "solid-js"
},
"exclude": ["node_modules", "dist"]
}