@@ -143,59 +143,59 @@ type Warning =
143
143
| string ;
144
144
type WarningObject = {
145
145
/**
146
- * - Warning message
146
+ * Warning message
147
147
*/
148
148
message : string ;
149
149
/**
150
- * - Plugin name
150
+ * Plugin name
151
151
*/
152
152
plugin ?: string | undefined ;
153
153
/**
154
- * - Warning text
154
+ * Warning text
155
155
*/
156
156
text ?: string | undefined ;
157
157
/**
158
- * - Line number
158
+ * Line number
159
159
*/
160
160
line ?: number | undefined ;
161
161
/**
162
- * - Column number
162
+ * Column number
163
163
*/
164
164
column ?: number | undefined ;
165
165
} ;
166
166
type ErrorObject = {
167
167
/**
168
- * - Error message
168
+ * Error message
169
169
*/
170
170
message : string ;
171
171
/**
172
- * - Line number
172
+ * Line number
173
173
*/
174
174
line ?: number | undefined ;
175
175
/**
176
- * - Column number
176
+ * Column number
177
177
*/
178
178
column ?: number | undefined ;
179
179
/**
180
- * - Error stack trace
180
+ * Error stack trace
181
181
*/
182
182
stack ?: string | undefined ;
183
183
} ;
184
184
type MinimizedResult = {
185
185
/**
186
- * - Minimized code
186
+ * Minimized code
187
187
*/
188
188
code : string ;
189
189
/**
190
- * - Source map
190
+ * Source map
191
191
*/
192
192
map ?: RawSourceMap | undefined ;
193
193
/**
194
- * - Errors
194
+ * Errors
195
195
*/
196
196
errors ?: Array < Error | ErrorObject | string > | undefined ;
197
197
/**
198
- * - Warnings
198
+ * Warnings
199
199
*/
200
200
warnings ?: Array < Warning | WarningObject | string > | undefined ;
201
201
} ;
@@ -216,7 +216,7 @@ type BasicMinimizerImplementation<T> = (
216
216
) => Promise < MinimizedResult > | MinimizedResult ;
217
217
type MinimizeFunctionHelpers = {
218
218
/**
219
- * - Check if worker threads are supported
219
+ * Check if worker threads are supported
220
220
*/
221
221
supportsWorkerThreads ?: ( ( ) => boolean | undefined ) | undefined ;
222
222
} ;
@@ -228,19 +228,19 @@ type MinimizerImplementation<T> = T extends any[]
228
228
: BasicMinimizerImplementation < T > & MinimizeFunctionHelpers ;
229
229
type InternalOptions < T > = {
230
230
/**
231
- * - Name
231
+ * Name
232
232
*/
233
233
name : string ;
234
234
/**
235
- * - Input
235
+ * Input
236
236
*/
237
237
input : string ;
238
238
/**
239
- * - Input source map
239
+ * Input source map
240
240
*/
241
241
inputSourceMap : RawSourceMap | undefined ;
242
242
/**
243
- * - Minimizer
243
+ * Minimizer
244
244
*/
245
245
minimizer : {
246
246
implementation : MinimizerImplementation < T > ;
@@ -274,23 +274,23 @@ type WarningsFilter = (
274
274
) => boolean ;
275
275
type BasePluginOptions = {
276
276
/**
277
- * - Test rule
277
+ * Test rule
278
278
*/
279
279
test ?: Rule | undefined ;
280
280
/**
281
- * - Include rule
281
+ * Include rule
282
282
*/
283
283
include ?: Rule | undefined ;
284
284
/**
285
- * - Exclude rule
285
+ * Exclude rule
286
286
*/
287
287
exclude ?: Rule | undefined ;
288
288
/**
289
- * - Warnings filter
289
+ * Warnings filter
290
290
*/
291
291
warningsFilter ?: WarningsFilter | undefined ;
292
292
/**
293
- * - Parallel option
293
+ * Parallel option
294
294
*/
295
295
parallel ?: Parallel | undefined ;
296
296
} ;
0 commit comments