update
This commit is contained in:
parent
6c24e3a5e0
commit
f608a91730
31 changed files with 2766 additions and 0 deletions
16
tsconfig.json
Executable file
16
tsconfig.json
Executable 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/*"]
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue