Новые правки на сайте

This commit is contained in:
Web-serfer 2026-05-09 22:57:31 +05:00
parent be6ed4afaf
commit 44a7374a44
27 changed files with 859 additions and 0 deletions

14
tsconfig.json Normal file
View file

@ -0,0 +1,14 @@
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@styles/*": ["src/styles/*"],
"@lib/*": ["src/lib/*"]
}
}
}