How to efficiently fix unresolved links in generated docs? #2944
Replies: 1 comment
-
Link resolution outside of TS files can't use the TS language server to resolve symbols, so it falls back to TypeDoc's declaration references implementation. The way this works is effectively splitting the link by For example, in TypeDoc's docs: https://typedoc.org/api/interfaces/JSONOutput.ReflectionVariantMap.html Tells me I can probably link to this with |
Beta Was this translation helpful? Give feedback.
-
Hello!
When generating documentation with TypeDoc, We get many warnings like:
[warning] Failed to resolve link to "ResourceList" in document README
However, "ResourceList" is exported from src/index.ts and has a JSDoc comment like:
Our typedoc.json looks like this:
Why does TypeDoc fail to resolve the link to ResourceList in the README, even though it is exported and documented? Is there something wrong with our configuration or the way we reference the symbol in markdown?
What is the recommended way to efficiently fix or manage these unresolved links in documentation?
TypeDoc version: 0.27.6
Node.js version: 22.14.0
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions