Init Astro

This commit is contained in:
Korbs 2024-06-17 17:22:39 -04:00
parent a450a30411
commit d1c33cfe14
6 changed files with 51 additions and 0 deletions

12
tsconfig.json Normal file
View file

@ -0,0 +1,12 @@
{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@assets/*": ["src/assets/*"],
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@styles/*": ["src/styles/*"]
}
}
}