Files
ghall.space/tsconfig.json
T
2025-01-21 19:51:21 -05:00

15 lines
322 B
JSON

{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"baseUrl": ".",
"strictNullChecks": true,
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@styles/*": ["src/styles/*"],
"@images/*": ["src/images/*"]
},
"plugins": [{ "name": "@astrojs/ts-plugin" }]
}
}