Skip to content

Commit 3e70b65

Browse files
authored
Merge pull request #3035 from iclanton/remove-jsx
Remove the @jsx tag from tsdoc.json as TSDoc now directly supports this tag.
2 parents 51a7c6d + 9906145 commit 3e70b65

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/lib/utils/options/tsdoc-defaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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",

tsdoc.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,6 @@
231231
"tagName": "@hideconstructor",
232232
"syntaxKind": "modifier"
233233
},
234-
{
235-
"tagName": "@jsx",
236-
"syntaxKind": "block"
237-
},
238234
{
239235
"tagName": "@summary",
240236
"syntaxKind": "block"

0 commit comments

Comments
 (0)