selfhostedbg-web/tsconfig.json

15 lines
401 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@/components/*": ["src/components/*"],
"@/layouts/*": ["src/layouts/*"],
"@/utils/*": ["src/utils/*"],
"@/types": ["src/types.ts"],
"@/config": ["src/config.ts"]
},
"types": ["unified", "@types/unist", "@types/hast", "astro/client"]
}
}