Open dealsumm opened 3 years ago
Don't worry; it's not your fault. However, I'd be curious if it works under TypeDoc 0.15.0, which is the latest version we've tested with.
@erikrose thanks, I've tested it with typedoc version 0.15.0 and it has the same exact issue. do you have a suggestion for a quick fix until the issue is resolved?
Unfortunately not. First of all, we shouldn't be saying node.get('sources')[0]
; we might as well say node['sources'][0]
and crash a little earlier. But that's a nitpick. This 'source' key is a vital thing, so there's no obvious way to paper over it. I wonder _top_level_properties
is getting passed the wrong thing somehow. Can you reduce your code to the smallest bit that will trigger the error and share it?
I'm trying to run sphinx-js on a react typesctipt project. running
sphinx-build -v -b html -d _build/doctrees . _build/html
I get the following exception traceback:I'm not sure if the cause is something I did incorrect or if it's a case that is not covered in the typedoc implementation.