SanYeCao-blog/tsconfig.json

11 lines
221 B
JSON
Raw Permalink Normal View History

2026-03-24 14:19:09 +00:00
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
2026-03-24 17:33:01 +00:00
"exclude": ["dist"],
"compilerOptions": {
"types": ["node", "astro/client"],
"paths": {
"@/*": ["./src/*"]
}
}
}