We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello!
I am trying to use typedoc to generate documentation for .d.ts declaration file. I specify this file as an entry point via --entryPoint '\"api.d\"' like I found in this discussion. I am getting this error: Warning: The entry point `"api.d"` could not be found. and --entryPoint option is ignored. I've researched the sources and it looks like that .d suffix gets omitted here: https://github.com/TypeStrong/typedoc/blob/master/src/lib/models/reflections/abstract.ts#L511
--entryPoint '\"api.d\"'
Warning: The entry point `"api.d"` could not be found.
--entryPoint
.d
Are there any fixes for my issue?
The text was updated successfully, but these errors were encountered:
Did you try with --includeDeclarations? I've managed to get it working once before, while using this flag.
--includeDeclarations
Sorry, something went wrong.
I managed to get it working by passing entryPoint as array:
entryPoint
const app = new td.Application({ // ... theme: 'default', includeDeclarations: true, entryPoint: ['babylon.d.ts'] }); app.generateDocs(['./babylon.d.ts'], config.target);
I think I managed to get it working use "--mode file" instead of --entryPoint
No branches or pull requests
Hello!
I am trying to use typedoc to generate documentation for .d.ts declaration file. I specify this file as an entry point via
--entryPoint '\"api.d\"'
like I found in this discussion.I am getting this error:
Warning: The entry point `"api.d"` could not be found.
and
--entryPoint
option is ignored.I've researched the sources and it looks like that
.d
suffix gets omitted here:https://github.com/TypeStrong/typedoc/blob/master/src/lib/models/reflections/abstract.ts#L511
Are there any fixes for my issue?
The text was updated successfully, but these errors were encountered: