website/tsconfig.json

31 lines
499 B
JSON
Raw Normal View History

2024-03-26 16:36:18 +01:00
{
2024-03-27 01:51:42 +01:00
"extends": "astro/tsconfigs/strict",
2024-03-28 18:30:52 +01:00
"exclude": [
"dist"
],
2024-03-27 01:51:42 +01:00
"compilerOptions": {
"baseUrl": ".",
2024-03-28 18:30:52 +01:00
"types": [
"vite-plugin-glsl/ext"
],
2024-03-27 01:51:42 +01:00
"paths": {
"@components/*": [
"src/components/*"
],
2024-04-03 18:54:51 +02:00
"@content/*": [
"src/content/*"
],
2024-03-28 18:30:52 +01:00
"@helpers/*": [
"src/helpers/index.ts",
"src/helpers/*"
],
2024-03-27 01:51:42 +01:00
"@layouts/*": [
"src/layouts/*"
],
"@i18n/*": [
"src/i18n/*"
]
}
}
}