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
@@ -105,7 +105,7 @@ The plugin accepts the following parameters:
105
105
Required parameter. The `patterns` option accepts an array of strings that define patterns to include or exclude files. You can use glob patterns to match files and the `!` symbol to exclude specific patterns. Example:
106
106
107
107
```js
108
-
docCoveragePlugin({
108
+
jsDocsPlugin({
109
109
patterns: [
110
110
'src/**/*.ts', // include all TypeScript files in src
111
111
'!src/**/*.{spec,test}.ts', // exclude test files
@@ -119,7 +119,7 @@ docCoveragePlugin({
119
119
Optional parameter. The `onlyAudits` option allows you to specify which documentation types you want to measure. Only the specified audits will be included in the results. Example:
120
120
121
121
```js
122
-
docCoveragePlugin({
122
+
jsDocsPlugin({
123
123
patterns: ['src/**/*.ts'],
124
124
onlyAudits: [
125
125
'classes-coverage',
@@ -133,7 +133,7 @@ docCoveragePlugin({
133
133
Optional parameter. The `skipAudits` option allows you to exclude specific documentation types from measurement. All other types will be included in the results.
134
134
135
135
```js
136
-
docCoveragePlugin({
136
+
jsDocsPlugin({
137
137
patterns: ['src/**/*.ts'],
138
138
skipAudits: [
139
139
'variables-coverage',
@@ -204,7 +204,7 @@ For instance, this is an example of the plugin output:
0 commit comments