You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the plugin merges external module reflections it calls CommentsPlugin.removeReflection, which deletes the entry in project.symbolMapping and can break resolution.
When the plugin merges external module reflections it calls
CommentsPlugin.removeReflection
, which deletes the entry inproject.symbolMapping
and can break resolution.Consider tracking the symbol id in https://github.com/christopherthielen/typedoc-plugin-external-module-name/blob/master/plugin.ts#L75 via a call to
context.getSymbolID(node.symbol)
, and updating the entry inproject.symbolMapping
before callingCommentsPlugin.removeReflection
on https://github.com/christopherthielen/typedoc-plugin-external-module-name/blob/master/plugin.ts#L132.The text was updated successfully, but these errors were encountered: