website/tsconfig.json

32 lines
529 B
JSON

{
"extends": "astro/tsconfigs/strict",
"exclude": [
"dist"
],
"compilerOptions": {
"baseUrl": ".",
"types": [
"vite-plugin-glsl/ext",
"unplugin-icons/types"
],
"paths": {
"@components/*": [
"src/components/*"
],
"@content/*": [
"src/content/*"
],
"@helpers/*": [
"src/helpers/index.ts",
"src/helpers/*"
],
"@layouts/*": [
"src/layouts/*"
],
"@i18n/*": [
"src/i18n/*"
]
}
}
}