Adds support for linking references to global types like HTMLElement
, WebAssembly
, and Date
to their documentation pages on MDN.
If you're explicitly referencing a type in a comment, you can use {@link !HTMLElement}
to have it processed by this plugin.
If you set --logLevel Verbose
, it will print out when failing to resolve a symbol to a page on MDN. Pull requests to fix failed resolution are welcome!
Supports TypeDoc 0.23.x, 0.24.x and 0.25.x
Option | Default | Description |
---|---|---|
resolveUtilityTypes | true |
Resolve links to Partial , Omit , etc. to their documentation on the TypeScript website. |
additionalModuleSources | false |
Specify additional node_modules to attempt to resolve links to MDN from. |
- Updated MDN API index with @mdn/browser-compat-data version 5.5.29
- Updated MDN API index with @mdn/browser-compat-data version 5.5.27
- Updated MDN API index with @mdn/browser-compat-data version 5.5.25
- Updated MDN API index with @mdn/browser-compat-data version 5.5.23
- Updated MDN API index with @mdn/browser-compat-data version 5.5.22
- Updated MDN API index with @mdn/browser-compat-data version 5.5.21
- Added
NoInfer
link resolution for TypeScript utility types (@xuhdev)
- Updated MDN API index with @mdn/browser-compat-data version 5.5.18
- Updated MDN API index with @mdn/browser-compat-data version 5.5.14
- Updated MDN API index with @mdn/browser-compat-data version 5.5.11
- Updated MDN API index with @mdn/browser-compat-data version 5.5.10
- Updated MDN API index with @mdn/browser-compat-data version 5.5.9
- Updated MDN API index with @mdn/browser-compat-data version 5.5.8
- Updated MDN API index with @mdn/browser-compat-data version 5.5.7
- Updated MDN API index with @mdn/browser-compat-data version 5.5.6
- Updated MDN API index with @mdn/browser-compat-data version 5.5.4
- Updated MDN API index with @mdn/browser-compat-data version 5.5.3
- Updated MDN API index with @mdn/browser-compat-data version 5.5.2
- Updated MDN API index with @mdn/browser-compat-data version 5.5.0
- Updated MDN API index with @mdn/browser-compat-data version 5.4.5
- Updated MDN API index with @mdn/browser-compat-data version 5.4.3
- Updated MDN API index with @mdn/browser-compat-data version 5.4.1
- Updated MDN API index
- Fixed broken publish due to missing data folder, #14.
- Updated MDN API index
- Updated MDN API index
- Fixed links to types defined in
@types/web
, #13
- Added support for TypeDoc 0.25.x.
- Add support for resolving TypeScript utility types (
Partial
,Omit
, etc.) to links on the TypeScript website. This can be turned off with the newresolveUtilityTypes
option.
- Fixed invalid published package (@WikiRik)
- Add support for
{@link !NaN}
to link to global symbols, #4 - Fix links to Intl/WebAssembly namespace members
- In TypeDoc versions 0.23.26 and later will now use the symbol name as the default link test
- Add support for TypeDoc 0.24 (@ocavue)
- Drop support for TypeDoc 0.22
- Add missing
AsyncGenerator
andAsyncGeneratorFunction
pages (@achingbrain)
- Add many missing links (@achingbrain)
- Support TypeDoc 0.23
- Drop support for Node 12
- Added support for WebAudio and Canvas APIs (@johh)
- Fixed repository reference so that npm will link to GitHub (@mikaello)
- Added missing link for base
HTMLElement
interface.
- Added support for HTML element types (
HTMLAnchorElement
,HTMLButtonElement
, etc.)
- Added
typedocplugin
to keywords so that TypeDoc will now automatically load this plugin if installed.