varo-website/tsconfig.json
bytedream 60f3f8a096
Some checks failed
deploy / build-and-deploy (push) Failing after 21s
initial commit
2025-05-18 13:16:20 +02:00

17 lines
403 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@assets/*": ["./src/assets/*"],
"@app/*": ["./src/app/*"],
"@components/*": ["./src/components/*"],
"@db/*": ["./src/db/*"],
"@layouts/*": ["./src/layouts/*"],
"@util/*": ["./src/util/*"]
}
}
}