website/tsconfig.json
Max Richter feb9b21ff8
Some checks failed
Deploy to GitHub Pages / build (push) Failing after 7m4s
Deploy to GitHub Pages / deploy (push) Has been skipped
feat: some shit
2024-04-03 18:54:51 +02:00

31 lines
499 B
JSON

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