Initial commit

This commit is contained in:
Martin Berg Alstad
2024-09-25 22:20:47 +02:00
parent bb58f603b2
commit 83f018c3b8
60 changed files with 6301 additions and 6615 deletions

View File

@ -1,3 +1,11 @@
{
"extends": "astro/tsconfigs/strict"
}
"extends": "astro/tsconfigs/strict",
"include": ["src/**/*.ts", "src/**/*.astro", "src/**/*.svelte"],
"compilerOptions": {
"strictNullChecks": true,
"allowJs": true,
"paths": {
"@/*": ["./src/*"]
}
}
}