diff --git a/CHANGELOG.md b/CHANGELOG.md index e769444be..5ce155f29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ title: Changelog API: Introduced `typeAnnotation` on `CommentTag` - Added `excludePrivateClassFields` option to hide `#private` members while allowing `private` members, #3017. - Added support for TypeScript's `@this` tag for JS files which describe `this` parameters, #3026. +- Remove the `@jsx` tag from the list of additional block tags. TSDoc now directly supports this tag, #3035. ## Bug Fixes diff --git a/src/lib/utils/options/tsdoc-defaults.ts b/src/lib/utils/options/tsdoc-defaults.ts index 1aeabc65a..99e2b3221 100644 --- a/src/lib/utils/options/tsdoc-defaults.ts +++ b/src/lib/utils/options/tsdoc-defaults.ts @@ -4,6 +4,7 @@ export const tsdocBlockTags = [ "@defaultValue", "@deprecated", "@example", + "@jsx", "@param", "@privateRemarks", "@remarks", @@ -28,7 +29,6 @@ export const blockTags = [ "@groupDescription", "@import", "@inheritDoc", - "@jsx", "@license", "@module", "@mergeModuleWith", diff --git a/tsdoc.json b/tsdoc.json index 07d3e835c..ac45b2178 100644 --- a/tsdoc.json +++ b/tsdoc.json @@ -231,10 +231,6 @@ "tagName": "@hideconstructor", "syntaxKind": "modifier" }, - { - "tagName": "@jsx", - "syntaxKind": "block" - }, { "tagName": "@summary", "syntaxKind": "block"