Generated docs is empty
carlocorradini opened this issue · 0 comments
carlocorradini commented
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:
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"
]
}
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