astro/tsconfig.json

13 lines
237 B
JSON
Raw Permalink Normal View History

2025-01-20 04:21:07 +00:00
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"~/*": ["src/components/*"],
}
}
}