Files
website/tsconfig.json
Max Richter 06e5126fe0
Some checks failed
Deploy to SFTP Server / build (push) Failing after 7m2s
refactor: use more generic resource system
2025-10-06 00:30:44 +02:00

37 lines
616 B
JSON

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