You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib/utils/options/sources/typedoc.ts
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -110,9 +110,14 @@ export function addTypeDocOptions(options: Options) {
110
110
});
111
111
options.addDeclaration({
112
112
name: 'includeVersion',
113
-
help: 'Add the package version to the project name',
113
+
help: 'Add the package version to the project name.',
114
114
type: ParameterType.Boolean
115
115
});
116
+
options.addDeclaration({
117
+
name: 'excludeTags',
118
+
help: 'Remove the listed tags from doc comments.',
119
+
type: ParameterType.Array
120
+
});
116
121
options.addDeclaration({
117
122
name: 'readme',
118
123
help: 'Path to the readme file that should be displayed on the index page. Pass `none` to disable the index page and start the documentation on the globals page.'
0 commit comments