Why TypeDoc don't process local file imports?

Viewed 111

I tried this answer. TypeDoc doesn't generate documentation for local files. I used the command: yarn typedoc and I have the tsconfig.json, here is a part of this

"typedocOptions": {
      "entryPoints": ["src/main.ts"],
      "out": "docs"
  }

--entryPointStrategy doesn't work in any value.

1 Answers
Related