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", "**/*"],
|
2024-12-27 08:55:12 +01:00
|
|
|
"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
|
|
|
}
|