Glee-Mirror/tsconfig.json
2025-02-22 02:16:08 -05:00

23 lines
No EOL
423 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": [
"src/components/*"
],
"@library/*": [
"src/library/*"
],
"@layouts/*": [
"src/layouts/*"
],
"@styles/*": [
"src/styles/*"
]
},
"jsx": "preserve"
}
}