1
Fork 0
This commit is contained in:
Korbs 2024-09-03 02:30:12 -04:00
parent 6c24e3a5e0
commit f608a91730
31 changed files with 2766 additions and 0 deletions

16
tsconfig.json Executable file
View file

@ -0,0 +1,16 @@
{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"paths": {
"@components/*": ["./web/src/components/*"],
"@data/*": ["./web/src/tools/data/*"],
"@layouts/*": ["./web/src/layouts/*"],
"@library/*": ["./web/src/tools/library/*"],
"@player/*": ["./web/src/components/video-player/*"],
"@styles/*": ["./web/src/styles/*"],
"@utils/*": ["./web/src/tools/utilities/*"]
}
}
}