initial commit

init
This commit is contained in:
2024-12-01 14:50:20 +01:00
committed by Henrik Tøn Løvhaug
commit b85aaa5687
21 changed files with 5150 additions and 0 deletions

17
tsconfig.json Normal file
View File

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