Closed
Description
Search terms
typedoc hangs and no documentation produced
Expected Behavior
Documentation gets produced
Actual Behavior
No documentation produced
Steps to reproduce the bug
yarn typedoc --options typedoc.json --logLevel Verbose
The last line of the logs is:
[debug] Begin readme.md/package.json search at ./packages/core
after which nothing happens (left it running for > 4 hrs)
The repository is a mono repo, the config is:
typedoc.json
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./packages/core/"],
"entryPointStrategy": "packages",
"out": "./api-docs",
"readme": "none"
}
typedoc.base.json
{
"$schema": "https://typedoc.org/schema.json",
"compilerOptions":{
"strictNullChecks": false
},
"skipErrorChecking": true,
"excludeExternals": true,
"exclude": [ "**/*+(index|.spec|.e2e|test).ts" ],
"externalPattern": [
"**/node_modules/**"
],
"readme": "none",
"excludeReferences": true
}
and the config file inside the package:
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/core.ts"]
}
Environment
- Typedoc version: 0.25.3
- TypeScript version: 5.2.2
- Node.js version: 18.12.1
- OS: macos
Metadata
Metadata
Assignees
Labels
No labels