-
-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Types across monorepo packages are not linked #47
Comments
I tried the |
Hey @milesj! It looks to be a limitation of TypeDoc itself - TypeStrong/typedoc#1612 I tried typedoc-monorepo-link-types and it seems like it might be part of the solution. Here's the "internal" namespace with And here's the Apart from duplication of documentation, another problem with I do wonder if we could take some inspiration from |
that will be a nice idea. |
Yeah, I feel like we might need to build our own plugin, or at least fork |
Hi,
I am using this plugin to generate API docs for a mono repo. There is one concern I could not resolve, the types reference across mono-repo packages are not linked.
There is a typeodc plugin for this purpose, which is loaded but not performs what's expected.
https://github.com/luizstacio/typedoc-monorepo-link-types
When we have following snippet.
The docs for the
ExtendedClass
under hierarchy section does not link theBaseClass
.If we use the
@link
for those imported types these works fine.In above snippet the
@link
modifier works fine and points to the right package in the API docs. That means the type info is available but not rendered properly. This seems to be a very basic behavior for a mono-repo packages.Is there some configuration to enable this or is it a bug?
The text was updated successfully, but these errors were encountered: