@@ -76,6 +76,7 @@ const performanceLab = ( env ) => {
76
76
} ,
77
77
] ,
78
78
} ) ,
79
+ // @ts -expect-error TS2351: WebpackBar is constructable when using require(), type definitions might be geared towards ESM.
79
80
new WebpackBar ( {
80
81
name : 'Building Performance Lab Assets' ,
81
82
color : '#2196f3' ,
@@ -113,6 +114,7 @@ const embedOptimizer = ( env ) => {
113
114
} ,
114
115
] ,
115
116
} ) ,
117
+ // @ts -expect-error TS2351: WebpackBar is constructable when using require(), type definitions might be geared towards ESM.
116
118
new WebpackBar ( {
117
119
name : 'Building Embed Optimizer Assets' ,
118
120
color : '#2196f3' ,
@@ -162,6 +164,7 @@ const imagePrioritizer = ( env ) => {
162
164
} ,
163
165
] ,
164
166
} ) ,
167
+ // @ts -expect-error TS2351: WebpackBar is constructable when using require(), type definitions might be geared towards ESM.
165
168
new WebpackBar ( {
166
169
name : 'Building Image Prioritizer Assets' ,
167
170
color : '#2196f3' ,
@@ -217,6 +220,7 @@ const optimizationDetective = ( env ) => {
217
220
} ,
218
221
] ,
219
222
} ) ,
223
+ // @ts -expect-error TS2351: WebpackBar is constructable when using require(), type definitions might be geared towards ESM.
220
224
new WebpackBar ( {
221
225
name : 'Building Optimization Detective Assets' ,
222
226
color : '#2196f3' ,
@@ -250,6 +254,7 @@ const viewTransitions = ( env ) => {
250
254
} ,
251
255
] ,
252
256
} ) ,
257
+ // @ts -expect-error TS2351: WebpackBar is constructable when using require(), type definitions might be geared towards ESM.
253
258
new WebpackBar ( {
254
259
name : 'Building View Transitions Assets' ,
255
260
color : '#2196f3' ,
@@ -299,6 +304,7 @@ const webWorkerOffloading = ( env ) => {
299
304
} ,
300
305
] ,
301
306
} ) ,
307
+ // @ts -expect-error TS2351: WebpackBar is constructable when using require(), type definitions might be geared towards ESM.
302
308
new WebpackBar ( {
303
309
name : 'Building Web Worker Offloading Assets' ,
304
310
color : '#FFC107' ,
@@ -374,6 +380,7 @@ const buildPlugin = ( env ) => {
374
380
} ) ;
375
381
} ,
376
382
} ,
383
+ // @ts -expect-error TS2351: WebpackBar is constructable when using require(), type definitions might be geared towards ESM.
377
384
new WebpackBar ( {
378
385
name : `Building ${ env . plugin } Plugin` ,
379
386
color : '#4caf50' ,
0 commit comments