Skip to content

Commit 34d6e6d

Browse files
devversiontinayuangao
authored andcommitted
chore(dgeni): add @deletion-target to valid tags (#9642)
* Currently Dgeni always shows warnings about the `@deletion-target` tag, because it considers non-jsdoc tags as invalid by default.
1 parent b781234 commit 34d6e6d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/dgeni/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ apiDocsPackage.config((computePathsProcessor: any) => {
8787
// Configure custom JsDoc tags.
8888
apiDocsPackage.config((parseTagsProcessor: any) => {
8989
parseTagsProcessor.tagDefinitions = parseTagsProcessor.tagDefinitions.concat([
90-
{name: 'docs-private'}
90+
{name: 'docs-private'},
91+
{name: 'deletion-target'}
9192
]);
9293
});
9394

0 commit comments

Comments
 (0)