saiblog/tsconfig.json

13 lines
302 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/*"]
}
},
"include": ["src/**/*", "astro.config.js", "tailwind.config.js"]
}