Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/lib/utils/options/tsdoc-defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export const tsdocBlockTags = [
"@defaultValue",
"@deprecated",
"@example",
"@jsx",
"@param",
"@privateRemarks",
"@remarks",
Expand All @@ -28,7 +29,6 @@ export const blockTags = [
"@groupDescription",
"@import",
"@inheritDoc",
"@jsx",
"@license",
"@module",
"@mergeModuleWith",
Expand Down
4 changes: 0 additions & 4 deletions tsdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,6 @@
"tagName": "@hideconstructor",
"syntaxKind": "modifier"
},
{
"tagName": "@jsx",
"syntaxKind": "block"
},
{
"tagName": "@summary",
"syntaxKind": "block"
Expand Down