Closed as not planned
Description
I have a mono repo with a tsconfig.json that contains paths
"paths": {
"@sheetxl/common/*": ["packages/common/src/*"],
"@sheetxl/models/*": ["packages/models/src/*"],
}
With the follow typedocs.json
{
"entryPoints": ["packages/*/src/index.ts"],
"name": "SheetXL"
}
The docs are almost working but I would expect it to generate links that
follow @sheetxl/common (or even just common) instead of common_src.
see
https://api.sheetxl.com/modules/common_src.html
Is there a workaround where I can redefine or alias these within typedocs?