-
-
Notifications
You must be signed in to change notification settings - Fork 737
Can't Exclude anything!? #839
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
Comments
The exclude option is currently passed the absolute path to the file, so you need to specify |
Looking into this some more while reworking that logic, I've found that you actually can't exclude a directory directly right now... You might need to have exclude set to |
I have tried |
Anyone else with an issue like this?? Really frustrating and this is a totally breaking issue. Literally nothing about Typedocs works when |
I ran into this issue, and after troubleshooting, here's how I got past it:
Once I resolved both issues, everything worked again. |
Same here, I've spent hours trouble shooting this, trying several different methods both with a typedoc.json file and via cli. Nothing is working for excluding files from the json export. |
Hello, still running into the same problem, any updates? |
Since it looks like #319 hasn't been linked yet, linking. This is still a problem on master - resolving it adds some complexity that we still need to figure out how to resolve. |
I've been trialing and erroring for hours and nothing I do will exclude the node_modules from the output. Specifically a package called
@types/bluebird
is causing errors with itsindex.d.ts
.typedoc version: 0.11.1
node version: 10.8.0
typescript version: 3.0.1
project structure is like so:
-- src
-- package.json
-- docs
-- tsconfig.json
-- typedoc.json
I have a typedoc.json like below:
then I run:
typedoc --json typedoc.json ./src
or
typedoc --json typedoc.json
No output is ever achieved because there is a ton of useless errors from the bluebird package. Nothing else is in the way of generating the docs as they worked fine up until something required the
@types/bluebird
.Why does the excludes not work? I can't even get excludes to exclude my own files in my own project. Can't there be an option like
excludeNodeModules: true
so we don't have to worry about them at all.The text was updated successfully, but these errors were encountered: