saiblog/tsconfig.json

12 lines
234 B
JSON
Raw Normal View History

2022-10-23 12:08:29 +02:00
{
2023-09-21 00:38:16 +02:00
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@layouts/*": ["src/layouts/*"],
"@components/*": ["src/components/*"],
"@images/*": ["src/images/*"]
}
}
}