File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ title: Changelog
1313 API: Introduced ` typeAnnotation ` on ` CommentTag `
1414- Added ` excludePrivateClassFields ` option to hide ` #private ` members while allowing ` private ` members, #3017 .
1515- Added support for TypeScript's ` @this ` tag for JS files which describe ` this ` parameters, #3026 .
16+ - Remove the ` @jsx ` tag from the list of additional block tags. TSDoc now directly supports this tag, #3035 .
1617
1718## Bug Fixes
1819
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ export const tsdocBlockTags = [
44 "@defaultValue" ,
55 "@deprecated" ,
66 "@example" ,
7+ "@jsx" ,
78 "@param" ,
89 "@privateRemarks" ,
910 "@remarks" ,
@@ -28,7 +29,6 @@ export const blockTags = [
2829 "@groupDescription" ,
2930 "@import" ,
3031 "@inheritDoc" ,
31- "@jsx" ,
3232 "@license" ,
3333 "@module" ,
3434 "@mergeModuleWith" ,
Original file line number Diff line number Diff line change 231231 "tagName" : " @hideconstructor" ,
232232 "syntaxKind" : " modifier"
233233 },
234- {
235- "tagName" : " @jsx" ,
236- "syntaxKind" : " block"
237- },
238234 {
239235 "tagName" : " @summary" ,
240236 "syntaxKind" : " block"
You can’t perform that action at this time.
0 commit comments