Closed
Description
Currently, typedoc
exports all internally exported entities which are not part of the exports in the given starting point. I've been trying to find a way to get past that using available options but looks like this feature is not available.
For example, if starting point is src/index.ts
, then only exports from this file should be documented and not all entities. Restricting files in config file or marking every internal utility function as @hidden
makes things unmaintainable.
If I have missed anything, please let me know.