typedoc-json-parser
typedoc-json-parser copied to clipboard
bug: When generating docs for multi `entryPoints` the output JSON is incomplete
Is there an existing issue for this?
- [X] I have searched the existing issues
Description of the bug
My project exports many files individually and doesn't have an index.ts
file that re-exports.
Steps To Reproduce
When I generate the api.json
with typedocs I can see that all the exports are captured. When I run typedoc-json-parser
on top of it, the results is the following:
{
"typeDocJsonParserVersion": "10.1.5",
"id": 0,
"name": "@tempots/std",
"version": "0.10.7",
"dependencies": {},
"readme": "# Tempo Standard Library\n",
"changelog": null,
"classes": [],
"enums": [],
"functions": [],
"interfaces": [],
"namespaces": [],
"typeAliases": [],
"variables": []
}
Expected behavior
I would expect for the types to be generrated.
Screenshots
No response
Additional context
No response