1
Fork 0
This repository has been archived on 2025-04-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Frontend-Project/tsconfig.json

12 lines
254 B
JSON
Raw Normal View History

2024-04-14 23:56:13 -04:00
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
2024-07-07 20:04:25 -04:00
"@root/*": ["*"],
2024-04-14 23:56:13 -04:00
"@styles/*": ["src/styles/*"],
2024-07-07 20:04:25 -04:00
"@utils/*": ["src/utilities/*"]
2024-04-14 23:56:13 -04:00
}
}
}