This commit is contained in:
2024-06-19 22:58:55 +03:00
parent fcf89a9cc5
commit 54344f1497
152 changed files with 18665 additions and 5 deletions

19
tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": "src",
"jsx": "react-jsx",
"types": ["astro/client"],
"paths": {
"@src/*": ["src/*"],
"@components/*": ["components/*"],
"@content/*": ["content/*"],
"@layouts/*": ["layouts/*"],
"@pages/*": ["pages/*"],
"@images/*": [
"images/*"
]
}
}
}