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

16 lines
467 B
JSON
Raw Normal View History

2024-09-03 02:30:12 -04:00
{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"paths": {
2024-09-03 03:12:05 -04:00
"@components/*": ["./web/components/*"],
"@data/*": ["./web/tools/data/*"],
"@layouts/*": ["./web/layouts/*"],
"@library/*": ["./web/tools/library/*"],
"@player/*": ["./web/components/video-player/*"],
"@styles/*": ["./web/styles/*"],
"@utils/*": ["./web/tools/utilities/*"]
2024-09-03 02:30:12 -04:00
}
}
}