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
2024-09-07 03:34:02 -04:00

16 lines
No EOL
440 B
JSON
Executable file

{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"paths": {
"@components/*": ["./web/components/*"],
"@data/*": ["./web/tools/data/*"],
"@layouts/*": ["./web/layouts/*"],
"@library/*": ["./web/tools/library/*"],
"@root/*": ["./web/"],
"@styles/*": ["./web/styles/*"],
"@utils/*": ["./web/tools/utilities/*"]
}
}
}