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

15 lines
344 B
JSON

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