From 631190c5cb90481a6e5c5f133ce040ea31ccc8de Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Thu, 31 Oct 2024 12:02:11 -0700 Subject: [PATCH] chore: Remove unneeded handling for @suppress and @alias. (#8633) --- tsdoc.json | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/tsdoc.json b/tsdoc.json index 51900e7c3..5470830e7 100644 --- a/tsdoc.json +++ b/tsdoc.json @@ -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 } }