forgejo-website/tsconfig.json
2024-05-12 22:13:14 +02:00

15 lines
325 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"types": ["astro/client"],
"allowJs": true,
"baseUrl": ".",
"paths": {
"~/*": ["src/*"],
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"]
},
"skipLibCheck": true,
"esModuleInterop": true
}
}