Files
undefined.behavio.rs/tsconfig.json
2023-11-24 03:41:29 -06:00

18 lines
283 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@layouts/*": [
"src/layouts/*"
],
"@posts/*": [
"src/pages/posts/*"
],
"@components/*": [
"src/components/*"
]
}
}
}