-
-
Notifications
You must be signed in to change notification settings - Fork 735
Feature: ignore a package in the --entryPointStrategy packages globs #1959
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
As far as options go - I think the |
@Gerrit0 Unfortunately, I don’t think the commit fixed this bug. I am on version I am still receiving the warning:
when using exclude with
|
For packages, you're excluding a package itself, not the files within it, so you should use |
That works 🎉 thank you @Gerrit0 |
Uh oh!
There was an error while loading. Please reload this page.
Search Terms
Ignore a package in the --entryPointStrategy packages globs
Problem
I have a package in my monorepo that is pure css and no typescript as well as packages that are not exported. When running typedoc with --entryPointStrategy packages and globs, it may pick up packages I would prefer to ignore.
That way, I can hide the
warning Could not determine the entry point for "/Users/jlarmst/Desktop/monorepos/turbo-monorepo/packages/configs/typedoc/package.json". Package will be ignored.
and run typedoc with--treatWarningsAsErrors
Suggested Solution
Use the
--exclude
flag to disallow certain packages via the typedoc cli.The text was updated successfully, but these errors were encountered: