Files
undefined.behavio.rs/tsconfig.json

21 lines
336 B
JSON

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