-
We run typedoc in our monorepo I've noticed the (source) path can vary wildly between the full path from the root of the repo to just the filename. Thankfully the link target always has the full path, so the link always works, but the link text is very inconsistent. What causes this difference and can it be fixed to always show the full path? Here's an example of a full path: Here's an example of a very relative one: Both of these are from the same invocation of typedoc. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ah, I figured this out. I need to set |
Beta Was this translation helpful? Give feedback.
Ah, I figured this out. I need to set
basePath: '../..'
in the package config (not the root config)