website-astro/tsconfig.json

19 lines
366 B
JSON
Raw Permalink Normal View History

2022-12-02 11:21:18 +01:00
{
2024-12-28 11:52:32 +01:00
"extends": "astro/tsconfigs/base",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
2024-12-28 11:52:32 +01:00
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"]
},
"strictNullChecks": true,
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
]
}
2022-12-22 11:01:52 +01:00
}