This repository has been archived on 2024-12-04. You can view files and clone it, but cannot push or open issues or pull requests.
MinPluto-Frontend/tsconfig.json

17 lines
540 B
JSON
Raw Normal View History

2024-04-14 22:56:13 -05:00
{
2024-07-24 14:53:15 -05:00
"extends": "astro/tsconfigs/base",
2024-04-14 22:56:13 -05:00
"compilerOptions": {
"baseUrl": ".",
2024-07-12 22:37:04 -05:00
"allowSyntheticDefaultImports": true,
2024-04-14 22:56:13 -05:00
"paths": {
2024-08-03 20:51:57 -05: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 19:04:25 -05:00
"@root/*": ["*"],
2024-08-03 20:51:57 -05:00
"@styles/*": ["./source/src/styles/*"],
"@utils/*": ["./source/src/tools/utilities/*"]
2024-04-14 22:56:13 -05:00
}
}
}