🚀 Init

This commit is contained in:
Korbs 2025-02-22 02:16:08 -05:00
commit e0056b9cd9
Signed by: Korbs
SSH key fingerprint: SHA256:Q0b0KraMldpAO9oKa+w+gcsXsOTykQ4UkAKn0ByGn5U
26 changed files with 1560 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": {
"baseUrl": ".",
"paths": {
"@components/*": [
"src/components/*"
],
"@library/*": [
"src/library/*"
],
"@layouts/*": [
"src/layouts/*"
],
"@styles/*": [
"src/styles/*"
]
},
"jsx": "preserve"
}
}