This repository has been archived on 2025-12-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BreadnetV3/web/tsconfig.json
2025-11-13 18:08:12 +13:00

14 lines
309 B
JSON

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