You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Release 0.2.1
Added a new internal AST transformer that corrects the output of the TS compiler for setter accessor parameter names.
The TS compiler for ESM will rename setter accessor parameter names to arg regardless of the value set in the source
file. If there is a JSDoc comment associated with a setter the first @param tag name will be set to the AST node
param name. Downstream tooling such as TypeDoc 0.25.7+ validates comment / @param name against the type declaration
name; this change fixes that mismatch.