sudovanilla-website/tsconfig.json

23 lines
370 B
JSON
Raw Normal View History

2024-05-13 23:34:06 -04:00
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": [
"src/components/*"
],
"@library/*": [
"src/library/*"
],
2024-05-13 23:34:06 -04:00
"@layouts/*": [
"src/layouts/*"
],
"@assets/*": [
"src/assets/*"
],
"@styles/*": [
"src/styles/*"
]
},
"jsx": "preserve"
}
}