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
multiple entrypoints
My typedoc configs looks like this: { "entryPoints": [ "./src/index.ts", "./src/core/index.ts", ] }
the generated doc then will give an entry called
instead just putting them as root module, how to fix this?
The text was updated successfully, but these errors were encountered:
You can rename modules with the @module tag. I suspect what you really want is a single entry point that looks like this though:
@module
// api.ts export * from "./index" export * as core from "./core/index"
Sorry, something went wrong.
not exactly, I use multiple export for package.json, that why I have different modules so I could do
import * from "my_package" import * from "my_package/a" import * from "my_package/b"
so I don't want a, b show as namespace. they need to be module
rename module doesn't work well the best thing I can do for now is rename it as '.' and it will show like this:
but want I really want is just make them as root package
No branches or pull requests
Search terms
multiple entrypoints
Question
My typedoc configs looks like this:
{
"entryPoints": [
"./src/index.ts",
"./src/core/index.ts",
]
}
the generated doc then will give an entry called
![image](https://user-images.githubusercontent.com/1646270/219757411-cefc5d99-f3e3-4875-a95d-f53484a04888.png)
instead just putting them as root module, how to fix this?
The text was updated successfully, but these errors were encountered: