Gerrit Birkeland
Gerrit Birkeland
You can specify plugins to be loaded with `--plugin /absolute/path/to/my-plugin.js` I think this issue needs to wait for a stable release - or at least until the `@Component` decorator is...
I have started https://typedoc.org/guides/development/, which focuses on developing TypeDoc proper, but will likely be useful for plugin developers. I am in the middle right now of making library mode a...
> what typedoc proper is. The TypeDoc library itself, excluding [plugins](http://typedoc.org/guides/plugins/) > what library mode is TypeDoc 0.19 and earlier had a `mode` option which determined how it converted your...
This is going to be a tricky one I think... should be possible, but by no means trivial.
I like the idea! Some questions: - Does this require that TypeDoc is a dependency? (npm at least doesn't play well with peer dependencies installed with npx) - Should popular...
typedoc.org does [something similar](https://github.com/TypeStrong/typedoc-site/blob/master/.github/workflows/publish.yml) for building + publishing automatically... a bit more complicated since it has to run on itself. I think I like being more restrictive for the version/plugins,...
I'll buy that! True zero config means a couple extra things: 1. We need to automatically install typescript if not installed (easy?) 2. We need to automatically discover the entry...
I'd be happy with either the first or the third option, though for the third option we probably need to be a bit smarter - look at package.json `"main"` and...
You're not alone in that! I'm not sure about a single `args:` parameter for the action to contain all values... there's something that feels off about it. I think it...
With 0.21, TypeDoc now has a `--packages` option, which I think could be used instead of entry points. It does the `"main"` resolution from `package.json`, handles monorepos that use npm/yarn...