Gerrit Birkeland

Results 262 comments of Gerrit Birkeland

Tip for option 1 - TypeDoc can emit code just like tsc does in this simple setup. ``` # instead of tsc typedoc src/index.ts # you can do typedoc src/index.ts...

Hmm... does typedoc crash before or after creating all the programs? (Does rendering json instead of HTML work?) Unfortunately typedoc relies on having program info throughout the rendering process, so...

Unfortunately the `convertType` there means that you still haven't gotten through conversion, so TypeDoc is still working on converting one of the projects. I think fixing this requires doing a...

> Is it possible to build each project’s typedoc individually and then merge them at the end? Once 0.23 is out, this is what I plan to work on next,...

Fixing this is going to involve quite a few changes: 1. We need to be able to deserialize JSON emitted with `--json` (requires a review of all current serialized properties...

This would be really nice to do, there's quite a lot of architectural changes needed in order for this to be able to work well... I think it needs to...

Right now, there's not really a way to do it besides checking out parts of the tree to the released commit when building docs, which is a horrible solution, but...

Including markdown headers in the navigation seems like a good idea to me. The existing theme architecture really isn't set up to do this easily, but I think I should...

Thanks for taking the time to write this out for discussion. I think factoring out the conversion from a TypeScript project to models into a new module that TypeDoc consumes...