I'm getting an empty documentation when try to generate that.
But this is actual only for imported files. When I add e.g. any class to the file specified in entryPoints, I get documentation for that.
But for imported files I get nothing.
I have such typedoc.json:
{
"entryPoints": ["src/app.ts"],
"out": "docs",
"includes": "src"
}
The entrypoint file is entrypoint of koa server and it import all other files like routers, controllers, services, ORM models (through other models), etc. But for that imported modules typedoc generates nothing.
Full source code is here
How can I solve this?
I should use entryPointStrategy instead.