How to correctly use multiple entrypoints with root entry?

This issue has been tracked since 2023-02-17.

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

instead just putting them as root module, how to fix this?

Gerrit0 wrote this answer on 2023-03-05

You can rename modules with the @module tag. I suspect what you really want is a single entry point that looks like this though:

// api.ts
export * from "./index"
export * as core from "./core/index"
More Details About Repo
Owner Name TypeStrong
Repo Name typedoc
Full Name TypeStrong/typedoc
Language TypeScript
Created Date 2014-05-24
Updated Date 2023-03-19
Star Count 6487
Watcher Count 68
Fork Count 639
Issue Count 48

YOU MAY BE INTERESTED

Issue Title Created Date Updated Date