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

17 lines
540 B
JSON
Raw Permalink Normal View History

2024-04-14 23:56:13 -04:00
{
2024-07-24 15:53:15 -04:00
"extends": "astro/tsconfigs/base",
2024-04-14 23:56:13 -04:00
"compilerOptions": {
"baseUrl": ".",
2024-07-12 23:37:04 -04:00
"allowSyntheticDefaultImports": true,
2024-04-14 23:56:13 -04:00
"paths": {
2024-08-03 21:51:57 -04:00
"@components/*": ["./source/src/components/*"],
"@data/*": ["./source/src/tools/data/*"],
"@layouts/*": ["./source/src/layouts/*"],
"@library/*": ["./source/src/tools/library/*"],
"@player/*": ["./source/src/components/video-player/*"],
2024-07-07 20:04:25 -04:00
"@root/*": ["*"],
2024-08-03 21:51:57 -04:00
"@styles/*": ["./source/src/styles/*"],
"@utils/*": ["./source/src/tools/utilities/*"]
2024-04-14 23:56:13 -04:00
}
}
}