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
I think it'd be nice to have an opt-in mode where no documentation is generated except for when a specific doc tag is in a comment. The specific doc tag could be configurable. This feature would help with documenting only modules/classes that are meant to be publicly consumable/exposed.
For a comparison, the dgeni documentation generator (with typical configuration/setup) will only generated documentation when there is a @ngdoc jsdoc tag in the comment.
Do you see this being viable?
The text was updated successfully, but these errors were encountered:
I'm adding a plugin tag + wontfix for this since TypeDoc already provides equally powerful methods for controlling exported symbols and this adds more complexity that doesn't seem to be
You can use @internal (along with --stripInternal) to hide internal symbols that must be exported. You should already be using this if you need to export internal symbols as it has first class support by TypeScript.
You can use @ignore or @hidden to hide symbols
You can use --excludeNotExported to remove all non-exported symbols.
I love typedoc, it's amazing.
I think it'd be nice to have an opt-in mode where no documentation is generated except for when a specific doc tag is in a comment. The specific doc tag could be configurable. This feature would help with documenting only modules/classes that are meant to be publicly consumable/exposed.
For a comparison, the dgeni documentation generator (with typical configuration/setup) will only generated documentation when there is a
@ngdoc
jsdoc tag in the comment.Do you see this being viable?
The text was updated successfully, but these errors were encountered: