Initial commit

This commit is contained in:
pettesae
2025-06-16 16:58:11 +02:00
commit b8e23816e3
30 changed files with 6699 additions and 0 deletions

23
tsconfig.json Normal file
View File

@ -0,0 +1,23 @@
{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@assets/*": ["src/assets/*"],
"@components/*": ["src/components/*"],
"@elements/*": ["src/components/elements/*"],
"@layouts/*": ["src/layouts/*"],
"@sections/*": ["src/components/sections/*"],
"@styles/*": ["src/styles/*"]
}
}
}