chore: Remove unneeded handling for @suppress and @alias. (#8633)

This commit is contained in:
Aaron Dodson
2024-10-31 12:02:11 -07:00
committed by GitHub
parent e4eb9751cb
commit 631190c5cb

View File

@@ -3,10 +3,6 @@
// Include the definitions that are required for API Extractor
"extends": ["@microsoft/api-extractor/extends/tsdoc-base.json"],
"tagDefinitions": [
{
"tagName": "@alias",
"syntaxKind": "block"
},
{
"tagName": "@define",
"syntaxKind": "block"
@@ -18,18 +14,12 @@
{
"tagName": "@nocollapse",
"syntaxKind": "modifier"
},
{
"tagName": "@suppress",
"syntaxKind": "modifier"
}
],
"supportForTags": {
"@alias": true,
"@define": true,
"@license": true,
"@nocollapse": true,
"@suppress": true
"@nocollapse": true
}
}