website/tsconfig.json

28 lines
444 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-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/*"
]
}
}
}