marcj/typedoc-plugin-lerna-packages

Generated docs is empty

carlocorradini opened this issue · 0 comments

TypeDoc generates empty documentation.

I have installed TypeScript 4.1.5 (latest), TypeDoc 0.17.8 and typedoc-plugin-lerna-packages 0.3.1.

The project has the monorepo structure with all packages under packages folder. Here is the lerna.json configuration file:

{
  "version": "independent",
  "npmClient": "npm",
  "stream": true,
  "packages": ["packages/*"],
  "publishConfig": {
    "access": "restricted"
  },
  "command": {
    "bootstrap": {}
  }
}

The plugin correctly find the lerna packages:

image

Configuration file (typedoc.json):

{
  "name": "API",
  "mode": "modules",
  "out": "docs",
  "exclude": [
    "**/node_modules/**",
    "**/tests/**",
    "**/*.spec.ts",
    "**/*.test.ts",
    "jest.config.ts",
    "jest.config.common.ts",
    "**/jest.config.ts"
  ]
}

HTML docs page:
image

I'm struggling with this problem for hours and I don't know what is wrong.

Anyone have a suggestion?

Thanks

PS: The overall project structure is a copy of: https://github.com/carlocorradini/graphmarket