-
-
Notifications
You must be signed in to change notification settings - Fork 723
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
Ignore a whole module in the generated doc #842
Comments
I'm looking for the same behavior. Did you find a solution @amaurymartiny ? |
I've tried to replicate this issue today with this setup but haven't been able. Both Would any of you have more info about the environment (OS, |
@igncp Look at the Specifically: |
@amaurymartiny Same issue here. Just add another comment block after it, and it works fine. |
I suspect this was fixed in some commit to TypeDoc after the original report but the issue didn't get closed alongside it. Since if you are not familiar with TypeDoc's behavior it won't make much sense, I've opened #1080 to track adding a warning for the case of a module documentation comment used with import statements. |
Is there a way to ignore the whole module without adding |
As discussed above, you should be able to just add |
Done: #1113 |
Just to recap what worked for me. If you want to exclude a whole file (from the menu, search...), at the top of your file you should add: /** @ignore *//** */ It is hacky and I'd love to see this fixed. Unfortunately, it does not work for me without (like @SimonFarrugia suggested above) |
Here's myModule.ts:
When I run typedoc on it, I still see
myModule
in the list of modules on the right.My typedoc.js:
The text was updated successfully, but these errors were encountered: