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 use Typedoc for my Angular 2 project.
I am trying to prevent Typedoc from reading out the folder dist/ where I store my compiled .js files (as well as some other stuff that makes Typescript crash) but I would also like to exclude the folder e2e/ as well as all files that end on .spec.ts
I understand the flag --exclude is being used for that and that it makes use of the Glob pattern.
My pattern would be ./dist/** ./e2e/** and */**.spec.ts
I tried --exclude {./dist/*/**,./e2e/**,./client/test.ts,*/**.spec.ts}
as well as --exclude ./dist/** --exclude ./e2e/** --exclude */**.spec.ts
In case 1 the program doesn't exclude anything, in case 2 only one of them.
So I am wondering how I am supposed to do this and would highly appreciate some help.
I think #475 might be related (as in it was supposed because the author had the same problem).
The text was updated successfully, but these errors were encountered:
I use Typedoc for my Angular 2 project.
I am trying to prevent Typedoc from reading out the folder dist/ where I store my compiled .js files (as well as some other stuff that makes Typescript crash) but I would also like to exclude the folder e2e/ as well as all files that end on .spec.ts
I understand the flag --exclude is being used for that and that it makes use of the Glob pattern.
My pattern would be ./dist/** ./e2e/** and */**.spec.ts
I tried
--exclude {./dist/*/**,./e2e/**,./client/test.ts,*/**.spec.ts}
as well as
--exclude ./dist/** --exclude ./e2e/** --exclude */**.spec.ts
In case 1 the program doesn't exclude anything, in case 2 only one of them.
So I am wondering how I am supposed to do this and would highly appreciate some help.
I think #475 might be related (as in it was supposed because the author had the same problem).
The text was updated successfully, but these errors were encountered: