wxt 0.19.3-alpha2 → 0.19.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/utils/testing/fake-objects.d.ts +764 -764
- package/dist/version.mjs +1 -1
- package/package.json +1 -1
|
@@ -185,57 +185,57 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
185
185
|
imports?: false | {
|
|
186
186
|
imports?: ({
|
|
187
187
|
name?: string | undefined;
|
|
188
|
-
as?: import("unimport").ImportName;
|
|
188
|
+
as?: import("unimport").ImportName | undefined;
|
|
189
189
|
with?: {
|
|
190
190
|
[x: string]: string | undefined;
|
|
191
191
|
} | undefined;
|
|
192
192
|
from?: string | undefined;
|
|
193
|
-
priority?: number;
|
|
194
|
-
disabled?: boolean;
|
|
195
|
-
dtsDisabled?: boolean;
|
|
193
|
+
priority?: number | undefined;
|
|
194
|
+
disabled?: boolean | undefined;
|
|
195
|
+
dtsDisabled?: boolean | undefined;
|
|
196
196
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
197
197
|
meta?: {
|
|
198
198
|
[x: string]: any;
|
|
199
|
-
description?: string;
|
|
200
|
-
docsUrl?: string;
|
|
199
|
+
description?: string | undefined;
|
|
200
|
+
docsUrl?: string | undefined;
|
|
201
201
|
} | undefined;
|
|
202
|
-
type?: boolean;
|
|
203
|
-
typeFrom?: import("unimport").ModuleId;
|
|
202
|
+
type?: boolean | undefined;
|
|
203
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
204
204
|
} | undefined)[] | undefined;
|
|
205
205
|
presets?: ("@vue/composition-api" | "@vueuse/core" | "@vueuse/head" | "pinia" | "preact" | "quasar" | "react" | "react-router" | "react-router-dom" | "svelte" | "svelte/animate" | "svelte/easing" | "svelte/motion" | "svelte/store" | "svelte/transition" | "vee-validate" | "vitepress" | "vue-demi" | "vue-i18n" | "vue-router" | "vue-router-composables" | "vue" | "vue/macros" | "vuex" | "vitest" | "uni-app" | "solid-js" | "solid-app-router" | "rxjs" | "date-fns" | {
|
|
206
206
|
imports?: (string | any | {
|
|
207
207
|
meta?: {
|
|
208
208
|
[x: string]: any;
|
|
209
|
-
description?: string;
|
|
210
|
-
docsUrl?: string;
|
|
209
|
+
description?: string | undefined;
|
|
210
|
+
docsUrl?: string | undefined;
|
|
211
211
|
} | undefined;
|
|
212
|
-
type?: boolean;
|
|
212
|
+
type?: boolean | undefined;
|
|
213
213
|
name?: string | undefined;
|
|
214
|
-
as?: import("unimport").ImportName;
|
|
214
|
+
as?: import("unimport").ImportName | undefined;
|
|
215
215
|
with?: {
|
|
216
216
|
[x: string]: string | undefined;
|
|
217
217
|
} | undefined;
|
|
218
|
-
priority?: number;
|
|
219
|
-
disabled?: boolean;
|
|
220
|
-
dtsDisabled?: boolean;
|
|
218
|
+
priority?: number | undefined;
|
|
219
|
+
disabled?: boolean | undefined;
|
|
220
|
+
dtsDisabled?: boolean | undefined;
|
|
221
221
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
222
|
-
typeFrom?: import("unimport").ModuleId;
|
|
222
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
223
223
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
224
224
|
from?: string | undefined;
|
|
225
|
-
priority?: number;
|
|
226
|
-
disabled?: boolean;
|
|
227
|
-
dtsDisabled?: boolean;
|
|
225
|
+
priority?: number | undefined;
|
|
226
|
+
disabled?: boolean | undefined;
|
|
227
|
+
dtsDisabled?: boolean | undefined;
|
|
228
228
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
229
229
|
meta?: {
|
|
230
230
|
[x: string]: any;
|
|
231
|
-
description?: string;
|
|
232
|
-
docsUrl?: string;
|
|
231
|
+
description?: string | undefined;
|
|
232
|
+
docsUrl?: string | undefined;
|
|
233
233
|
} | undefined;
|
|
234
|
-
type?: boolean;
|
|
235
|
-
typeFrom?: import("unimport").ModuleId;
|
|
234
|
+
type?: boolean | undefined;
|
|
235
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
236
236
|
} | {
|
|
237
237
|
package?: string | undefined;
|
|
238
|
-
url?: string;
|
|
238
|
+
url?: string | undefined;
|
|
239
239
|
ignore?: (string | {
|
|
240
240
|
exec?: {} | undefined;
|
|
241
241
|
test?: {} | undefined;
|
|
@@ -255,12 +255,12 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
255
255
|
[Symbol.split]?: {} | undefined;
|
|
256
256
|
[Symbol.matchAll]?: {} | undefined;
|
|
257
257
|
} | {} | undefined)[] | undefined;
|
|
258
|
-
cache?: boolean;
|
|
258
|
+
cache?: boolean | undefined;
|
|
259
259
|
} | undefined)[] | undefined;
|
|
260
260
|
warn?: {} | undefined;
|
|
261
261
|
debugLog?: {} | undefined;
|
|
262
262
|
addons?: {
|
|
263
|
-
vueTemplate?: boolean;
|
|
263
|
+
vueTemplate?: boolean | undefined;
|
|
264
264
|
} | ({
|
|
265
265
|
transform?: {} | undefined;
|
|
266
266
|
declaration?: {} | undefined;
|
|
@@ -274,16 +274,16 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
274
274
|
dirsScanOptions?: {
|
|
275
275
|
filePatterns?: (string | undefined)[] | undefined;
|
|
276
276
|
fileFilter?: {} | undefined;
|
|
277
|
-
types?: boolean;
|
|
278
|
-
cwd?: string;
|
|
277
|
+
types?: boolean | undefined;
|
|
278
|
+
cwd?: string | undefined;
|
|
279
279
|
} | undefined;
|
|
280
280
|
resolveId?: {} | undefined;
|
|
281
281
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
282
282
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
283
|
-
collectMeta?: boolean;
|
|
284
|
-
injectAtEnd?: boolean;
|
|
285
|
-
mergeExisting?: boolean;
|
|
286
|
-
parser?: "acorn" | "regex";
|
|
283
|
+
collectMeta?: boolean | undefined;
|
|
284
|
+
injectAtEnd?: boolean | undefined;
|
|
285
|
+
mergeExisting?: boolean | undefined;
|
|
286
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
287
287
|
eslintrc?: {
|
|
288
288
|
enabled?: false | 9 | 8 | undefined;
|
|
289
289
|
filePath?: string | undefined;
|
|
@@ -301,150 +301,150 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
301
301
|
} | undefined;
|
|
302
302
|
runnerConfig?: {
|
|
303
303
|
config?: {
|
|
304
|
-
disabled?: boolean;
|
|
305
|
-
openConsole?: boolean;
|
|
306
|
-
openDevtools?: boolean;
|
|
304
|
+
disabled?: boolean | undefined;
|
|
305
|
+
openConsole?: boolean | undefined;
|
|
306
|
+
openDevtools?: boolean | undefined;
|
|
307
307
|
binaries?: {
|
|
308
308
|
[x: string]: string | undefined;
|
|
309
309
|
} | undefined;
|
|
310
|
-
firefoxProfile?: string;
|
|
311
|
-
chromiumProfile?: string;
|
|
312
|
-
chromiumPref?: string;
|
|
313
|
-
chromiumPort?: number;
|
|
310
|
+
firefoxProfile?: string | undefined;
|
|
311
|
+
chromiumProfile?: string | undefined;
|
|
312
|
+
chromiumPref?: string | undefined;
|
|
313
|
+
chromiumPort?: number | undefined;
|
|
314
314
|
firefoxPrefs?: {
|
|
315
315
|
[x: string]: string | undefined;
|
|
316
316
|
} | undefined;
|
|
317
317
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
318
318
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
319
319
|
startUrls?: (string | undefined)[] | undefined;
|
|
320
|
-
keepProfileChanges?: boolean;
|
|
320
|
+
keepProfileChanges?: boolean | undefined;
|
|
321
321
|
} | undefined;
|
|
322
322
|
layers?: ({
|
|
323
323
|
config?: {
|
|
324
|
-
disabled?: boolean;
|
|
325
|
-
openConsole?: boolean;
|
|
326
|
-
openDevtools?: boolean;
|
|
324
|
+
disabled?: boolean | undefined;
|
|
325
|
+
openConsole?: boolean | undefined;
|
|
326
|
+
openDevtools?: boolean | undefined;
|
|
327
327
|
binaries?: {
|
|
328
328
|
[x: string]: string | undefined;
|
|
329
329
|
} | undefined;
|
|
330
|
-
firefoxProfile?: string;
|
|
331
|
-
chromiumProfile?: string;
|
|
332
|
-
chromiumPref?: string;
|
|
333
|
-
chromiumPort?: number;
|
|
330
|
+
firefoxProfile?: string | undefined;
|
|
331
|
+
chromiumProfile?: string | undefined;
|
|
332
|
+
chromiumPref?: string | undefined;
|
|
333
|
+
chromiumPort?: number | undefined;
|
|
334
334
|
firefoxPrefs?: {
|
|
335
335
|
[x: string]: string | undefined;
|
|
336
336
|
} | undefined;
|
|
337
337
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
338
338
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
339
339
|
startUrls?: (string | undefined)[] | undefined;
|
|
340
|
-
keepProfileChanges?: boolean;
|
|
340
|
+
keepProfileChanges?: boolean | undefined;
|
|
341
341
|
} | null | undefined;
|
|
342
|
-
source?: string;
|
|
342
|
+
source?: string | undefined;
|
|
343
343
|
sourceOptions?: {
|
|
344
344
|
[x: string]: any;
|
|
345
345
|
meta?: {
|
|
346
346
|
[x: string]: any;
|
|
347
|
-
name?: string;
|
|
347
|
+
name?: string | undefined;
|
|
348
348
|
} | undefined;
|
|
349
349
|
overrides?: {
|
|
350
|
-
disabled?: boolean;
|
|
351
|
-
openConsole?: boolean;
|
|
352
|
-
openDevtools?: boolean;
|
|
350
|
+
disabled?: boolean | undefined;
|
|
351
|
+
openConsole?: boolean | undefined;
|
|
352
|
+
openDevtools?: boolean | undefined;
|
|
353
353
|
binaries?: {
|
|
354
354
|
[x: string]: string | undefined;
|
|
355
355
|
} | undefined;
|
|
356
|
-
firefoxProfile?: string;
|
|
357
|
-
chromiumProfile?: string;
|
|
358
|
-
chromiumPref?: string;
|
|
359
|
-
chromiumPort?: number;
|
|
356
|
+
firefoxProfile?: string | undefined;
|
|
357
|
+
chromiumProfile?: string | undefined;
|
|
358
|
+
chromiumPref?: string | undefined;
|
|
359
|
+
chromiumPort?: number | undefined;
|
|
360
360
|
firefoxPrefs?: {
|
|
361
361
|
[x: string]: string | undefined;
|
|
362
362
|
} | undefined;
|
|
363
363
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
364
364
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
365
365
|
startUrls?: (string | undefined)[] | undefined;
|
|
366
|
-
keepProfileChanges?: boolean;
|
|
366
|
+
keepProfileChanges?: boolean | undefined;
|
|
367
367
|
} | undefined;
|
|
368
368
|
giget?: {
|
|
369
|
-
provider?: string;
|
|
370
|
-
force?: boolean;
|
|
371
|
-
forceClean?: boolean;
|
|
372
|
-
offline?: boolean;
|
|
373
|
-
preferOffline?: boolean;
|
|
369
|
+
provider?: string | undefined;
|
|
370
|
+
force?: boolean | undefined;
|
|
371
|
+
forceClean?: boolean | undefined;
|
|
372
|
+
offline?: boolean | undefined;
|
|
373
|
+
preferOffline?: boolean | undefined;
|
|
374
374
|
providers?: {
|
|
375
375
|
[x: string]: {} | undefined;
|
|
376
376
|
} | undefined;
|
|
377
|
-
dir?: string;
|
|
378
|
-
registry?: false | string;
|
|
379
|
-
cwd?: string;
|
|
380
|
-
auth?: string;
|
|
381
|
-
install?: boolean;
|
|
382
|
-
silent?: boolean;
|
|
377
|
+
dir?: string | undefined;
|
|
378
|
+
registry?: (false | string) | undefined;
|
|
379
|
+
cwd?: string | undefined;
|
|
380
|
+
auth?: string | undefined;
|
|
381
|
+
install?: boolean | undefined;
|
|
382
|
+
silent?: boolean | undefined;
|
|
383
383
|
} | undefined;
|
|
384
|
-
install?: boolean;
|
|
385
|
-
auth?: string;
|
|
384
|
+
install?: boolean | undefined;
|
|
385
|
+
auth?: string | undefined;
|
|
386
386
|
} | undefined;
|
|
387
387
|
meta?: {
|
|
388
388
|
[x: string]: any;
|
|
389
|
-
name?: string;
|
|
389
|
+
name?: string | undefined;
|
|
390
390
|
} | undefined;
|
|
391
|
-
cwd?: string;
|
|
392
|
-
configFile?: string;
|
|
391
|
+
cwd?: string | undefined;
|
|
392
|
+
configFile?: string | undefined;
|
|
393
393
|
} | undefined)[] | undefined;
|
|
394
|
-
cwd?: string;
|
|
395
|
-
source?: string;
|
|
394
|
+
cwd?: string | undefined;
|
|
395
|
+
source?: string | undefined;
|
|
396
396
|
sourceOptions?: {
|
|
397
397
|
[x: string]: any;
|
|
398
398
|
meta?: {
|
|
399
399
|
[x: string]: any;
|
|
400
|
-
name?: string;
|
|
400
|
+
name?: string | undefined;
|
|
401
401
|
} | undefined;
|
|
402
402
|
overrides?: {
|
|
403
|
-
disabled?: boolean;
|
|
404
|
-
openConsole?: boolean;
|
|
405
|
-
openDevtools?: boolean;
|
|
403
|
+
disabled?: boolean | undefined;
|
|
404
|
+
openConsole?: boolean | undefined;
|
|
405
|
+
openDevtools?: boolean | undefined;
|
|
406
406
|
binaries?: {
|
|
407
407
|
[x: string]: string | undefined;
|
|
408
408
|
} | undefined;
|
|
409
|
-
firefoxProfile?: string;
|
|
410
|
-
chromiumProfile?: string;
|
|
411
|
-
chromiumPref?: string;
|
|
412
|
-
chromiumPort?: number;
|
|
409
|
+
firefoxProfile?: string | undefined;
|
|
410
|
+
chromiumProfile?: string | undefined;
|
|
411
|
+
chromiumPref?: string | undefined;
|
|
412
|
+
chromiumPort?: number | undefined;
|
|
413
413
|
firefoxPrefs?: {
|
|
414
414
|
[x: string]: string | undefined;
|
|
415
415
|
} | undefined;
|
|
416
416
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
417
417
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
418
418
|
startUrls?: (string | undefined)[] | undefined;
|
|
419
|
-
keepProfileChanges?: boolean;
|
|
419
|
+
keepProfileChanges?: boolean | undefined;
|
|
420
420
|
} | undefined;
|
|
421
421
|
giget?: {
|
|
422
|
-
provider?: string;
|
|
423
|
-
force?: boolean;
|
|
424
|
-
forceClean?: boolean;
|
|
425
|
-
offline?: boolean;
|
|
426
|
-
preferOffline?: boolean;
|
|
422
|
+
provider?: string | undefined;
|
|
423
|
+
force?: boolean | undefined;
|
|
424
|
+
forceClean?: boolean | undefined;
|
|
425
|
+
offline?: boolean | undefined;
|
|
426
|
+
preferOffline?: boolean | undefined;
|
|
427
427
|
providers?: {
|
|
428
428
|
[x: string]: {} | undefined;
|
|
429
429
|
} | undefined;
|
|
430
|
-
dir?: string;
|
|
431
|
-
registry?: false | string;
|
|
432
|
-
cwd?: string;
|
|
433
|
-
auth?: string;
|
|
434
|
-
install?: boolean;
|
|
435
|
-
silent?: boolean;
|
|
430
|
+
dir?: string | undefined;
|
|
431
|
+
registry?: (false | string) | undefined;
|
|
432
|
+
cwd?: string | undefined;
|
|
433
|
+
auth?: string | undefined;
|
|
434
|
+
install?: boolean | undefined;
|
|
435
|
+
silent?: boolean | undefined;
|
|
436
436
|
} | undefined;
|
|
437
|
-
install?: boolean;
|
|
438
|
-
auth?: string;
|
|
437
|
+
install?: boolean | undefined;
|
|
438
|
+
auth?: string | undefined;
|
|
439
439
|
} | undefined;
|
|
440
440
|
meta?: {
|
|
441
441
|
[x: string]: any;
|
|
442
|
-
name?: string;
|
|
442
|
+
name?: string | undefined;
|
|
443
443
|
} | undefined;
|
|
444
|
-
configFile?: string;
|
|
444
|
+
configFile?: string | undefined;
|
|
445
445
|
} | undefined;
|
|
446
446
|
zip?: {
|
|
447
|
-
name?: string;
|
|
447
|
+
name?: string | undefined;
|
|
448
448
|
artifactTemplate?: string | undefined;
|
|
449
449
|
sourcesTemplate?: string | undefined;
|
|
450
450
|
includeSources?: (string | undefined)[] | undefined;
|
|
@@ -467,10 +467,10 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
467
467
|
userConfigMetadata?: {
|
|
468
468
|
meta?: {
|
|
469
469
|
[x: string]: any;
|
|
470
|
-
name?: string;
|
|
470
|
+
name?: string | undefined;
|
|
471
471
|
} | undefined;
|
|
472
|
-
source?: string;
|
|
473
|
-
configFile?: string;
|
|
472
|
+
source?: string | undefined;
|
|
473
|
+
configFile?: string | undefined;
|
|
474
474
|
layers?: ({
|
|
475
475
|
config?: {
|
|
476
476
|
manifest?: {
|
|
@@ -484,70 +484,70 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
484
484
|
readonly [Symbol.toStringTag]?: string | undefined;
|
|
485
485
|
} | {} | undefined;
|
|
486
486
|
vite?: {} | undefined;
|
|
487
|
-
root?: string;
|
|
488
|
-
mode?: string;
|
|
489
|
-
publicDir?: string;
|
|
487
|
+
root?: string | undefined;
|
|
488
|
+
mode?: string | undefined;
|
|
489
|
+
publicDir?: string | undefined;
|
|
490
490
|
experimental?: {} | undefined;
|
|
491
|
-
srcDir?: string;
|
|
492
|
-
entrypointsDir?: string;
|
|
493
|
-
modulesDir?: string;
|
|
491
|
+
srcDir?: string | undefined;
|
|
492
|
+
entrypointsDir?: string | undefined;
|
|
493
|
+
modulesDir?: string | undefined;
|
|
494
494
|
filterEntrypoints?: (string | undefined)[] | undefined;
|
|
495
|
-
outDir?: string;
|
|
496
|
-
debug?: boolean;
|
|
495
|
+
outDir?: string | undefined;
|
|
496
|
+
debug?: boolean | undefined;
|
|
497
497
|
imports?: false | {
|
|
498
498
|
imports?: ({
|
|
499
499
|
name?: string | undefined;
|
|
500
|
-
as?: import("unimport").ImportName;
|
|
500
|
+
as?: import("unimport").ImportName | undefined;
|
|
501
501
|
with?: {
|
|
502
502
|
[x: string]: string | undefined;
|
|
503
503
|
} | undefined;
|
|
504
504
|
from?: string | undefined;
|
|
505
|
-
priority?: number;
|
|
506
|
-
disabled?: boolean;
|
|
507
|
-
dtsDisabled?: boolean;
|
|
505
|
+
priority?: number | undefined;
|
|
506
|
+
disabled?: boolean | undefined;
|
|
507
|
+
dtsDisabled?: boolean | undefined;
|
|
508
508
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
509
509
|
meta?: {
|
|
510
510
|
[x: string]: any;
|
|
511
|
-
description?: string;
|
|
512
|
-
docsUrl?: string;
|
|
511
|
+
description?: string | undefined;
|
|
512
|
+
docsUrl?: string | undefined;
|
|
513
513
|
} | undefined;
|
|
514
|
-
type?: boolean;
|
|
515
|
-
typeFrom?: import("unimport").ModuleId;
|
|
514
|
+
type?: boolean | undefined;
|
|
515
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
516
516
|
} | undefined)[] | undefined;
|
|
517
517
|
presets?: ("@vue/composition-api" | "@vueuse/core" | "@vueuse/head" | "pinia" | "preact" | "quasar" | "react" | "react-router" | "react-router-dom" | "svelte" | "svelte/animate" | "svelte/easing" | "svelte/motion" | "svelte/store" | "svelte/transition" | "vee-validate" | "vitepress" | "vue-demi" | "vue-i18n" | "vue-router" | "vue-router-composables" | "vue" | "vue/macros" | "vuex" | "vitest" | "uni-app" | "solid-js" | "solid-app-router" | "rxjs" | "date-fns" | {
|
|
518
518
|
imports?: (string | any | {
|
|
519
519
|
meta?: {
|
|
520
520
|
[x: string]: any;
|
|
521
|
-
description?: string;
|
|
522
|
-
docsUrl?: string;
|
|
521
|
+
description?: string | undefined;
|
|
522
|
+
docsUrl?: string | undefined;
|
|
523
523
|
} | undefined;
|
|
524
|
-
type?: boolean;
|
|
524
|
+
type?: boolean | undefined;
|
|
525
525
|
name?: string | undefined;
|
|
526
|
-
as?: import("unimport").ImportName;
|
|
526
|
+
as?: import("unimport").ImportName | undefined;
|
|
527
527
|
with?: {
|
|
528
528
|
[x: string]: string | undefined;
|
|
529
529
|
} | undefined;
|
|
530
|
-
priority?: number;
|
|
531
|
-
disabled?: boolean;
|
|
532
|
-
dtsDisabled?: boolean;
|
|
530
|
+
priority?: number | undefined;
|
|
531
|
+
disabled?: boolean | undefined;
|
|
532
|
+
dtsDisabled?: boolean | undefined;
|
|
533
533
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
534
|
-
typeFrom?: import("unimport").ModuleId;
|
|
534
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
535
535
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
536
536
|
from?: string | undefined;
|
|
537
|
-
priority?: number;
|
|
538
|
-
disabled?: boolean;
|
|
539
|
-
dtsDisabled?: boolean;
|
|
537
|
+
priority?: number | undefined;
|
|
538
|
+
disabled?: boolean | undefined;
|
|
539
|
+
dtsDisabled?: boolean | undefined;
|
|
540
540
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
541
541
|
meta?: {
|
|
542
542
|
[x: string]: any;
|
|
543
|
-
description?: string;
|
|
544
|
-
docsUrl?: string;
|
|
543
|
+
description?: string | undefined;
|
|
544
|
+
docsUrl?: string | undefined;
|
|
545
545
|
} | undefined;
|
|
546
|
-
type?: boolean;
|
|
547
|
-
typeFrom?: import("unimport").ModuleId;
|
|
546
|
+
type?: boolean | undefined;
|
|
547
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
548
548
|
} | {
|
|
549
549
|
package?: string | undefined;
|
|
550
|
-
url?: string;
|
|
550
|
+
url?: string | undefined;
|
|
551
551
|
ignore?: (string | {
|
|
552
552
|
exec?: {} | undefined;
|
|
553
553
|
test?: {} | undefined;
|
|
@@ -567,12 +567,12 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
567
567
|
[Symbol.split]?: {} | undefined;
|
|
568
568
|
[Symbol.matchAll]?: {} | undefined;
|
|
569
569
|
} | {} | undefined)[] | undefined;
|
|
570
|
-
cache?: boolean;
|
|
570
|
+
cache?: boolean | undefined;
|
|
571
571
|
} | undefined)[] | undefined;
|
|
572
572
|
warn?: {} | undefined;
|
|
573
573
|
debugLog?: {} | undefined;
|
|
574
574
|
addons?: {
|
|
575
|
-
vueTemplate?: boolean;
|
|
575
|
+
vueTemplate?: boolean | undefined;
|
|
576
576
|
} | ({
|
|
577
577
|
transform?: {} | undefined;
|
|
578
578
|
declaration?: {} | undefined;
|
|
@@ -586,24 +586,24 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
586
586
|
dirsScanOptions?: {
|
|
587
587
|
filePatterns?: (string | undefined)[] | undefined;
|
|
588
588
|
fileFilter?: {} | undefined;
|
|
589
|
-
types?: boolean;
|
|
590
|
-
cwd?: string;
|
|
589
|
+
types?: boolean | undefined;
|
|
590
|
+
cwd?: string | undefined;
|
|
591
591
|
} | undefined;
|
|
592
592
|
resolveId?: {} | undefined;
|
|
593
593
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
594
594
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
595
|
-
collectMeta?: boolean;
|
|
596
|
-
injectAtEnd?: boolean;
|
|
597
|
-
mergeExisting?: boolean;
|
|
598
|
-
parser?: "acorn" | "regex";
|
|
595
|
+
collectMeta?: boolean | undefined;
|
|
596
|
+
injectAtEnd?: boolean | undefined;
|
|
597
|
+
mergeExisting?: boolean | undefined;
|
|
598
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
599
599
|
eslintrc?: {
|
|
600
|
-
enabled?: false | true | "auto" | 8 | 9;
|
|
601
|
-
filePath?: string;
|
|
602
|
-
globalsPropValue?: import("../../../types").EslintGlobalsPropValue;
|
|
600
|
+
enabled?: (false | true | "auto" | 8 | 9) | undefined;
|
|
601
|
+
filePath?: string | undefined;
|
|
602
|
+
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
603
603
|
} | undefined;
|
|
604
604
|
} | undefined;
|
|
605
|
-
browser?: import("../../../types").TargetBrowser;
|
|
606
|
-
manifestVersion?: import("../../../types").TargetManifestVersion;
|
|
605
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
606
|
+
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
607
607
|
logger?: {
|
|
608
608
|
debug?: {} | undefined;
|
|
609
609
|
log?: {} | undefined;
|
|
@@ -622,53 +622,53 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
622
622
|
} | undefined;
|
|
623
623
|
} | undefined;
|
|
624
624
|
runner?: {
|
|
625
|
-
disabled?: boolean;
|
|
626
|
-
openConsole?: boolean;
|
|
627
|
-
openDevtools?: boolean;
|
|
625
|
+
disabled?: boolean | undefined;
|
|
626
|
+
openConsole?: boolean | undefined;
|
|
627
|
+
openDevtools?: boolean | undefined;
|
|
628
628
|
binaries?: {
|
|
629
629
|
[x: string]: string | undefined;
|
|
630
630
|
} | undefined;
|
|
631
|
-
firefoxProfile?: string;
|
|
632
|
-
chromiumProfile?: string;
|
|
633
|
-
chromiumPref?: string;
|
|
634
|
-
chromiumPort?: number;
|
|
631
|
+
firefoxProfile?: string | undefined;
|
|
632
|
+
chromiumProfile?: string | undefined;
|
|
633
|
+
chromiumPref?: string | undefined;
|
|
634
|
+
chromiumPort?: number | undefined;
|
|
635
635
|
firefoxPrefs?: {
|
|
636
636
|
[x: string]: string | undefined;
|
|
637
637
|
} | undefined;
|
|
638
638
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
639
639
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
640
640
|
startUrls?: (string | undefined)[] | undefined;
|
|
641
|
-
keepProfileChanges?: boolean;
|
|
641
|
+
keepProfileChanges?: boolean | undefined;
|
|
642
642
|
} | undefined;
|
|
643
643
|
zip?: {
|
|
644
|
-
artifactTemplate?: string;
|
|
645
|
-
sourcesTemplate?: string;
|
|
646
|
-
name?: string;
|
|
647
|
-
sourcesRoot?: string;
|
|
644
|
+
artifactTemplate?: string | undefined;
|
|
645
|
+
sourcesTemplate?: string | undefined;
|
|
646
|
+
name?: string | undefined;
|
|
647
|
+
sourcesRoot?: string | undefined;
|
|
648
648
|
includeSources?: (string | undefined)[] | undefined;
|
|
649
649
|
excludeSources?: (string | undefined)[] | undefined;
|
|
650
650
|
downloadPackages?: (string | undefined)[] | undefined;
|
|
651
|
-
compressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
651
|
+
compressionLevel?: (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9) | undefined;
|
|
652
652
|
} | undefined;
|
|
653
653
|
transformManifest?: {} | undefined;
|
|
654
654
|
analysis?: {
|
|
655
|
-
enabled?: boolean;
|
|
656
|
-
open?: boolean;
|
|
655
|
+
enabled?: boolean | undefined;
|
|
656
|
+
open?: boolean | undefined;
|
|
657
657
|
template?: import("@aklinker1/rollup-plugin-visualizer").PluginVisualizerOptions["template"];
|
|
658
|
-
outputFile?: string;
|
|
659
|
-
keepArtifacts?: boolean;
|
|
658
|
+
outputFile?: string | undefined;
|
|
659
|
+
keepArtifacts?: boolean | undefined;
|
|
660
660
|
} | undefined;
|
|
661
661
|
alias?: {
|
|
662
662
|
[x: string]: string | undefined;
|
|
663
663
|
} | undefined;
|
|
664
|
-
extensionApi?: "webextension-polyfill" | "chrome";
|
|
665
|
-
entrypointLoader?: "vite-node" | "jiti";
|
|
664
|
+
extensionApi?: ("webextension-polyfill" | "chrome") | undefined;
|
|
665
|
+
entrypointLoader?: ("vite-node" | "jiti") | undefined;
|
|
666
666
|
dev?: {
|
|
667
667
|
server?: {
|
|
668
|
-
port?: number;
|
|
669
|
-
hostname?: string;
|
|
668
|
+
port?: number | undefined;
|
|
669
|
+
hostname?: string | undefined;
|
|
670
670
|
} | undefined;
|
|
671
|
-
reloadCommand?: string | false;
|
|
671
|
+
reloadCommand?: (string | false) | undefined;
|
|
672
672
|
} | undefined;
|
|
673
673
|
hooks?: {
|
|
674
674
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -787,12 +787,12 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
787
787
|
} | undefined;
|
|
788
788
|
modules?: (string | undefined)[] | undefined;
|
|
789
789
|
} | null | undefined;
|
|
790
|
-
source?: string;
|
|
790
|
+
source?: string | undefined;
|
|
791
791
|
sourceOptions?: {
|
|
792
792
|
[x: string]: any;
|
|
793
793
|
meta?: {
|
|
794
794
|
[x: string]: any;
|
|
795
|
-
name?: string;
|
|
795
|
+
name?: string | undefined;
|
|
796
796
|
} | undefined;
|
|
797
797
|
overrides?: {
|
|
798
798
|
manifest?: {
|
|
@@ -806,70 +806,70 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
806
806
|
readonly [Symbol.toStringTag]?: string | undefined;
|
|
807
807
|
} | {} | undefined;
|
|
808
808
|
vite?: {} | undefined;
|
|
809
|
-
root?: string;
|
|
810
|
-
mode?: string;
|
|
811
|
-
publicDir?: string;
|
|
809
|
+
root?: string | undefined;
|
|
810
|
+
mode?: string | undefined;
|
|
811
|
+
publicDir?: string | undefined;
|
|
812
812
|
experimental?: {} | undefined;
|
|
813
|
-
srcDir?: string;
|
|
814
|
-
entrypointsDir?: string;
|
|
815
|
-
modulesDir?: string;
|
|
813
|
+
srcDir?: string | undefined;
|
|
814
|
+
entrypointsDir?: string | undefined;
|
|
815
|
+
modulesDir?: string | undefined;
|
|
816
816
|
filterEntrypoints?: (string | undefined)[] | undefined;
|
|
817
|
-
outDir?: string;
|
|
818
|
-
debug?: boolean;
|
|
817
|
+
outDir?: string | undefined;
|
|
818
|
+
debug?: boolean | undefined;
|
|
819
819
|
imports?: false | {
|
|
820
820
|
imports?: ({
|
|
821
821
|
name?: string | undefined;
|
|
822
|
-
as?: import("unimport").ImportName;
|
|
822
|
+
as?: import("unimport").ImportName | undefined;
|
|
823
823
|
with?: {
|
|
824
824
|
[x: string]: string | undefined;
|
|
825
825
|
} | undefined;
|
|
826
826
|
from?: string | undefined;
|
|
827
|
-
priority?: number;
|
|
828
|
-
disabled?: boolean;
|
|
829
|
-
dtsDisabled?: boolean;
|
|
827
|
+
priority?: number | undefined;
|
|
828
|
+
disabled?: boolean | undefined;
|
|
829
|
+
dtsDisabled?: boolean | undefined;
|
|
830
830
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
831
831
|
meta?: {
|
|
832
832
|
[x: string]: any;
|
|
833
|
-
description?: string;
|
|
834
|
-
docsUrl?: string;
|
|
833
|
+
description?: string | undefined;
|
|
834
|
+
docsUrl?: string | undefined;
|
|
835
835
|
} | undefined;
|
|
836
|
-
type?: boolean;
|
|
837
|
-
typeFrom?: import("unimport").ModuleId;
|
|
836
|
+
type?: boolean | undefined;
|
|
837
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
838
838
|
} | undefined)[] | undefined;
|
|
839
839
|
presets?: ("@vue/composition-api" | "@vueuse/core" | "@vueuse/head" | "pinia" | "preact" | "quasar" | "react" | "react-router" | "react-router-dom" | "svelte" | "svelte/animate" | "svelte/easing" | "svelte/motion" | "svelte/store" | "svelte/transition" | "vee-validate" | "vitepress" | "vue-demi" | "vue-i18n" | "vue-router" | "vue-router-composables" | "vue" | "vue/macros" | "vuex" | "vitest" | "uni-app" | "solid-js" | "solid-app-router" | "rxjs" | "date-fns" | {
|
|
840
840
|
imports?: (string | any | {
|
|
841
841
|
meta?: {
|
|
842
842
|
[x: string]: any;
|
|
843
|
-
description?: string;
|
|
844
|
-
docsUrl?: string;
|
|
843
|
+
description?: string | undefined;
|
|
844
|
+
docsUrl?: string | undefined;
|
|
845
845
|
} | undefined;
|
|
846
|
-
type?: boolean;
|
|
846
|
+
type?: boolean | undefined;
|
|
847
847
|
name?: string | undefined;
|
|
848
|
-
as?: import("unimport").ImportName;
|
|
848
|
+
as?: import("unimport").ImportName | undefined;
|
|
849
849
|
with?: {
|
|
850
850
|
[x: string]: string | undefined;
|
|
851
851
|
} | undefined;
|
|
852
|
-
priority?: number;
|
|
853
|
-
disabled?: boolean;
|
|
854
|
-
dtsDisabled?: boolean;
|
|
852
|
+
priority?: number | undefined;
|
|
853
|
+
disabled?: boolean | undefined;
|
|
854
|
+
dtsDisabled?: boolean | undefined;
|
|
855
855
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
856
|
-
typeFrom?: import("unimport").ModuleId;
|
|
856
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
857
857
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
858
858
|
from?: string | undefined;
|
|
859
|
-
priority?: number;
|
|
860
|
-
disabled?: boolean;
|
|
861
|
-
dtsDisabled?: boolean;
|
|
859
|
+
priority?: number | undefined;
|
|
860
|
+
disabled?: boolean | undefined;
|
|
861
|
+
dtsDisabled?: boolean | undefined;
|
|
862
862
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
863
863
|
meta?: {
|
|
864
864
|
[x: string]: any;
|
|
865
|
-
description?: string;
|
|
866
|
-
docsUrl?: string;
|
|
865
|
+
description?: string | undefined;
|
|
866
|
+
docsUrl?: string | undefined;
|
|
867
867
|
} | undefined;
|
|
868
|
-
type?: boolean;
|
|
869
|
-
typeFrom?: import("unimport").ModuleId;
|
|
868
|
+
type?: boolean | undefined;
|
|
869
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
870
870
|
} | {
|
|
871
871
|
package?: string | undefined;
|
|
872
|
-
url?: string;
|
|
872
|
+
url?: string | undefined;
|
|
873
873
|
ignore?: (string | {
|
|
874
874
|
exec?: {} | undefined;
|
|
875
875
|
test?: {} | undefined;
|
|
@@ -889,12 +889,12 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
889
889
|
[Symbol.split]?: {} | undefined;
|
|
890
890
|
[Symbol.matchAll]?: {} | undefined;
|
|
891
891
|
} | {} | undefined)[] | undefined;
|
|
892
|
-
cache?: boolean;
|
|
892
|
+
cache?: boolean | undefined;
|
|
893
893
|
} | undefined)[] | undefined;
|
|
894
894
|
warn?: {} | undefined;
|
|
895
895
|
debugLog?: {} | undefined;
|
|
896
896
|
addons?: {
|
|
897
|
-
vueTemplate?: boolean;
|
|
897
|
+
vueTemplate?: boolean | undefined;
|
|
898
898
|
} | ({
|
|
899
899
|
transform?: {} | undefined;
|
|
900
900
|
declaration?: {} | undefined;
|
|
@@ -908,24 +908,24 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
908
908
|
dirsScanOptions?: {
|
|
909
909
|
filePatterns?: (string | undefined)[] | undefined;
|
|
910
910
|
fileFilter?: {} | undefined;
|
|
911
|
-
types?: boolean;
|
|
912
|
-
cwd?: string;
|
|
911
|
+
types?: boolean | undefined;
|
|
912
|
+
cwd?: string | undefined;
|
|
913
913
|
} | undefined;
|
|
914
914
|
resolveId?: {} | undefined;
|
|
915
915
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
916
916
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
917
|
-
collectMeta?: boolean;
|
|
918
|
-
injectAtEnd?: boolean;
|
|
919
|
-
mergeExisting?: boolean;
|
|
920
|
-
parser?: "acorn" | "regex";
|
|
917
|
+
collectMeta?: boolean | undefined;
|
|
918
|
+
injectAtEnd?: boolean | undefined;
|
|
919
|
+
mergeExisting?: boolean | undefined;
|
|
920
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
921
921
|
eslintrc?: {
|
|
922
|
-
enabled?: false | true | "auto" | 8 | 9;
|
|
923
|
-
filePath?: string;
|
|
924
|
-
globalsPropValue?: import("../../../types").EslintGlobalsPropValue;
|
|
922
|
+
enabled?: (false | true | "auto" | 8 | 9) | undefined;
|
|
923
|
+
filePath?: string | undefined;
|
|
924
|
+
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
925
925
|
} | undefined;
|
|
926
926
|
} | undefined;
|
|
927
|
-
browser?: import("../../../types").TargetBrowser;
|
|
928
|
-
manifestVersion?: import("../../../types").TargetManifestVersion;
|
|
927
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
928
|
+
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
929
929
|
logger?: {
|
|
930
930
|
debug?: {} | undefined;
|
|
931
931
|
log?: {} | undefined;
|
|
@@ -944,53 +944,53 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
944
944
|
} | undefined;
|
|
945
945
|
} | undefined;
|
|
946
946
|
runner?: {
|
|
947
|
-
disabled?: boolean;
|
|
948
|
-
openConsole?: boolean;
|
|
949
|
-
openDevtools?: boolean;
|
|
947
|
+
disabled?: boolean | undefined;
|
|
948
|
+
openConsole?: boolean | undefined;
|
|
949
|
+
openDevtools?: boolean | undefined;
|
|
950
950
|
binaries?: {
|
|
951
951
|
[x: string]: string | undefined;
|
|
952
952
|
} | undefined;
|
|
953
|
-
firefoxProfile?: string;
|
|
954
|
-
chromiumProfile?: string;
|
|
955
|
-
chromiumPref?: string;
|
|
956
|
-
chromiumPort?: number;
|
|
953
|
+
firefoxProfile?: string | undefined;
|
|
954
|
+
chromiumProfile?: string | undefined;
|
|
955
|
+
chromiumPref?: string | undefined;
|
|
956
|
+
chromiumPort?: number | undefined;
|
|
957
957
|
firefoxPrefs?: {
|
|
958
958
|
[x: string]: string | undefined;
|
|
959
959
|
} | undefined;
|
|
960
960
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
961
961
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
962
962
|
startUrls?: (string | undefined)[] | undefined;
|
|
963
|
-
keepProfileChanges?: boolean;
|
|
963
|
+
keepProfileChanges?: boolean | undefined;
|
|
964
964
|
} | undefined;
|
|
965
965
|
zip?: {
|
|
966
|
-
artifactTemplate?: string;
|
|
967
|
-
sourcesTemplate?: string;
|
|
968
|
-
name?: string;
|
|
969
|
-
sourcesRoot?: string;
|
|
966
|
+
artifactTemplate?: string | undefined;
|
|
967
|
+
sourcesTemplate?: string | undefined;
|
|
968
|
+
name?: string | undefined;
|
|
969
|
+
sourcesRoot?: string | undefined;
|
|
970
970
|
includeSources?: (string | undefined)[] | undefined;
|
|
971
971
|
excludeSources?: (string | undefined)[] | undefined;
|
|
972
972
|
downloadPackages?: (string | undefined)[] | undefined;
|
|
973
|
-
compressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
973
|
+
compressionLevel?: (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9) | undefined;
|
|
974
974
|
} | undefined;
|
|
975
975
|
transformManifest?: {} | undefined;
|
|
976
976
|
analysis?: {
|
|
977
|
-
enabled?: boolean;
|
|
978
|
-
open?: boolean;
|
|
977
|
+
enabled?: boolean | undefined;
|
|
978
|
+
open?: boolean | undefined;
|
|
979
979
|
template?: import("@aklinker1/rollup-plugin-visualizer").PluginVisualizerOptions["template"];
|
|
980
|
-
outputFile?: string;
|
|
981
|
-
keepArtifacts?: boolean;
|
|
980
|
+
outputFile?: string | undefined;
|
|
981
|
+
keepArtifacts?: boolean | undefined;
|
|
982
982
|
} | undefined;
|
|
983
983
|
alias?: {
|
|
984
984
|
[x: string]: string | undefined;
|
|
985
985
|
} | undefined;
|
|
986
|
-
extensionApi?: "webextension-polyfill" | "chrome";
|
|
987
|
-
entrypointLoader?: "vite-node" | "jiti";
|
|
986
|
+
extensionApi?: ("webextension-polyfill" | "chrome") | undefined;
|
|
987
|
+
entrypointLoader?: ("vite-node" | "jiti") | undefined;
|
|
988
988
|
dev?: {
|
|
989
989
|
server?: {
|
|
990
|
-
port?: number;
|
|
991
|
-
hostname?: string;
|
|
990
|
+
port?: number | undefined;
|
|
991
|
+
hostname?: string | undefined;
|
|
992
992
|
} | undefined;
|
|
993
|
-
reloadCommand?: string | false;
|
|
993
|
+
reloadCommand?: (string | false) | undefined;
|
|
994
994
|
} | undefined;
|
|
995
995
|
hooks?: {
|
|
996
996
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -1110,37 +1110,37 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1110
1110
|
modules?: (string | undefined)[] | undefined;
|
|
1111
1111
|
} | undefined;
|
|
1112
1112
|
giget?: {
|
|
1113
|
-
provider?: string;
|
|
1114
|
-
force?: boolean;
|
|
1115
|
-
forceClean?: boolean;
|
|
1116
|
-
offline?: boolean;
|
|
1117
|
-
preferOffline?: boolean;
|
|
1113
|
+
provider?: string | undefined;
|
|
1114
|
+
force?: boolean | undefined;
|
|
1115
|
+
forceClean?: boolean | undefined;
|
|
1116
|
+
offline?: boolean | undefined;
|
|
1117
|
+
preferOffline?: boolean | undefined;
|
|
1118
1118
|
providers?: {
|
|
1119
1119
|
[x: string]: {} | undefined;
|
|
1120
1120
|
} | undefined;
|
|
1121
|
-
dir?: string;
|
|
1122
|
-
registry?: false | string;
|
|
1123
|
-
cwd?: string;
|
|
1124
|
-
auth?: string;
|
|
1125
|
-
install?: boolean;
|
|
1126
|
-
silent?: boolean;
|
|
1121
|
+
dir?: string | undefined;
|
|
1122
|
+
registry?: (false | string) | undefined;
|
|
1123
|
+
cwd?: string | undefined;
|
|
1124
|
+
auth?: string | undefined;
|
|
1125
|
+
install?: boolean | undefined;
|
|
1126
|
+
silent?: boolean | undefined;
|
|
1127
1127
|
} | undefined;
|
|
1128
|
-
install?: boolean;
|
|
1129
|
-
auth?: string;
|
|
1128
|
+
install?: boolean | undefined;
|
|
1129
|
+
auth?: string | undefined;
|
|
1130
1130
|
} | undefined;
|
|
1131
1131
|
meta?: {
|
|
1132
1132
|
[x: string]: any;
|
|
1133
|
-
name?: string;
|
|
1133
|
+
name?: string | undefined;
|
|
1134
1134
|
} | undefined;
|
|
1135
|
-
cwd?: string;
|
|
1136
|
-
configFile?: string;
|
|
1135
|
+
cwd?: string | undefined;
|
|
1136
|
+
configFile?: string | undefined;
|
|
1137
1137
|
} | undefined)[] | undefined;
|
|
1138
|
-
cwd?: string;
|
|
1138
|
+
cwd?: string | undefined;
|
|
1139
1139
|
sourceOptions?: {
|
|
1140
1140
|
[x: string]: any;
|
|
1141
1141
|
meta?: {
|
|
1142
1142
|
[x: string]: any;
|
|
1143
|
-
name?: string;
|
|
1143
|
+
name?: string | undefined;
|
|
1144
1144
|
} | undefined;
|
|
1145
1145
|
overrides?: {
|
|
1146
1146
|
manifest?: {
|
|
@@ -1154,70 +1154,70 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1154
1154
|
readonly [Symbol.toStringTag]?: string | undefined;
|
|
1155
1155
|
} | {} | undefined;
|
|
1156
1156
|
vite?: {} | undefined;
|
|
1157
|
-
root?: string;
|
|
1158
|
-
mode?: string;
|
|
1159
|
-
publicDir?: string;
|
|
1157
|
+
root?: string | undefined;
|
|
1158
|
+
mode?: string | undefined;
|
|
1159
|
+
publicDir?: string | undefined;
|
|
1160
1160
|
experimental?: {} | undefined;
|
|
1161
|
-
srcDir?: string;
|
|
1162
|
-
entrypointsDir?: string;
|
|
1163
|
-
modulesDir?: string;
|
|
1161
|
+
srcDir?: string | undefined;
|
|
1162
|
+
entrypointsDir?: string | undefined;
|
|
1163
|
+
modulesDir?: string | undefined;
|
|
1164
1164
|
filterEntrypoints?: (string | undefined)[] | undefined;
|
|
1165
|
-
outDir?: string;
|
|
1166
|
-
debug?: boolean;
|
|
1165
|
+
outDir?: string | undefined;
|
|
1166
|
+
debug?: boolean | undefined;
|
|
1167
1167
|
imports?: false | {
|
|
1168
1168
|
imports?: ({
|
|
1169
1169
|
name?: string | undefined;
|
|
1170
|
-
as?: import("unimport").ImportName;
|
|
1170
|
+
as?: import("unimport").ImportName | undefined;
|
|
1171
1171
|
with?: {
|
|
1172
1172
|
[x: string]: string | undefined;
|
|
1173
1173
|
} | undefined;
|
|
1174
1174
|
from?: string | undefined;
|
|
1175
|
-
priority?: number;
|
|
1176
|
-
disabled?: boolean;
|
|
1177
|
-
dtsDisabled?: boolean;
|
|
1175
|
+
priority?: number | undefined;
|
|
1176
|
+
disabled?: boolean | undefined;
|
|
1177
|
+
dtsDisabled?: boolean | undefined;
|
|
1178
1178
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1179
1179
|
meta?: {
|
|
1180
1180
|
[x: string]: any;
|
|
1181
|
-
description?: string;
|
|
1182
|
-
docsUrl?: string;
|
|
1181
|
+
description?: string | undefined;
|
|
1182
|
+
docsUrl?: string | undefined;
|
|
1183
1183
|
} | undefined;
|
|
1184
|
-
type?: boolean;
|
|
1185
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1184
|
+
type?: boolean | undefined;
|
|
1185
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1186
1186
|
} | undefined)[] | undefined;
|
|
1187
1187
|
presets?: ("@vue/composition-api" | "@vueuse/core" | "@vueuse/head" | "pinia" | "preact" | "quasar" | "react" | "react-router" | "react-router-dom" | "svelte" | "svelte/animate" | "svelte/easing" | "svelte/motion" | "svelte/store" | "svelte/transition" | "vee-validate" | "vitepress" | "vue-demi" | "vue-i18n" | "vue-router" | "vue-router-composables" | "vue" | "vue/macros" | "vuex" | "vitest" | "uni-app" | "solid-js" | "solid-app-router" | "rxjs" | "date-fns" | {
|
|
1188
1188
|
imports?: (string | any | {
|
|
1189
1189
|
meta?: {
|
|
1190
1190
|
[x: string]: any;
|
|
1191
|
-
description?: string;
|
|
1192
|
-
docsUrl?: string;
|
|
1191
|
+
description?: string | undefined;
|
|
1192
|
+
docsUrl?: string | undefined;
|
|
1193
1193
|
} | undefined;
|
|
1194
|
-
type?: boolean;
|
|
1194
|
+
type?: boolean | undefined;
|
|
1195
1195
|
name?: string | undefined;
|
|
1196
|
-
as?: import("unimport").ImportName;
|
|
1196
|
+
as?: import("unimport").ImportName | undefined;
|
|
1197
1197
|
with?: {
|
|
1198
1198
|
[x: string]: string | undefined;
|
|
1199
1199
|
} | undefined;
|
|
1200
|
-
priority?: number;
|
|
1201
|
-
disabled?: boolean;
|
|
1202
|
-
dtsDisabled?: boolean;
|
|
1200
|
+
priority?: number | undefined;
|
|
1201
|
+
disabled?: boolean | undefined;
|
|
1202
|
+
dtsDisabled?: boolean | undefined;
|
|
1203
1203
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1204
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1204
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1205
1205
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
1206
1206
|
from?: string | undefined;
|
|
1207
|
-
priority?: number;
|
|
1208
|
-
disabled?: boolean;
|
|
1209
|
-
dtsDisabled?: boolean;
|
|
1207
|
+
priority?: number | undefined;
|
|
1208
|
+
disabled?: boolean | undefined;
|
|
1209
|
+
dtsDisabled?: boolean | undefined;
|
|
1210
1210
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1211
1211
|
meta?: {
|
|
1212
1212
|
[x: string]: any;
|
|
1213
|
-
description?: string;
|
|
1214
|
-
docsUrl?: string;
|
|
1213
|
+
description?: string | undefined;
|
|
1214
|
+
docsUrl?: string | undefined;
|
|
1215
1215
|
} | undefined;
|
|
1216
|
-
type?: boolean;
|
|
1217
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1216
|
+
type?: boolean | undefined;
|
|
1217
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1218
1218
|
} | {
|
|
1219
1219
|
package?: string | undefined;
|
|
1220
|
-
url?: string;
|
|
1220
|
+
url?: string | undefined;
|
|
1221
1221
|
ignore?: (string | {
|
|
1222
1222
|
exec?: {} | undefined;
|
|
1223
1223
|
test?: {} | undefined;
|
|
@@ -1237,12 +1237,12 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1237
1237
|
[Symbol.split]?: {} | undefined;
|
|
1238
1238
|
[Symbol.matchAll]?: {} | undefined;
|
|
1239
1239
|
} | {} | undefined)[] | undefined;
|
|
1240
|
-
cache?: boolean;
|
|
1240
|
+
cache?: boolean | undefined;
|
|
1241
1241
|
} | undefined)[] | undefined;
|
|
1242
1242
|
warn?: {} | undefined;
|
|
1243
1243
|
debugLog?: {} | undefined;
|
|
1244
1244
|
addons?: {
|
|
1245
|
-
vueTemplate?: boolean;
|
|
1245
|
+
vueTemplate?: boolean | undefined;
|
|
1246
1246
|
} | ({
|
|
1247
1247
|
transform?: {} | undefined;
|
|
1248
1248
|
declaration?: {} | undefined;
|
|
@@ -1256,24 +1256,24 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1256
1256
|
dirsScanOptions?: {
|
|
1257
1257
|
filePatterns?: (string | undefined)[] | undefined;
|
|
1258
1258
|
fileFilter?: {} | undefined;
|
|
1259
|
-
types?: boolean;
|
|
1260
|
-
cwd?: string;
|
|
1259
|
+
types?: boolean | undefined;
|
|
1260
|
+
cwd?: string | undefined;
|
|
1261
1261
|
} | undefined;
|
|
1262
1262
|
resolveId?: {} | undefined;
|
|
1263
1263
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
1264
1264
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
1265
|
-
collectMeta?: boolean;
|
|
1266
|
-
injectAtEnd?: boolean;
|
|
1267
|
-
mergeExisting?: boolean;
|
|
1268
|
-
parser?: "acorn" | "regex";
|
|
1265
|
+
collectMeta?: boolean | undefined;
|
|
1266
|
+
injectAtEnd?: boolean | undefined;
|
|
1267
|
+
mergeExisting?: boolean | undefined;
|
|
1268
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
1269
1269
|
eslintrc?: {
|
|
1270
|
-
enabled?: false | true | "auto" | 8 | 9;
|
|
1271
|
-
filePath?: string;
|
|
1272
|
-
globalsPropValue?: import("../../../types").EslintGlobalsPropValue;
|
|
1270
|
+
enabled?: (false | true | "auto" | 8 | 9) | undefined;
|
|
1271
|
+
filePath?: string | undefined;
|
|
1272
|
+
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
1273
1273
|
} | undefined;
|
|
1274
1274
|
} | undefined;
|
|
1275
|
-
browser?: import("../../../types").TargetBrowser;
|
|
1276
|
-
manifestVersion?: import("../../../types").TargetManifestVersion;
|
|
1275
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
1276
|
+
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
1277
1277
|
logger?: {
|
|
1278
1278
|
debug?: {} | undefined;
|
|
1279
1279
|
log?: {} | undefined;
|
|
@@ -1292,53 +1292,53 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1292
1292
|
} | undefined;
|
|
1293
1293
|
} | undefined;
|
|
1294
1294
|
runner?: {
|
|
1295
|
-
disabled?: boolean;
|
|
1296
|
-
openConsole?: boolean;
|
|
1297
|
-
openDevtools?: boolean;
|
|
1295
|
+
disabled?: boolean | undefined;
|
|
1296
|
+
openConsole?: boolean | undefined;
|
|
1297
|
+
openDevtools?: boolean | undefined;
|
|
1298
1298
|
binaries?: {
|
|
1299
1299
|
[x: string]: string | undefined;
|
|
1300
1300
|
} | undefined;
|
|
1301
|
-
firefoxProfile?: string;
|
|
1302
|
-
chromiumProfile?: string;
|
|
1303
|
-
chromiumPref?: string;
|
|
1304
|
-
chromiumPort?: number;
|
|
1301
|
+
firefoxProfile?: string | undefined;
|
|
1302
|
+
chromiumProfile?: string | undefined;
|
|
1303
|
+
chromiumPref?: string | undefined;
|
|
1304
|
+
chromiumPort?: number | undefined;
|
|
1305
1305
|
firefoxPrefs?: {
|
|
1306
1306
|
[x: string]: string | undefined;
|
|
1307
1307
|
} | undefined;
|
|
1308
1308
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
1309
1309
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
1310
1310
|
startUrls?: (string | undefined)[] | undefined;
|
|
1311
|
-
keepProfileChanges?: boolean;
|
|
1311
|
+
keepProfileChanges?: boolean | undefined;
|
|
1312
1312
|
} | undefined;
|
|
1313
1313
|
zip?: {
|
|
1314
|
-
artifactTemplate?: string;
|
|
1315
|
-
sourcesTemplate?: string;
|
|
1316
|
-
name?: string;
|
|
1317
|
-
sourcesRoot?: string;
|
|
1314
|
+
artifactTemplate?: string | undefined;
|
|
1315
|
+
sourcesTemplate?: string | undefined;
|
|
1316
|
+
name?: string | undefined;
|
|
1317
|
+
sourcesRoot?: string | undefined;
|
|
1318
1318
|
includeSources?: (string | undefined)[] | undefined;
|
|
1319
1319
|
excludeSources?: (string | undefined)[] | undefined;
|
|
1320
1320
|
downloadPackages?: (string | undefined)[] | undefined;
|
|
1321
|
-
compressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
1321
|
+
compressionLevel?: (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9) | undefined;
|
|
1322
1322
|
} | undefined;
|
|
1323
1323
|
transformManifest?: {} | undefined;
|
|
1324
1324
|
analysis?: {
|
|
1325
|
-
enabled?: boolean;
|
|
1326
|
-
open?: boolean;
|
|
1325
|
+
enabled?: boolean | undefined;
|
|
1326
|
+
open?: boolean | undefined;
|
|
1327
1327
|
template?: import("@aklinker1/rollup-plugin-visualizer").PluginVisualizerOptions["template"];
|
|
1328
|
-
outputFile?: string;
|
|
1329
|
-
keepArtifacts?: boolean;
|
|
1328
|
+
outputFile?: string | undefined;
|
|
1329
|
+
keepArtifacts?: boolean | undefined;
|
|
1330
1330
|
} | undefined;
|
|
1331
1331
|
alias?: {
|
|
1332
1332
|
[x: string]: string | undefined;
|
|
1333
1333
|
} | undefined;
|
|
1334
|
-
extensionApi?: "webextension-polyfill" | "chrome";
|
|
1335
|
-
entrypointLoader?: "vite-node" | "jiti";
|
|
1334
|
+
extensionApi?: ("webextension-polyfill" | "chrome") | undefined;
|
|
1335
|
+
entrypointLoader?: ("vite-node" | "jiti") | undefined;
|
|
1336
1336
|
dev?: {
|
|
1337
1337
|
server?: {
|
|
1338
|
-
port?: number;
|
|
1339
|
-
hostname?: string;
|
|
1338
|
+
port?: number | undefined;
|
|
1339
|
+
hostname?: string | undefined;
|
|
1340
1340
|
} | undefined;
|
|
1341
|
-
reloadCommand?: string | false;
|
|
1341
|
+
reloadCommand?: (string | false) | undefined;
|
|
1342
1342
|
} | undefined;
|
|
1343
1343
|
hooks?: {
|
|
1344
1344
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -1458,23 +1458,23 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1458
1458
|
modules?: (string | undefined)[] | undefined;
|
|
1459
1459
|
} | undefined;
|
|
1460
1460
|
giget?: {
|
|
1461
|
-
provider?: string;
|
|
1462
|
-
force?: boolean;
|
|
1463
|
-
forceClean?: boolean;
|
|
1464
|
-
offline?: boolean;
|
|
1465
|
-
preferOffline?: boolean;
|
|
1461
|
+
provider?: string | undefined;
|
|
1462
|
+
force?: boolean | undefined;
|
|
1463
|
+
forceClean?: boolean | undefined;
|
|
1464
|
+
offline?: boolean | undefined;
|
|
1465
|
+
preferOffline?: boolean | undefined;
|
|
1466
1466
|
providers?: {
|
|
1467
1467
|
[x: string]: {} | undefined;
|
|
1468
1468
|
} | undefined;
|
|
1469
|
-
dir?: string;
|
|
1470
|
-
registry?: false | string;
|
|
1471
|
-
cwd?: string;
|
|
1472
|
-
auth?: string;
|
|
1473
|
-
install?: boolean;
|
|
1474
|
-
silent?: boolean;
|
|
1469
|
+
dir?: string | undefined;
|
|
1470
|
+
registry?: (false | string) | undefined;
|
|
1471
|
+
cwd?: string | undefined;
|
|
1472
|
+
auth?: string | undefined;
|
|
1473
|
+
install?: boolean | undefined;
|
|
1474
|
+
silent?: boolean | undefined;
|
|
1475
1475
|
} | undefined;
|
|
1476
|
-
install?: boolean;
|
|
1477
|
-
auth?: string;
|
|
1476
|
+
install?: boolean | undefined;
|
|
1477
|
+
auth?: string | undefined;
|
|
1478
1478
|
} | undefined;
|
|
1479
1479
|
} | undefined;
|
|
1480
1480
|
alias?: {
|
|
@@ -1607,26 +1607,26 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1607
1607
|
ready?: {} | undefined;
|
|
1608
1608
|
} | undefined;
|
|
1609
1609
|
builtinModules?: ({
|
|
1610
|
-
name?: string;
|
|
1611
|
-
configKey?: string;
|
|
1610
|
+
name?: string | undefined;
|
|
1611
|
+
configKey?: string | undefined;
|
|
1612
1612
|
imports?: ({
|
|
1613
1613
|
name?: string | undefined;
|
|
1614
|
-
as?: import("unimport").ImportName;
|
|
1614
|
+
as?: import("unimport").ImportName | undefined;
|
|
1615
1615
|
with?: {
|
|
1616
1616
|
[x: string]: string | undefined;
|
|
1617
1617
|
} | undefined;
|
|
1618
1618
|
from?: string | undefined;
|
|
1619
|
-
priority?: number;
|
|
1620
|
-
disabled?: boolean;
|
|
1621
|
-
dtsDisabled?: boolean;
|
|
1619
|
+
priority?: number | undefined;
|
|
1620
|
+
disabled?: boolean | undefined;
|
|
1621
|
+
dtsDisabled?: boolean | undefined;
|
|
1622
1622
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1623
1623
|
meta?: {
|
|
1624
1624
|
[x: string]: any;
|
|
1625
|
-
description?: string;
|
|
1626
|
-
docsUrl?: string;
|
|
1625
|
+
description?: string | undefined;
|
|
1626
|
+
docsUrl?: string | undefined;
|
|
1627
1627
|
} | undefined;
|
|
1628
|
-
type?: boolean;
|
|
1629
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1628
|
+
type?: boolean | undefined;
|
|
1629
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1630
1630
|
} | undefined)[] | undefined;
|
|
1631
1631
|
hooks?: {
|
|
1632
1632
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -1646,26 +1646,26 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1646
1646
|
userModules?: ({
|
|
1647
1647
|
type?: "local" | "node_module" | undefined;
|
|
1648
1648
|
id?: string | undefined;
|
|
1649
|
-
name?: string;
|
|
1650
|
-
configKey?: string;
|
|
1649
|
+
name?: string | undefined;
|
|
1650
|
+
configKey?: string | undefined;
|
|
1651
1651
|
imports?: ({
|
|
1652
1652
|
name?: string | undefined;
|
|
1653
|
-
as?: import("unimport").ImportName;
|
|
1653
|
+
as?: import("unimport").ImportName | undefined;
|
|
1654
1654
|
with?: {
|
|
1655
1655
|
[x: string]: string | undefined;
|
|
1656
1656
|
} | undefined;
|
|
1657
1657
|
from?: string | undefined;
|
|
1658
|
-
priority?: number;
|
|
1659
|
-
disabled?: boolean;
|
|
1660
|
-
dtsDisabled?: boolean;
|
|
1658
|
+
priority?: number | undefined;
|
|
1659
|
+
disabled?: boolean | undefined;
|
|
1660
|
+
dtsDisabled?: boolean | undefined;
|
|
1661
1661
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1662
1662
|
meta?: {
|
|
1663
1663
|
[x: string]: any;
|
|
1664
|
-
description?: string;
|
|
1665
|
-
docsUrl?: string;
|
|
1664
|
+
description?: string | undefined;
|
|
1665
|
+
docsUrl?: string | undefined;
|
|
1666
1666
|
} | undefined;
|
|
1667
|
-
type?: boolean;
|
|
1668
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1667
|
+
type?: boolean | undefined;
|
|
1668
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1669
1669
|
} | undefined)[] | undefined;
|
|
1670
1670
|
hooks?: {
|
|
1671
1671
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -1741,57 +1741,57 @@ export declare const fakeWxt: (overrides?: {
|
|
|
1741
1741
|
imports?: false | {
|
|
1742
1742
|
imports?: ({
|
|
1743
1743
|
name?: string | undefined;
|
|
1744
|
-
as?: import("unimport").ImportName;
|
|
1744
|
+
as?: import("unimport").ImportName | undefined;
|
|
1745
1745
|
with?: {
|
|
1746
1746
|
[x: string]: string | undefined;
|
|
1747
1747
|
} | undefined;
|
|
1748
1748
|
from?: string | undefined;
|
|
1749
|
-
priority?: number;
|
|
1750
|
-
disabled?: boolean;
|
|
1751
|
-
dtsDisabled?: boolean;
|
|
1749
|
+
priority?: number | undefined;
|
|
1750
|
+
disabled?: boolean | undefined;
|
|
1751
|
+
dtsDisabled?: boolean | undefined;
|
|
1752
1752
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1753
1753
|
meta?: {
|
|
1754
1754
|
[x: string]: any;
|
|
1755
|
-
description?: string;
|
|
1756
|
-
docsUrl?: string;
|
|
1755
|
+
description?: string | undefined;
|
|
1756
|
+
docsUrl?: string | undefined;
|
|
1757
1757
|
} | undefined;
|
|
1758
|
-
type?: boolean;
|
|
1759
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1758
|
+
type?: boolean | undefined;
|
|
1759
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1760
1760
|
} | undefined)[] | undefined;
|
|
1761
1761
|
presets?: ("@vue/composition-api" | "@vueuse/core" | "@vueuse/head" | "pinia" | "preact" | "quasar" | "react" | "react-router" | "react-router-dom" | "svelte" | "svelte/animate" | "svelte/easing" | "svelte/motion" | "svelte/store" | "svelte/transition" | "vee-validate" | "vitepress" | "vue-demi" | "vue-i18n" | "vue-router" | "vue-router-composables" | "vue" | "vue/macros" | "vuex" | "vitest" | "uni-app" | "solid-js" | "solid-app-router" | "rxjs" | "date-fns" | {
|
|
1762
1762
|
imports?: (string | any | {
|
|
1763
1763
|
meta?: {
|
|
1764
1764
|
[x: string]: any;
|
|
1765
|
-
description?: string;
|
|
1766
|
-
docsUrl?: string;
|
|
1765
|
+
description?: string | undefined;
|
|
1766
|
+
docsUrl?: string | undefined;
|
|
1767
1767
|
} | undefined;
|
|
1768
|
-
type?: boolean;
|
|
1768
|
+
type?: boolean | undefined;
|
|
1769
1769
|
name?: string | undefined;
|
|
1770
|
-
as?: import("unimport").ImportName;
|
|
1770
|
+
as?: import("unimport").ImportName | undefined;
|
|
1771
1771
|
with?: {
|
|
1772
1772
|
[x: string]: string | undefined;
|
|
1773
1773
|
} | undefined;
|
|
1774
|
-
priority?: number;
|
|
1775
|
-
disabled?: boolean;
|
|
1776
|
-
dtsDisabled?: boolean;
|
|
1774
|
+
priority?: number | undefined;
|
|
1775
|
+
disabled?: boolean | undefined;
|
|
1776
|
+
dtsDisabled?: boolean | undefined;
|
|
1777
1777
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1778
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1778
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1779
1779
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
1780
1780
|
from?: string | undefined;
|
|
1781
|
-
priority?: number;
|
|
1782
|
-
disabled?: boolean;
|
|
1783
|
-
dtsDisabled?: boolean;
|
|
1781
|
+
priority?: number | undefined;
|
|
1782
|
+
disabled?: boolean | undefined;
|
|
1783
|
+
dtsDisabled?: boolean | undefined;
|
|
1784
1784
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1785
1785
|
meta?: {
|
|
1786
1786
|
[x: string]: any;
|
|
1787
|
-
description?: string;
|
|
1788
|
-
docsUrl?: string;
|
|
1787
|
+
description?: string | undefined;
|
|
1788
|
+
docsUrl?: string | undefined;
|
|
1789
1789
|
} | undefined;
|
|
1790
|
-
type?: boolean;
|
|
1791
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1790
|
+
type?: boolean | undefined;
|
|
1791
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1792
1792
|
} | {
|
|
1793
1793
|
package?: string | undefined;
|
|
1794
|
-
url?: string;
|
|
1794
|
+
url?: string | undefined;
|
|
1795
1795
|
ignore?: (string | {
|
|
1796
1796
|
exec?: {} | undefined;
|
|
1797
1797
|
test?: {} | undefined;
|
|
@@ -1811,12 +1811,12 @@ export declare const fakeWxt: (overrides?: {
|
|
|
1811
1811
|
[Symbol.split]?: {} | undefined;
|
|
1812
1812
|
[Symbol.matchAll]?: {} | undefined;
|
|
1813
1813
|
} | {} | undefined)[] | undefined;
|
|
1814
|
-
cache?: boolean;
|
|
1814
|
+
cache?: boolean | undefined;
|
|
1815
1815
|
} | undefined)[] | undefined;
|
|
1816
1816
|
warn?: {} | undefined;
|
|
1817
1817
|
debugLog?: {} | undefined;
|
|
1818
1818
|
addons?: {
|
|
1819
|
-
vueTemplate?: boolean;
|
|
1819
|
+
vueTemplate?: boolean | undefined;
|
|
1820
1820
|
} | ({
|
|
1821
1821
|
transform?: {} | undefined;
|
|
1822
1822
|
declaration?: {} | undefined;
|
|
@@ -1830,16 +1830,16 @@ export declare const fakeWxt: (overrides?: {
|
|
|
1830
1830
|
dirsScanOptions?: {
|
|
1831
1831
|
filePatterns?: (string | undefined)[] | undefined;
|
|
1832
1832
|
fileFilter?: {} | undefined;
|
|
1833
|
-
types?: boolean;
|
|
1834
|
-
cwd?: string;
|
|
1833
|
+
types?: boolean | undefined;
|
|
1834
|
+
cwd?: string | undefined;
|
|
1835
1835
|
} | undefined;
|
|
1836
1836
|
resolveId?: {} | undefined;
|
|
1837
1837
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
1838
1838
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
1839
|
-
collectMeta?: boolean;
|
|
1840
|
-
injectAtEnd?: boolean;
|
|
1841
|
-
mergeExisting?: boolean;
|
|
1842
|
-
parser?: "acorn" | "regex";
|
|
1839
|
+
collectMeta?: boolean | undefined;
|
|
1840
|
+
injectAtEnd?: boolean | undefined;
|
|
1841
|
+
mergeExisting?: boolean | undefined;
|
|
1842
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
1843
1843
|
eslintrc?: {
|
|
1844
1844
|
enabled?: false | 9 | 8 | undefined;
|
|
1845
1845
|
filePath?: string | undefined;
|
|
@@ -1857,150 +1857,150 @@ export declare const fakeWxt: (overrides?: {
|
|
|
1857
1857
|
} | undefined;
|
|
1858
1858
|
runnerConfig?: {
|
|
1859
1859
|
config?: {
|
|
1860
|
-
disabled?: boolean;
|
|
1861
|
-
openConsole?: boolean;
|
|
1862
|
-
openDevtools?: boolean;
|
|
1860
|
+
disabled?: boolean | undefined;
|
|
1861
|
+
openConsole?: boolean | undefined;
|
|
1862
|
+
openDevtools?: boolean | undefined;
|
|
1863
1863
|
binaries?: {
|
|
1864
1864
|
[x: string]: string | undefined;
|
|
1865
1865
|
} | undefined;
|
|
1866
|
-
firefoxProfile?: string;
|
|
1867
|
-
chromiumProfile?: string;
|
|
1868
|
-
chromiumPref?: string;
|
|
1869
|
-
chromiumPort?: number;
|
|
1866
|
+
firefoxProfile?: string | undefined;
|
|
1867
|
+
chromiumProfile?: string | undefined;
|
|
1868
|
+
chromiumPref?: string | undefined;
|
|
1869
|
+
chromiumPort?: number | undefined;
|
|
1870
1870
|
firefoxPrefs?: {
|
|
1871
1871
|
[x: string]: string | undefined;
|
|
1872
1872
|
} | undefined;
|
|
1873
1873
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
1874
1874
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
1875
1875
|
startUrls?: (string | undefined)[] | undefined;
|
|
1876
|
-
keepProfileChanges?: boolean;
|
|
1876
|
+
keepProfileChanges?: boolean | undefined;
|
|
1877
1877
|
} | undefined;
|
|
1878
1878
|
layers?: ({
|
|
1879
1879
|
config?: {
|
|
1880
|
-
disabled?: boolean;
|
|
1881
|
-
openConsole?: boolean;
|
|
1882
|
-
openDevtools?: boolean;
|
|
1880
|
+
disabled?: boolean | undefined;
|
|
1881
|
+
openConsole?: boolean | undefined;
|
|
1882
|
+
openDevtools?: boolean | undefined;
|
|
1883
1883
|
binaries?: {
|
|
1884
1884
|
[x: string]: string | undefined;
|
|
1885
1885
|
} | undefined;
|
|
1886
|
-
firefoxProfile?: string;
|
|
1887
|
-
chromiumProfile?: string;
|
|
1888
|
-
chromiumPref?: string;
|
|
1889
|
-
chromiumPort?: number;
|
|
1886
|
+
firefoxProfile?: string | undefined;
|
|
1887
|
+
chromiumProfile?: string | undefined;
|
|
1888
|
+
chromiumPref?: string | undefined;
|
|
1889
|
+
chromiumPort?: number | undefined;
|
|
1890
1890
|
firefoxPrefs?: {
|
|
1891
1891
|
[x: string]: string | undefined;
|
|
1892
1892
|
} | undefined;
|
|
1893
1893
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
1894
1894
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
1895
1895
|
startUrls?: (string | undefined)[] | undefined;
|
|
1896
|
-
keepProfileChanges?: boolean;
|
|
1896
|
+
keepProfileChanges?: boolean | undefined;
|
|
1897
1897
|
} | null | undefined;
|
|
1898
|
-
source?: string;
|
|
1898
|
+
source?: string | undefined;
|
|
1899
1899
|
sourceOptions?: {
|
|
1900
1900
|
[x: string]: any;
|
|
1901
1901
|
meta?: {
|
|
1902
1902
|
[x: string]: any;
|
|
1903
|
-
name?: string;
|
|
1903
|
+
name?: string | undefined;
|
|
1904
1904
|
} | undefined;
|
|
1905
1905
|
overrides?: {
|
|
1906
|
-
disabled?: boolean;
|
|
1907
|
-
openConsole?: boolean;
|
|
1908
|
-
openDevtools?: boolean;
|
|
1906
|
+
disabled?: boolean | undefined;
|
|
1907
|
+
openConsole?: boolean | undefined;
|
|
1908
|
+
openDevtools?: boolean | undefined;
|
|
1909
1909
|
binaries?: {
|
|
1910
1910
|
[x: string]: string | undefined;
|
|
1911
1911
|
} | undefined;
|
|
1912
|
-
firefoxProfile?: string;
|
|
1913
|
-
chromiumProfile?: string;
|
|
1914
|
-
chromiumPref?: string;
|
|
1915
|
-
chromiumPort?: number;
|
|
1912
|
+
firefoxProfile?: string | undefined;
|
|
1913
|
+
chromiumProfile?: string | undefined;
|
|
1914
|
+
chromiumPref?: string | undefined;
|
|
1915
|
+
chromiumPort?: number | undefined;
|
|
1916
1916
|
firefoxPrefs?: {
|
|
1917
1917
|
[x: string]: string | undefined;
|
|
1918
1918
|
} | undefined;
|
|
1919
1919
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
1920
1920
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
1921
1921
|
startUrls?: (string | undefined)[] | undefined;
|
|
1922
|
-
keepProfileChanges?: boolean;
|
|
1922
|
+
keepProfileChanges?: boolean | undefined;
|
|
1923
1923
|
} | undefined;
|
|
1924
1924
|
giget?: {
|
|
1925
|
-
provider?: string;
|
|
1926
|
-
force?: boolean;
|
|
1927
|
-
forceClean?: boolean;
|
|
1928
|
-
offline?: boolean;
|
|
1929
|
-
preferOffline?: boolean;
|
|
1925
|
+
provider?: string | undefined;
|
|
1926
|
+
force?: boolean | undefined;
|
|
1927
|
+
forceClean?: boolean | undefined;
|
|
1928
|
+
offline?: boolean | undefined;
|
|
1929
|
+
preferOffline?: boolean | undefined;
|
|
1930
1930
|
providers?: {
|
|
1931
1931
|
[x: string]: {} | undefined;
|
|
1932
1932
|
} | undefined;
|
|
1933
|
-
dir?: string;
|
|
1934
|
-
registry?: false | string;
|
|
1935
|
-
cwd?: string;
|
|
1936
|
-
auth?: string;
|
|
1937
|
-
install?: boolean;
|
|
1938
|
-
silent?: boolean;
|
|
1933
|
+
dir?: string | undefined;
|
|
1934
|
+
registry?: (false | string) | undefined;
|
|
1935
|
+
cwd?: string | undefined;
|
|
1936
|
+
auth?: string | undefined;
|
|
1937
|
+
install?: boolean | undefined;
|
|
1938
|
+
silent?: boolean | undefined;
|
|
1939
1939
|
} | undefined;
|
|
1940
|
-
install?: boolean;
|
|
1941
|
-
auth?: string;
|
|
1940
|
+
install?: boolean | undefined;
|
|
1941
|
+
auth?: string | undefined;
|
|
1942
1942
|
} | undefined;
|
|
1943
1943
|
meta?: {
|
|
1944
1944
|
[x: string]: any;
|
|
1945
|
-
name?: string;
|
|
1945
|
+
name?: string | undefined;
|
|
1946
1946
|
} | undefined;
|
|
1947
|
-
cwd?: string;
|
|
1948
|
-
configFile?: string;
|
|
1947
|
+
cwd?: string | undefined;
|
|
1948
|
+
configFile?: string | undefined;
|
|
1949
1949
|
} | undefined)[] | undefined;
|
|
1950
|
-
cwd?: string;
|
|
1951
|
-
source?: string;
|
|
1950
|
+
cwd?: string | undefined;
|
|
1951
|
+
source?: string | undefined;
|
|
1952
1952
|
sourceOptions?: {
|
|
1953
1953
|
[x: string]: any;
|
|
1954
1954
|
meta?: {
|
|
1955
1955
|
[x: string]: any;
|
|
1956
|
-
name?: string;
|
|
1956
|
+
name?: string | undefined;
|
|
1957
1957
|
} | undefined;
|
|
1958
1958
|
overrides?: {
|
|
1959
|
-
disabled?: boolean;
|
|
1960
|
-
openConsole?: boolean;
|
|
1961
|
-
openDevtools?: boolean;
|
|
1959
|
+
disabled?: boolean | undefined;
|
|
1960
|
+
openConsole?: boolean | undefined;
|
|
1961
|
+
openDevtools?: boolean | undefined;
|
|
1962
1962
|
binaries?: {
|
|
1963
1963
|
[x: string]: string | undefined;
|
|
1964
1964
|
} | undefined;
|
|
1965
|
-
firefoxProfile?: string;
|
|
1966
|
-
chromiumProfile?: string;
|
|
1967
|
-
chromiumPref?: string;
|
|
1968
|
-
chromiumPort?: number;
|
|
1965
|
+
firefoxProfile?: string | undefined;
|
|
1966
|
+
chromiumProfile?: string | undefined;
|
|
1967
|
+
chromiumPref?: string | undefined;
|
|
1968
|
+
chromiumPort?: number | undefined;
|
|
1969
1969
|
firefoxPrefs?: {
|
|
1970
1970
|
[x: string]: string | undefined;
|
|
1971
1971
|
} | undefined;
|
|
1972
1972
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
1973
1973
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
1974
1974
|
startUrls?: (string | undefined)[] | undefined;
|
|
1975
|
-
keepProfileChanges?: boolean;
|
|
1975
|
+
keepProfileChanges?: boolean | undefined;
|
|
1976
1976
|
} | undefined;
|
|
1977
1977
|
giget?: {
|
|
1978
|
-
provider?: string;
|
|
1979
|
-
force?: boolean;
|
|
1980
|
-
forceClean?: boolean;
|
|
1981
|
-
offline?: boolean;
|
|
1982
|
-
preferOffline?: boolean;
|
|
1978
|
+
provider?: string | undefined;
|
|
1979
|
+
force?: boolean | undefined;
|
|
1980
|
+
forceClean?: boolean | undefined;
|
|
1981
|
+
offline?: boolean | undefined;
|
|
1982
|
+
preferOffline?: boolean | undefined;
|
|
1983
1983
|
providers?: {
|
|
1984
1984
|
[x: string]: {} | undefined;
|
|
1985
1985
|
} | undefined;
|
|
1986
|
-
dir?: string;
|
|
1987
|
-
registry?: false | string;
|
|
1988
|
-
cwd?: string;
|
|
1989
|
-
auth?: string;
|
|
1990
|
-
install?: boolean;
|
|
1991
|
-
silent?: boolean;
|
|
1986
|
+
dir?: string | undefined;
|
|
1987
|
+
registry?: (false | string) | undefined;
|
|
1988
|
+
cwd?: string | undefined;
|
|
1989
|
+
auth?: string | undefined;
|
|
1990
|
+
install?: boolean | undefined;
|
|
1991
|
+
silent?: boolean | undefined;
|
|
1992
1992
|
} | undefined;
|
|
1993
|
-
install?: boolean;
|
|
1994
|
-
auth?: string;
|
|
1993
|
+
install?: boolean | undefined;
|
|
1994
|
+
auth?: string | undefined;
|
|
1995
1995
|
} | undefined;
|
|
1996
1996
|
meta?: {
|
|
1997
1997
|
[x: string]: any;
|
|
1998
|
-
name?: string;
|
|
1998
|
+
name?: string | undefined;
|
|
1999
1999
|
} | undefined;
|
|
2000
|
-
configFile?: string;
|
|
2000
|
+
configFile?: string | undefined;
|
|
2001
2001
|
} | undefined;
|
|
2002
2002
|
zip?: {
|
|
2003
|
-
name?: string;
|
|
2003
|
+
name?: string | undefined;
|
|
2004
2004
|
artifactTemplate?: string | undefined;
|
|
2005
2005
|
sourcesTemplate?: string | undefined;
|
|
2006
2006
|
includeSources?: (string | undefined)[] | undefined;
|
|
@@ -2023,10 +2023,10 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2023
2023
|
userConfigMetadata?: {
|
|
2024
2024
|
meta?: {
|
|
2025
2025
|
[x: string]: any;
|
|
2026
|
-
name?: string;
|
|
2026
|
+
name?: string | undefined;
|
|
2027
2027
|
} | undefined;
|
|
2028
|
-
source?: string;
|
|
2029
|
-
configFile?: string;
|
|
2028
|
+
source?: string | undefined;
|
|
2029
|
+
configFile?: string | undefined;
|
|
2030
2030
|
layers?: ({
|
|
2031
2031
|
config?: {
|
|
2032
2032
|
manifest?: {
|
|
@@ -2040,70 +2040,70 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2040
2040
|
readonly [Symbol.toStringTag]?: string | undefined;
|
|
2041
2041
|
} | {} | undefined;
|
|
2042
2042
|
vite?: {} | undefined;
|
|
2043
|
-
root?: string;
|
|
2044
|
-
mode?: string;
|
|
2045
|
-
publicDir?: string;
|
|
2043
|
+
root?: string | undefined;
|
|
2044
|
+
mode?: string | undefined;
|
|
2045
|
+
publicDir?: string | undefined;
|
|
2046
2046
|
experimental?: {} | undefined;
|
|
2047
|
-
srcDir?: string;
|
|
2048
|
-
entrypointsDir?: string;
|
|
2049
|
-
modulesDir?: string;
|
|
2047
|
+
srcDir?: string | undefined;
|
|
2048
|
+
entrypointsDir?: string | undefined;
|
|
2049
|
+
modulesDir?: string | undefined;
|
|
2050
2050
|
filterEntrypoints?: (string | undefined)[] | undefined;
|
|
2051
|
-
outDir?: string;
|
|
2052
|
-
debug?: boolean;
|
|
2051
|
+
outDir?: string | undefined;
|
|
2052
|
+
debug?: boolean | undefined;
|
|
2053
2053
|
imports?: false | {
|
|
2054
2054
|
imports?: ({
|
|
2055
2055
|
name?: string | undefined;
|
|
2056
|
-
as?: import("unimport").ImportName;
|
|
2056
|
+
as?: import("unimport").ImportName | undefined;
|
|
2057
2057
|
with?: {
|
|
2058
2058
|
[x: string]: string | undefined;
|
|
2059
2059
|
} | undefined;
|
|
2060
2060
|
from?: string | undefined;
|
|
2061
|
-
priority?: number;
|
|
2062
|
-
disabled?: boolean;
|
|
2063
|
-
dtsDisabled?: boolean;
|
|
2061
|
+
priority?: number | undefined;
|
|
2062
|
+
disabled?: boolean | undefined;
|
|
2063
|
+
dtsDisabled?: boolean | undefined;
|
|
2064
2064
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2065
2065
|
meta?: {
|
|
2066
2066
|
[x: string]: any;
|
|
2067
|
-
description?: string;
|
|
2068
|
-
docsUrl?: string;
|
|
2067
|
+
description?: string | undefined;
|
|
2068
|
+
docsUrl?: string | undefined;
|
|
2069
2069
|
} | undefined;
|
|
2070
|
-
type?: boolean;
|
|
2071
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2070
|
+
type?: boolean | undefined;
|
|
2071
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2072
2072
|
} | undefined)[] | undefined;
|
|
2073
2073
|
presets?: ("@vue/composition-api" | "@vueuse/core" | "@vueuse/head" | "pinia" | "preact" | "quasar" | "react" | "react-router" | "react-router-dom" | "svelte" | "svelte/animate" | "svelte/easing" | "svelte/motion" | "svelte/store" | "svelte/transition" | "vee-validate" | "vitepress" | "vue-demi" | "vue-i18n" | "vue-router" | "vue-router-composables" | "vue" | "vue/macros" | "vuex" | "vitest" | "uni-app" | "solid-js" | "solid-app-router" | "rxjs" | "date-fns" | {
|
|
2074
2074
|
imports?: (string | any | {
|
|
2075
2075
|
meta?: {
|
|
2076
2076
|
[x: string]: any;
|
|
2077
|
-
description?: string;
|
|
2078
|
-
docsUrl?: string;
|
|
2077
|
+
description?: string | undefined;
|
|
2078
|
+
docsUrl?: string | undefined;
|
|
2079
2079
|
} | undefined;
|
|
2080
|
-
type?: boolean;
|
|
2080
|
+
type?: boolean | undefined;
|
|
2081
2081
|
name?: string | undefined;
|
|
2082
|
-
as?: import("unimport").ImportName;
|
|
2082
|
+
as?: import("unimport").ImportName | undefined;
|
|
2083
2083
|
with?: {
|
|
2084
2084
|
[x: string]: string | undefined;
|
|
2085
2085
|
} | undefined;
|
|
2086
|
-
priority?: number;
|
|
2087
|
-
disabled?: boolean;
|
|
2088
|
-
dtsDisabled?: boolean;
|
|
2086
|
+
priority?: number | undefined;
|
|
2087
|
+
disabled?: boolean | undefined;
|
|
2088
|
+
dtsDisabled?: boolean | undefined;
|
|
2089
2089
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2090
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2090
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2091
2091
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
2092
2092
|
from?: string | undefined;
|
|
2093
|
-
priority?: number;
|
|
2094
|
-
disabled?: boolean;
|
|
2095
|
-
dtsDisabled?: boolean;
|
|
2093
|
+
priority?: number | undefined;
|
|
2094
|
+
disabled?: boolean | undefined;
|
|
2095
|
+
dtsDisabled?: boolean | undefined;
|
|
2096
2096
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2097
2097
|
meta?: {
|
|
2098
2098
|
[x: string]: any;
|
|
2099
|
-
description?: string;
|
|
2100
|
-
docsUrl?: string;
|
|
2099
|
+
description?: string | undefined;
|
|
2100
|
+
docsUrl?: string | undefined;
|
|
2101
2101
|
} | undefined;
|
|
2102
|
-
type?: boolean;
|
|
2103
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2102
|
+
type?: boolean | undefined;
|
|
2103
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2104
2104
|
} | {
|
|
2105
2105
|
package?: string | undefined;
|
|
2106
|
-
url?: string;
|
|
2106
|
+
url?: string | undefined;
|
|
2107
2107
|
ignore?: (string | {
|
|
2108
2108
|
exec?: {} | undefined;
|
|
2109
2109
|
test?: {} | undefined;
|
|
@@ -2123,12 +2123,12 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2123
2123
|
[Symbol.split]?: {} | undefined;
|
|
2124
2124
|
[Symbol.matchAll]?: {} | undefined;
|
|
2125
2125
|
} | {} | undefined)[] | undefined;
|
|
2126
|
-
cache?: boolean;
|
|
2126
|
+
cache?: boolean | undefined;
|
|
2127
2127
|
} | undefined)[] | undefined;
|
|
2128
2128
|
warn?: {} | undefined;
|
|
2129
2129
|
debugLog?: {} | undefined;
|
|
2130
2130
|
addons?: {
|
|
2131
|
-
vueTemplate?: boolean;
|
|
2131
|
+
vueTemplate?: boolean | undefined;
|
|
2132
2132
|
} | ({
|
|
2133
2133
|
transform?: {} | undefined;
|
|
2134
2134
|
declaration?: {} | undefined;
|
|
@@ -2142,24 +2142,24 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2142
2142
|
dirsScanOptions?: {
|
|
2143
2143
|
filePatterns?: (string | undefined)[] | undefined;
|
|
2144
2144
|
fileFilter?: {} | undefined;
|
|
2145
|
-
types?: boolean;
|
|
2146
|
-
cwd?: string;
|
|
2145
|
+
types?: boolean | undefined;
|
|
2146
|
+
cwd?: string | undefined;
|
|
2147
2147
|
} | undefined;
|
|
2148
2148
|
resolveId?: {} | undefined;
|
|
2149
2149
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
2150
2150
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
2151
|
-
collectMeta?: boolean;
|
|
2152
|
-
injectAtEnd?: boolean;
|
|
2153
|
-
mergeExisting?: boolean;
|
|
2154
|
-
parser?: "acorn" | "regex";
|
|
2151
|
+
collectMeta?: boolean | undefined;
|
|
2152
|
+
injectAtEnd?: boolean | undefined;
|
|
2153
|
+
mergeExisting?: boolean | undefined;
|
|
2154
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
2155
2155
|
eslintrc?: {
|
|
2156
|
-
enabled?: false | true | "auto" | 8 | 9;
|
|
2157
|
-
filePath?: string;
|
|
2158
|
-
globalsPropValue?: import("../../../types").EslintGlobalsPropValue;
|
|
2156
|
+
enabled?: (false | true | "auto" | 8 | 9) | undefined;
|
|
2157
|
+
filePath?: string | undefined;
|
|
2158
|
+
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
2159
2159
|
} | undefined;
|
|
2160
2160
|
} | undefined;
|
|
2161
|
-
browser?: import("../../../types").TargetBrowser;
|
|
2162
|
-
manifestVersion?: import("../../../types").TargetManifestVersion;
|
|
2161
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
2162
|
+
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
2163
2163
|
logger?: {
|
|
2164
2164
|
debug?: {} | undefined;
|
|
2165
2165
|
log?: {} | undefined;
|
|
@@ -2178,53 +2178,53 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2178
2178
|
} | undefined;
|
|
2179
2179
|
} | undefined;
|
|
2180
2180
|
runner?: {
|
|
2181
|
-
disabled?: boolean;
|
|
2182
|
-
openConsole?: boolean;
|
|
2183
|
-
openDevtools?: boolean;
|
|
2181
|
+
disabled?: boolean | undefined;
|
|
2182
|
+
openConsole?: boolean | undefined;
|
|
2183
|
+
openDevtools?: boolean | undefined;
|
|
2184
2184
|
binaries?: {
|
|
2185
2185
|
[x: string]: string | undefined;
|
|
2186
2186
|
} | undefined;
|
|
2187
|
-
firefoxProfile?: string;
|
|
2188
|
-
chromiumProfile?: string;
|
|
2189
|
-
chromiumPref?: string;
|
|
2190
|
-
chromiumPort?: number;
|
|
2187
|
+
firefoxProfile?: string | undefined;
|
|
2188
|
+
chromiumProfile?: string | undefined;
|
|
2189
|
+
chromiumPref?: string | undefined;
|
|
2190
|
+
chromiumPort?: number | undefined;
|
|
2191
2191
|
firefoxPrefs?: {
|
|
2192
2192
|
[x: string]: string | undefined;
|
|
2193
2193
|
} | undefined;
|
|
2194
2194
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
2195
2195
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
2196
2196
|
startUrls?: (string | undefined)[] | undefined;
|
|
2197
|
-
keepProfileChanges?: boolean;
|
|
2197
|
+
keepProfileChanges?: boolean | undefined;
|
|
2198
2198
|
} | undefined;
|
|
2199
2199
|
zip?: {
|
|
2200
|
-
artifactTemplate?: string;
|
|
2201
|
-
sourcesTemplate?: string;
|
|
2202
|
-
name?: string;
|
|
2203
|
-
sourcesRoot?: string;
|
|
2200
|
+
artifactTemplate?: string | undefined;
|
|
2201
|
+
sourcesTemplate?: string | undefined;
|
|
2202
|
+
name?: string | undefined;
|
|
2203
|
+
sourcesRoot?: string | undefined;
|
|
2204
2204
|
includeSources?: (string | undefined)[] | undefined;
|
|
2205
2205
|
excludeSources?: (string | undefined)[] | undefined;
|
|
2206
2206
|
downloadPackages?: (string | undefined)[] | undefined;
|
|
2207
|
-
compressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
2207
|
+
compressionLevel?: (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9) | undefined;
|
|
2208
2208
|
} | undefined;
|
|
2209
2209
|
transformManifest?: {} | undefined;
|
|
2210
2210
|
analysis?: {
|
|
2211
|
-
enabled?: boolean;
|
|
2212
|
-
open?: boolean;
|
|
2211
|
+
enabled?: boolean | undefined;
|
|
2212
|
+
open?: boolean | undefined;
|
|
2213
2213
|
template?: import("@aklinker1/rollup-plugin-visualizer").PluginVisualizerOptions["template"];
|
|
2214
|
-
outputFile?: string;
|
|
2215
|
-
keepArtifacts?: boolean;
|
|
2214
|
+
outputFile?: string | undefined;
|
|
2215
|
+
keepArtifacts?: boolean | undefined;
|
|
2216
2216
|
} | undefined;
|
|
2217
2217
|
alias?: {
|
|
2218
2218
|
[x: string]: string | undefined;
|
|
2219
2219
|
} | undefined;
|
|
2220
|
-
extensionApi?: "webextension-polyfill" | "chrome";
|
|
2221
|
-
entrypointLoader?: "vite-node" | "jiti";
|
|
2220
|
+
extensionApi?: ("webextension-polyfill" | "chrome") | undefined;
|
|
2221
|
+
entrypointLoader?: ("vite-node" | "jiti") | undefined;
|
|
2222
2222
|
dev?: {
|
|
2223
2223
|
server?: {
|
|
2224
|
-
port?: number;
|
|
2225
|
-
hostname?: string;
|
|
2224
|
+
port?: number | undefined;
|
|
2225
|
+
hostname?: string | undefined;
|
|
2226
2226
|
} | undefined;
|
|
2227
|
-
reloadCommand?: string | false;
|
|
2227
|
+
reloadCommand?: (string | false) | undefined;
|
|
2228
2228
|
} | undefined;
|
|
2229
2229
|
hooks?: {
|
|
2230
2230
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -2343,12 +2343,12 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2343
2343
|
} | undefined;
|
|
2344
2344
|
modules?: (string | undefined)[] | undefined;
|
|
2345
2345
|
} | null | undefined;
|
|
2346
|
-
source?: string;
|
|
2346
|
+
source?: string | undefined;
|
|
2347
2347
|
sourceOptions?: {
|
|
2348
2348
|
[x: string]: any;
|
|
2349
2349
|
meta?: {
|
|
2350
2350
|
[x: string]: any;
|
|
2351
|
-
name?: string;
|
|
2351
|
+
name?: string | undefined;
|
|
2352
2352
|
} | undefined;
|
|
2353
2353
|
overrides?: {
|
|
2354
2354
|
manifest?: {
|
|
@@ -2362,70 +2362,70 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2362
2362
|
readonly [Symbol.toStringTag]?: string | undefined;
|
|
2363
2363
|
} | {} | undefined;
|
|
2364
2364
|
vite?: {} | undefined;
|
|
2365
|
-
root?: string;
|
|
2366
|
-
mode?: string;
|
|
2367
|
-
publicDir?: string;
|
|
2365
|
+
root?: string | undefined;
|
|
2366
|
+
mode?: string | undefined;
|
|
2367
|
+
publicDir?: string | undefined;
|
|
2368
2368
|
experimental?: {} | undefined;
|
|
2369
|
-
srcDir?: string;
|
|
2370
|
-
entrypointsDir?: string;
|
|
2371
|
-
modulesDir?: string;
|
|
2369
|
+
srcDir?: string | undefined;
|
|
2370
|
+
entrypointsDir?: string | undefined;
|
|
2371
|
+
modulesDir?: string | undefined;
|
|
2372
2372
|
filterEntrypoints?: (string | undefined)[] | undefined;
|
|
2373
|
-
outDir?: string;
|
|
2374
|
-
debug?: boolean;
|
|
2373
|
+
outDir?: string | undefined;
|
|
2374
|
+
debug?: boolean | undefined;
|
|
2375
2375
|
imports?: false | {
|
|
2376
2376
|
imports?: ({
|
|
2377
2377
|
name?: string | undefined;
|
|
2378
|
-
as?: import("unimport").ImportName;
|
|
2378
|
+
as?: import("unimport").ImportName | undefined;
|
|
2379
2379
|
with?: {
|
|
2380
2380
|
[x: string]: string | undefined;
|
|
2381
2381
|
} | undefined;
|
|
2382
2382
|
from?: string | undefined;
|
|
2383
|
-
priority?: number;
|
|
2384
|
-
disabled?: boolean;
|
|
2385
|
-
dtsDisabled?: boolean;
|
|
2383
|
+
priority?: number | undefined;
|
|
2384
|
+
disabled?: boolean | undefined;
|
|
2385
|
+
dtsDisabled?: boolean | undefined;
|
|
2386
2386
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2387
2387
|
meta?: {
|
|
2388
2388
|
[x: string]: any;
|
|
2389
|
-
description?: string;
|
|
2390
|
-
docsUrl?: string;
|
|
2389
|
+
description?: string | undefined;
|
|
2390
|
+
docsUrl?: string | undefined;
|
|
2391
2391
|
} | undefined;
|
|
2392
|
-
type?: boolean;
|
|
2393
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2392
|
+
type?: boolean | undefined;
|
|
2393
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2394
2394
|
} | undefined)[] | undefined;
|
|
2395
2395
|
presets?: ("@vue/composition-api" | "@vueuse/core" | "@vueuse/head" | "pinia" | "preact" | "quasar" | "react" | "react-router" | "react-router-dom" | "svelte" | "svelte/animate" | "svelte/easing" | "svelte/motion" | "svelte/store" | "svelte/transition" | "vee-validate" | "vitepress" | "vue-demi" | "vue-i18n" | "vue-router" | "vue-router-composables" | "vue" | "vue/macros" | "vuex" | "vitest" | "uni-app" | "solid-js" | "solid-app-router" | "rxjs" | "date-fns" | {
|
|
2396
2396
|
imports?: (string | any | {
|
|
2397
2397
|
meta?: {
|
|
2398
2398
|
[x: string]: any;
|
|
2399
|
-
description?: string;
|
|
2400
|
-
docsUrl?: string;
|
|
2399
|
+
description?: string | undefined;
|
|
2400
|
+
docsUrl?: string | undefined;
|
|
2401
2401
|
} | undefined;
|
|
2402
|
-
type?: boolean;
|
|
2402
|
+
type?: boolean | undefined;
|
|
2403
2403
|
name?: string | undefined;
|
|
2404
|
-
as?: import("unimport").ImportName;
|
|
2404
|
+
as?: import("unimport").ImportName | undefined;
|
|
2405
2405
|
with?: {
|
|
2406
2406
|
[x: string]: string | undefined;
|
|
2407
2407
|
} | undefined;
|
|
2408
|
-
priority?: number;
|
|
2409
|
-
disabled?: boolean;
|
|
2410
|
-
dtsDisabled?: boolean;
|
|
2408
|
+
priority?: number | undefined;
|
|
2409
|
+
disabled?: boolean | undefined;
|
|
2410
|
+
dtsDisabled?: boolean | undefined;
|
|
2411
2411
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2412
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2412
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2413
2413
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
2414
2414
|
from?: string | undefined;
|
|
2415
|
-
priority?: number;
|
|
2416
|
-
disabled?: boolean;
|
|
2417
|
-
dtsDisabled?: boolean;
|
|
2415
|
+
priority?: number | undefined;
|
|
2416
|
+
disabled?: boolean | undefined;
|
|
2417
|
+
dtsDisabled?: boolean | undefined;
|
|
2418
2418
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2419
2419
|
meta?: {
|
|
2420
2420
|
[x: string]: any;
|
|
2421
|
-
description?: string;
|
|
2422
|
-
docsUrl?: string;
|
|
2421
|
+
description?: string | undefined;
|
|
2422
|
+
docsUrl?: string | undefined;
|
|
2423
2423
|
} | undefined;
|
|
2424
|
-
type?: boolean;
|
|
2425
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2424
|
+
type?: boolean | undefined;
|
|
2425
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2426
2426
|
} | {
|
|
2427
2427
|
package?: string | undefined;
|
|
2428
|
-
url?: string;
|
|
2428
|
+
url?: string | undefined;
|
|
2429
2429
|
ignore?: (string | {
|
|
2430
2430
|
exec?: {} | undefined;
|
|
2431
2431
|
test?: {} | undefined;
|
|
@@ -2445,12 +2445,12 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2445
2445
|
[Symbol.split]?: {} | undefined;
|
|
2446
2446
|
[Symbol.matchAll]?: {} | undefined;
|
|
2447
2447
|
} | {} | undefined)[] | undefined;
|
|
2448
|
-
cache?: boolean;
|
|
2448
|
+
cache?: boolean | undefined;
|
|
2449
2449
|
} | undefined)[] | undefined;
|
|
2450
2450
|
warn?: {} | undefined;
|
|
2451
2451
|
debugLog?: {} | undefined;
|
|
2452
2452
|
addons?: {
|
|
2453
|
-
vueTemplate?: boolean;
|
|
2453
|
+
vueTemplate?: boolean | undefined;
|
|
2454
2454
|
} | ({
|
|
2455
2455
|
transform?: {} | undefined;
|
|
2456
2456
|
declaration?: {} | undefined;
|
|
@@ -2464,24 +2464,24 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2464
2464
|
dirsScanOptions?: {
|
|
2465
2465
|
filePatterns?: (string | undefined)[] | undefined;
|
|
2466
2466
|
fileFilter?: {} | undefined;
|
|
2467
|
-
types?: boolean;
|
|
2468
|
-
cwd?: string;
|
|
2467
|
+
types?: boolean | undefined;
|
|
2468
|
+
cwd?: string | undefined;
|
|
2469
2469
|
} | undefined;
|
|
2470
2470
|
resolveId?: {} | undefined;
|
|
2471
2471
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
2472
2472
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
2473
|
-
collectMeta?: boolean;
|
|
2474
|
-
injectAtEnd?: boolean;
|
|
2475
|
-
mergeExisting?: boolean;
|
|
2476
|
-
parser?: "acorn" | "regex";
|
|
2473
|
+
collectMeta?: boolean | undefined;
|
|
2474
|
+
injectAtEnd?: boolean | undefined;
|
|
2475
|
+
mergeExisting?: boolean | undefined;
|
|
2476
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
2477
2477
|
eslintrc?: {
|
|
2478
|
-
enabled?: false | true | "auto" | 8 | 9;
|
|
2479
|
-
filePath?: string;
|
|
2480
|
-
globalsPropValue?: import("../../../types").EslintGlobalsPropValue;
|
|
2478
|
+
enabled?: (false | true | "auto" | 8 | 9) | undefined;
|
|
2479
|
+
filePath?: string | undefined;
|
|
2480
|
+
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
2481
2481
|
} | undefined;
|
|
2482
2482
|
} | undefined;
|
|
2483
|
-
browser?: import("../../../types").TargetBrowser;
|
|
2484
|
-
manifestVersion?: import("../../../types").TargetManifestVersion;
|
|
2483
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
2484
|
+
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
2485
2485
|
logger?: {
|
|
2486
2486
|
debug?: {} | undefined;
|
|
2487
2487
|
log?: {} | undefined;
|
|
@@ -2500,53 +2500,53 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2500
2500
|
} | undefined;
|
|
2501
2501
|
} | undefined;
|
|
2502
2502
|
runner?: {
|
|
2503
|
-
disabled?: boolean;
|
|
2504
|
-
openConsole?: boolean;
|
|
2505
|
-
openDevtools?: boolean;
|
|
2503
|
+
disabled?: boolean | undefined;
|
|
2504
|
+
openConsole?: boolean | undefined;
|
|
2505
|
+
openDevtools?: boolean | undefined;
|
|
2506
2506
|
binaries?: {
|
|
2507
2507
|
[x: string]: string | undefined;
|
|
2508
2508
|
} | undefined;
|
|
2509
|
-
firefoxProfile?: string;
|
|
2510
|
-
chromiumProfile?: string;
|
|
2511
|
-
chromiumPref?: string;
|
|
2512
|
-
chromiumPort?: number;
|
|
2509
|
+
firefoxProfile?: string | undefined;
|
|
2510
|
+
chromiumProfile?: string | undefined;
|
|
2511
|
+
chromiumPref?: string | undefined;
|
|
2512
|
+
chromiumPort?: number | undefined;
|
|
2513
2513
|
firefoxPrefs?: {
|
|
2514
2514
|
[x: string]: string | undefined;
|
|
2515
2515
|
} | undefined;
|
|
2516
2516
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
2517
2517
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
2518
2518
|
startUrls?: (string | undefined)[] | undefined;
|
|
2519
|
-
keepProfileChanges?: boolean;
|
|
2519
|
+
keepProfileChanges?: boolean | undefined;
|
|
2520
2520
|
} | undefined;
|
|
2521
2521
|
zip?: {
|
|
2522
|
-
artifactTemplate?: string;
|
|
2523
|
-
sourcesTemplate?: string;
|
|
2524
|
-
name?: string;
|
|
2525
|
-
sourcesRoot?: string;
|
|
2522
|
+
artifactTemplate?: string | undefined;
|
|
2523
|
+
sourcesTemplate?: string | undefined;
|
|
2524
|
+
name?: string | undefined;
|
|
2525
|
+
sourcesRoot?: string | undefined;
|
|
2526
2526
|
includeSources?: (string | undefined)[] | undefined;
|
|
2527
2527
|
excludeSources?: (string | undefined)[] | undefined;
|
|
2528
2528
|
downloadPackages?: (string | undefined)[] | undefined;
|
|
2529
|
-
compressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
2529
|
+
compressionLevel?: (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9) | undefined;
|
|
2530
2530
|
} | undefined;
|
|
2531
2531
|
transformManifest?: {} | undefined;
|
|
2532
2532
|
analysis?: {
|
|
2533
|
-
enabled?: boolean;
|
|
2534
|
-
open?: boolean;
|
|
2533
|
+
enabled?: boolean | undefined;
|
|
2534
|
+
open?: boolean | undefined;
|
|
2535
2535
|
template?: import("@aklinker1/rollup-plugin-visualizer").PluginVisualizerOptions["template"];
|
|
2536
|
-
outputFile?: string;
|
|
2537
|
-
keepArtifacts?: boolean;
|
|
2536
|
+
outputFile?: string | undefined;
|
|
2537
|
+
keepArtifacts?: boolean | undefined;
|
|
2538
2538
|
} | undefined;
|
|
2539
2539
|
alias?: {
|
|
2540
2540
|
[x: string]: string | undefined;
|
|
2541
2541
|
} | undefined;
|
|
2542
|
-
extensionApi?: "webextension-polyfill" | "chrome";
|
|
2543
|
-
entrypointLoader?: "vite-node" | "jiti";
|
|
2542
|
+
extensionApi?: ("webextension-polyfill" | "chrome") | undefined;
|
|
2543
|
+
entrypointLoader?: ("vite-node" | "jiti") | undefined;
|
|
2544
2544
|
dev?: {
|
|
2545
2545
|
server?: {
|
|
2546
|
-
port?: number;
|
|
2547
|
-
hostname?: string;
|
|
2546
|
+
port?: number | undefined;
|
|
2547
|
+
hostname?: string | undefined;
|
|
2548
2548
|
} | undefined;
|
|
2549
|
-
reloadCommand?: string | false;
|
|
2549
|
+
reloadCommand?: (string | false) | undefined;
|
|
2550
2550
|
} | undefined;
|
|
2551
2551
|
hooks?: {
|
|
2552
2552
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -2666,37 +2666,37 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2666
2666
|
modules?: (string | undefined)[] | undefined;
|
|
2667
2667
|
} | undefined;
|
|
2668
2668
|
giget?: {
|
|
2669
|
-
provider?: string;
|
|
2670
|
-
force?: boolean;
|
|
2671
|
-
forceClean?: boolean;
|
|
2672
|
-
offline?: boolean;
|
|
2673
|
-
preferOffline?: boolean;
|
|
2669
|
+
provider?: string | undefined;
|
|
2670
|
+
force?: boolean | undefined;
|
|
2671
|
+
forceClean?: boolean | undefined;
|
|
2672
|
+
offline?: boolean | undefined;
|
|
2673
|
+
preferOffline?: boolean | undefined;
|
|
2674
2674
|
providers?: {
|
|
2675
2675
|
[x: string]: {} | undefined;
|
|
2676
2676
|
} | undefined;
|
|
2677
|
-
dir?: string;
|
|
2678
|
-
registry?: false | string;
|
|
2679
|
-
cwd?: string;
|
|
2680
|
-
auth?: string;
|
|
2681
|
-
install?: boolean;
|
|
2682
|
-
silent?: boolean;
|
|
2677
|
+
dir?: string | undefined;
|
|
2678
|
+
registry?: (false | string) | undefined;
|
|
2679
|
+
cwd?: string | undefined;
|
|
2680
|
+
auth?: string | undefined;
|
|
2681
|
+
install?: boolean | undefined;
|
|
2682
|
+
silent?: boolean | undefined;
|
|
2683
2683
|
} | undefined;
|
|
2684
|
-
install?: boolean;
|
|
2685
|
-
auth?: string;
|
|
2684
|
+
install?: boolean | undefined;
|
|
2685
|
+
auth?: string | undefined;
|
|
2686
2686
|
} | undefined;
|
|
2687
2687
|
meta?: {
|
|
2688
2688
|
[x: string]: any;
|
|
2689
|
-
name?: string;
|
|
2689
|
+
name?: string | undefined;
|
|
2690
2690
|
} | undefined;
|
|
2691
|
-
cwd?: string;
|
|
2692
|
-
configFile?: string;
|
|
2691
|
+
cwd?: string | undefined;
|
|
2692
|
+
configFile?: string | undefined;
|
|
2693
2693
|
} | undefined)[] | undefined;
|
|
2694
|
-
cwd?: string;
|
|
2694
|
+
cwd?: string | undefined;
|
|
2695
2695
|
sourceOptions?: {
|
|
2696
2696
|
[x: string]: any;
|
|
2697
2697
|
meta?: {
|
|
2698
2698
|
[x: string]: any;
|
|
2699
|
-
name?: string;
|
|
2699
|
+
name?: string | undefined;
|
|
2700
2700
|
} | undefined;
|
|
2701
2701
|
overrides?: {
|
|
2702
2702
|
manifest?: {
|
|
@@ -2710,70 +2710,70 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2710
2710
|
readonly [Symbol.toStringTag]?: string | undefined;
|
|
2711
2711
|
} | {} | undefined;
|
|
2712
2712
|
vite?: {} | undefined;
|
|
2713
|
-
root?: string;
|
|
2714
|
-
mode?: string;
|
|
2715
|
-
publicDir?: string;
|
|
2713
|
+
root?: string | undefined;
|
|
2714
|
+
mode?: string | undefined;
|
|
2715
|
+
publicDir?: string | undefined;
|
|
2716
2716
|
experimental?: {} | undefined;
|
|
2717
|
-
srcDir?: string;
|
|
2718
|
-
entrypointsDir?: string;
|
|
2719
|
-
modulesDir?: string;
|
|
2717
|
+
srcDir?: string | undefined;
|
|
2718
|
+
entrypointsDir?: string | undefined;
|
|
2719
|
+
modulesDir?: string | undefined;
|
|
2720
2720
|
filterEntrypoints?: (string | undefined)[] | undefined;
|
|
2721
|
-
outDir?: string;
|
|
2722
|
-
debug?: boolean;
|
|
2721
|
+
outDir?: string | undefined;
|
|
2722
|
+
debug?: boolean | undefined;
|
|
2723
2723
|
imports?: false | {
|
|
2724
2724
|
imports?: ({
|
|
2725
2725
|
name?: string | undefined;
|
|
2726
|
-
as?: import("unimport").ImportName;
|
|
2726
|
+
as?: import("unimport").ImportName | undefined;
|
|
2727
2727
|
with?: {
|
|
2728
2728
|
[x: string]: string | undefined;
|
|
2729
2729
|
} | undefined;
|
|
2730
2730
|
from?: string | undefined;
|
|
2731
|
-
priority?: number;
|
|
2732
|
-
disabled?: boolean;
|
|
2733
|
-
dtsDisabled?: boolean;
|
|
2731
|
+
priority?: number | undefined;
|
|
2732
|
+
disabled?: boolean | undefined;
|
|
2733
|
+
dtsDisabled?: boolean | undefined;
|
|
2734
2734
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2735
2735
|
meta?: {
|
|
2736
2736
|
[x: string]: any;
|
|
2737
|
-
description?: string;
|
|
2738
|
-
docsUrl?: string;
|
|
2737
|
+
description?: string | undefined;
|
|
2738
|
+
docsUrl?: string | undefined;
|
|
2739
2739
|
} | undefined;
|
|
2740
|
-
type?: boolean;
|
|
2741
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2740
|
+
type?: boolean | undefined;
|
|
2741
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2742
2742
|
} | undefined)[] | undefined;
|
|
2743
2743
|
presets?: ("@vue/composition-api" | "@vueuse/core" | "@vueuse/head" | "pinia" | "preact" | "quasar" | "react" | "react-router" | "react-router-dom" | "svelte" | "svelte/animate" | "svelte/easing" | "svelte/motion" | "svelte/store" | "svelte/transition" | "vee-validate" | "vitepress" | "vue-demi" | "vue-i18n" | "vue-router" | "vue-router-composables" | "vue" | "vue/macros" | "vuex" | "vitest" | "uni-app" | "solid-js" | "solid-app-router" | "rxjs" | "date-fns" | {
|
|
2744
2744
|
imports?: (string | any | {
|
|
2745
2745
|
meta?: {
|
|
2746
2746
|
[x: string]: any;
|
|
2747
|
-
description?: string;
|
|
2748
|
-
docsUrl?: string;
|
|
2747
|
+
description?: string | undefined;
|
|
2748
|
+
docsUrl?: string | undefined;
|
|
2749
2749
|
} | undefined;
|
|
2750
|
-
type?: boolean;
|
|
2750
|
+
type?: boolean | undefined;
|
|
2751
2751
|
name?: string | undefined;
|
|
2752
|
-
as?: import("unimport").ImportName;
|
|
2752
|
+
as?: import("unimport").ImportName | undefined;
|
|
2753
2753
|
with?: {
|
|
2754
2754
|
[x: string]: string | undefined;
|
|
2755
2755
|
} | undefined;
|
|
2756
|
-
priority?: number;
|
|
2757
|
-
disabled?: boolean;
|
|
2758
|
-
dtsDisabled?: boolean;
|
|
2756
|
+
priority?: number | undefined;
|
|
2757
|
+
disabled?: boolean | undefined;
|
|
2758
|
+
dtsDisabled?: boolean | undefined;
|
|
2759
2759
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2760
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2760
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2761
2761
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
2762
2762
|
from?: string | undefined;
|
|
2763
|
-
priority?: number;
|
|
2764
|
-
disabled?: boolean;
|
|
2765
|
-
dtsDisabled?: boolean;
|
|
2763
|
+
priority?: number | undefined;
|
|
2764
|
+
disabled?: boolean | undefined;
|
|
2765
|
+
dtsDisabled?: boolean | undefined;
|
|
2766
2766
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2767
2767
|
meta?: {
|
|
2768
2768
|
[x: string]: any;
|
|
2769
|
-
description?: string;
|
|
2770
|
-
docsUrl?: string;
|
|
2769
|
+
description?: string | undefined;
|
|
2770
|
+
docsUrl?: string | undefined;
|
|
2771
2771
|
} | undefined;
|
|
2772
|
-
type?: boolean;
|
|
2773
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2772
|
+
type?: boolean | undefined;
|
|
2773
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2774
2774
|
} | {
|
|
2775
2775
|
package?: string | undefined;
|
|
2776
|
-
url?: string;
|
|
2776
|
+
url?: string | undefined;
|
|
2777
2777
|
ignore?: (string | {
|
|
2778
2778
|
exec?: {} | undefined;
|
|
2779
2779
|
test?: {} | undefined;
|
|
@@ -2793,12 +2793,12 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2793
2793
|
[Symbol.split]?: {} | undefined;
|
|
2794
2794
|
[Symbol.matchAll]?: {} | undefined;
|
|
2795
2795
|
} | {} | undefined)[] | undefined;
|
|
2796
|
-
cache?: boolean;
|
|
2796
|
+
cache?: boolean | undefined;
|
|
2797
2797
|
} | undefined)[] | undefined;
|
|
2798
2798
|
warn?: {} | undefined;
|
|
2799
2799
|
debugLog?: {} | undefined;
|
|
2800
2800
|
addons?: {
|
|
2801
|
-
vueTemplate?: boolean;
|
|
2801
|
+
vueTemplate?: boolean | undefined;
|
|
2802
2802
|
} | ({
|
|
2803
2803
|
transform?: {} | undefined;
|
|
2804
2804
|
declaration?: {} | undefined;
|
|
@@ -2812,24 +2812,24 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2812
2812
|
dirsScanOptions?: {
|
|
2813
2813
|
filePatterns?: (string | undefined)[] | undefined;
|
|
2814
2814
|
fileFilter?: {} | undefined;
|
|
2815
|
-
types?: boolean;
|
|
2816
|
-
cwd?: string;
|
|
2815
|
+
types?: boolean | undefined;
|
|
2816
|
+
cwd?: string | undefined;
|
|
2817
2817
|
} | undefined;
|
|
2818
2818
|
resolveId?: {} | undefined;
|
|
2819
2819
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
2820
2820
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
2821
|
-
collectMeta?: boolean;
|
|
2822
|
-
injectAtEnd?: boolean;
|
|
2823
|
-
mergeExisting?: boolean;
|
|
2824
|
-
parser?: "acorn" | "regex";
|
|
2821
|
+
collectMeta?: boolean | undefined;
|
|
2822
|
+
injectAtEnd?: boolean | undefined;
|
|
2823
|
+
mergeExisting?: boolean | undefined;
|
|
2824
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
2825
2825
|
eslintrc?: {
|
|
2826
|
-
enabled?: false | true | "auto" | 8 | 9;
|
|
2827
|
-
filePath?: string;
|
|
2828
|
-
globalsPropValue?: import("../../../types").EslintGlobalsPropValue;
|
|
2826
|
+
enabled?: (false | true | "auto" | 8 | 9) | undefined;
|
|
2827
|
+
filePath?: string | undefined;
|
|
2828
|
+
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
2829
2829
|
} | undefined;
|
|
2830
2830
|
} | undefined;
|
|
2831
|
-
browser?: import("../../../types").TargetBrowser;
|
|
2832
|
-
manifestVersion?: import("../../../types").TargetManifestVersion;
|
|
2831
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
2832
|
+
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
2833
2833
|
logger?: {
|
|
2834
2834
|
debug?: {} | undefined;
|
|
2835
2835
|
log?: {} | undefined;
|
|
@@ -2848,53 +2848,53 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2848
2848
|
} | undefined;
|
|
2849
2849
|
} | undefined;
|
|
2850
2850
|
runner?: {
|
|
2851
|
-
disabled?: boolean;
|
|
2852
|
-
openConsole?: boolean;
|
|
2853
|
-
openDevtools?: boolean;
|
|
2851
|
+
disabled?: boolean | undefined;
|
|
2852
|
+
openConsole?: boolean | undefined;
|
|
2853
|
+
openDevtools?: boolean | undefined;
|
|
2854
2854
|
binaries?: {
|
|
2855
2855
|
[x: string]: string | undefined;
|
|
2856
2856
|
} | undefined;
|
|
2857
|
-
firefoxProfile?: string;
|
|
2858
|
-
chromiumProfile?: string;
|
|
2859
|
-
chromiumPref?: string;
|
|
2860
|
-
chromiumPort?: number;
|
|
2857
|
+
firefoxProfile?: string | undefined;
|
|
2858
|
+
chromiumProfile?: string | undefined;
|
|
2859
|
+
chromiumPref?: string | undefined;
|
|
2860
|
+
chromiumPort?: number | undefined;
|
|
2861
2861
|
firefoxPrefs?: {
|
|
2862
2862
|
[x: string]: string | undefined;
|
|
2863
2863
|
} | undefined;
|
|
2864
2864
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
2865
2865
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
2866
2866
|
startUrls?: (string | undefined)[] | undefined;
|
|
2867
|
-
keepProfileChanges?: boolean;
|
|
2867
|
+
keepProfileChanges?: boolean | undefined;
|
|
2868
2868
|
} | undefined;
|
|
2869
2869
|
zip?: {
|
|
2870
|
-
artifactTemplate?: string;
|
|
2871
|
-
sourcesTemplate?: string;
|
|
2872
|
-
name?: string;
|
|
2873
|
-
sourcesRoot?: string;
|
|
2870
|
+
artifactTemplate?: string | undefined;
|
|
2871
|
+
sourcesTemplate?: string | undefined;
|
|
2872
|
+
name?: string | undefined;
|
|
2873
|
+
sourcesRoot?: string | undefined;
|
|
2874
2874
|
includeSources?: (string | undefined)[] | undefined;
|
|
2875
2875
|
excludeSources?: (string | undefined)[] | undefined;
|
|
2876
2876
|
downloadPackages?: (string | undefined)[] | undefined;
|
|
2877
|
-
compressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
2877
|
+
compressionLevel?: (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9) | undefined;
|
|
2878
2878
|
} | undefined;
|
|
2879
2879
|
transformManifest?: {} | undefined;
|
|
2880
2880
|
analysis?: {
|
|
2881
|
-
enabled?: boolean;
|
|
2882
|
-
open?: boolean;
|
|
2881
|
+
enabled?: boolean | undefined;
|
|
2882
|
+
open?: boolean | undefined;
|
|
2883
2883
|
template?: import("@aklinker1/rollup-plugin-visualizer").PluginVisualizerOptions["template"];
|
|
2884
|
-
outputFile?: string;
|
|
2885
|
-
keepArtifacts?: boolean;
|
|
2884
|
+
outputFile?: string | undefined;
|
|
2885
|
+
keepArtifacts?: boolean | undefined;
|
|
2886
2886
|
} | undefined;
|
|
2887
2887
|
alias?: {
|
|
2888
2888
|
[x: string]: string | undefined;
|
|
2889
2889
|
} | undefined;
|
|
2890
|
-
extensionApi?: "webextension-polyfill" | "chrome";
|
|
2891
|
-
entrypointLoader?: "vite-node" | "jiti";
|
|
2890
|
+
extensionApi?: ("webextension-polyfill" | "chrome") | undefined;
|
|
2891
|
+
entrypointLoader?: ("vite-node" | "jiti") | undefined;
|
|
2892
2892
|
dev?: {
|
|
2893
2893
|
server?: {
|
|
2894
|
-
port?: number;
|
|
2895
|
-
hostname?: string;
|
|
2894
|
+
port?: number | undefined;
|
|
2895
|
+
hostname?: string | undefined;
|
|
2896
2896
|
} | undefined;
|
|
2897
|
-
reloadCommand?: string | false;
|
|
2897
|
+
reloadCommand?: (string | false) | undefined;
|
|
2898
2898
|
} | undefined;
|
|
2899
2899
|
hooks?: {
|
|
2900
2900
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -3014,23 +3014,23 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3014
3014
|
modules?: (string | undefined)[] | undefined;
|
|
3015
3015
|
} | undefined;
|
|
3016
3016
|
giget?: {
|
|
3017
|
-
provider?: string;
|
|
3018
|
-
force?: boolean;
|
|
3019
|
-
forceClean?: boolean;
|
|
3020
|
-
offline?: boolean;
|
|
3021
|
-
preferOffline?: boolean;
|
|
3017
|
+
provider?: string | undefined;
|
|
3018
|
+
force?: boolean | undefined;
|
|
3019
|
+
forceClean?: boolean | undefined;
|
|
3020
|
+
offline?: boolean | undefined;
|
|
3021
|
+
preferOffline?: boolean | undefined;
|
|
3022
3022
|
providers?: {
|
|
3023
3023
|
[x: string]: {} | undefined;
|
|
3024
3024
|
} | undefined;
|
|
3025
|
-
dir?: string;
|
|
3026
|
-
registry?: false | string;
|
|
3027
|
-
cwd?: string;
|
|
3028
|
-
auth?: string;
|
|
3029
|
-
install?: boolean;
|
|
3030
|
-
silent?: boolean;
|
|
3025
|
+
dir?: string | undefined;
|
|
3026
|
+
registry?: (false | string) | undefined;
|
|
3027
|
+
cwd?: string | undefined;
|
|
3028
|
+
auth?: string | undefined;
|
|
3029
|
+
install?: boolean | undefined;
|
|
3030
|
+
silent?: boolean | undefined;
|
|
3031
3031
|
} | undefined;
|
|
3032
|
-
install?: boolean;
|
|
3033
|
-
auth?: string;
|
|
3032
|
+
install?: boolean | undefined;
|
|
3033
|
+
auth?: string | undefined;
|
|
3034
3034
|
} | undefined;
|
|
3035
3035
|
} | undefined;
|
|
3036
3036
|
alias?: {
|
|
@@ -3163,26 +3163,26 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3163
3163
|
ready?: {} | undefined;
|
|
3164
3164
|
} | undefined;
|
|
3165
3165
|
builtinModules?: ({
|
|
3166
|
-
name?: string;
|
|
3167
|
-
configKey?: string;
|
|
3166
|
+
name?: string | undefined;
|
|
3167
|
+
configKey?: string | undefined;
|
|
3168
3168
|
imports?: ({
|
|
3169
3169
|
name?: string | undefined;
|
|
3170
|
-
as?: import("unimport").ImportName;
|
|
3170
|
+
as?: import("unimport").ImportName | undefined;
|
|
3171
3171
|
with?: {
|
|
3172
3172
|
[x: string]: string | undefined;
|
|
3173
3173
|
} | undefined;
|
|
3174
3174
|
from?: string | undefined;
|
|
3175
|
-
priority?: number;
|
|
3176
|
-
disabled?: boolean;
|
|
3177
|
-
dtsDisabled?: boolean;
|
|
3175
|
+
priority?: number | undefined;
|
|
3176
|
+
disabled?: boolean | undefined;
|
|
3177
|
+
dtsDisabled?: boolean | undefined;
|
|
3178
3178
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
3179
3179
|
meta?: {
|
|
3180
3180
|
[x: string]: any;
|
|
3181
|
-
description?: string;
|
|
3182
|
-
docsUrl?: string;
|
|
3181
|
+
description?: string | undefined;
|
|
3182
|
+
docsUrl?: string | undefined;
|
|
3183
3183
|
} | undefined;
|
|
3184
|
-
type?: boolean;
|
|
3185
|
-
typeFrom?: import("unimport").ModuleId;
|
|
3184
|
+
type?: boolean | undefined;
|
|
3185
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
3186
3186
|
} | undefined)[] | undefined;
|
|
3187
3187
|
hooks?: {
|
|
3188
3188
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -3202,26 +3202,26 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3202
3202
|
userModules?: ({
|
|
3203
3203
|
type?: "local" | "node_module" | undefined;
|
|
3204
3204
|
id?: string | undefined;
|
|
3205
|
-
name?: string;
|
|
3206
|
-
configKey?: string;
|
|
3205
|
+
name?: string | undefined;
|
|
3206
|
+
configKey?: string | undefined;
|
|
3207
3207
|
imports?: ({
|
|
3208
3208
|
name?: string | undefined;
|
|
3209
|
-
as?: import("unimport").ImportName;
|
|
3209
|
+
as?: import("unimport").ImportName | undefined;
|
|
3210
3210
|
with?: {
|
|
3211
3211
|
[x: string]: string | undefined;
|
|
3212
3212
|
} | undefined;
|
|
3213
3213
|
from?: string | undefined;
|
|
3214
|
-
priority?: number;
|
|
3215
|
-
disabled?: boolean;
|
|
3216
|
-
dtsDisabled?: boolean;
|
|
3214
|
+
priority?: number | undefined;
|
|
3215
|
+
disabled?: boolean | undefined;
|
|
3216
|
+
dtsDisabled?: boolean | undefined;
|
|
3217
3217
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
3218
3218
|
meta?: {
|
|
3219
3219
|
[x: string]: any;
|
|
3220
|
-
description?: string;
|
|
3221
|
-
docsUrl?: string;
|
|
3220
|
+
description?: string | undefined;
|
|
3221
|
+
docsUrl?: string | undefined;
|
|
3222
3222
|
} | undefined;
|
|
3223
|
-
type?: boolean;
|
|
3224
|
-
typeFrom?: import("unimport").ModuleId;
|
|
3223
|
+
type?: boolean | undefined;
|
|
3224
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
3225
3225
|
} | undefined)[] | undefined;
|
|
3226
3226
|
hooks?: {
|
|
3227
3227
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -3284,9 +3284,9 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3284
3284
|
overridesKey?: string | undefined;
|
|
3285
3285
|
name?: import("nypm").PackageManagerName | undefined;
|
|
3286
3286
|
command?: string | undefined;
|
|
3287
|
-
version?: string;
|
|
3288
|
-
majorVersion?: string;
|
|
3289
|
-
lockFile?: string;
|
|
3287
|
+
version?: string | undefined;
|
|
3288
|
+
majorVersion?: string | undefined;
|
|
3289
|
+
lockFile?: string | undefined;
|
|
3290
3290
|
files?: (string | undefined)[] | undefined;
|
|
3291
3291
|
} | undefined;
|
|
3292
3292
|
server?: {
|
|
@@ -3498,7 +3498,7 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3498
3498
|
} | undefined;
|
|
3499
3499
|
watcher?: {
|
|
3500
3500
|
options?: {
|
|
3501
|
-
persistent?: boolean;
|
|
3501
|
+
persistent?: boolean | undefined;
|
|
3502
3502
|
ignored?: string | {
|
|
3503
3503
|
exec?: {} | undefined;
|
|
3504
3504
|
test?: {} | undefined;
|
|
@@ -3536,21 +3536,21 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3536
3536
|
[Symbol.split]?: {} | undefined;
|
|
3537
3537
|
[Symbol.matchAll]?: {} | undefined;
|
|
3538
3538
|
} | {} | undefined)[] | undefined;
|
|
3539
|
-
ignoreInitial?: boolean;
|
|
3540
|
-
followSymlinks?: boolean;
|
|
3541
|
-
cwd?: string;
|
|
3542
|
-
disableGlobbing?: boolean;
|
|
3543
|
-
usePolling?: boolean;
|
|
3544
|
-
useFsEvents?: boolean;
|
|
3545
|
-
alwaysStat?: boolean;
|
|
3546
|
-
depth?: number;
|
|
3547
|
-
interval?: number;
|
|
3548
|
-
binaryInterval?: number;
|
|
3549
|
-
ignorePermissionErrors?: boolean;
|
|
3550
|
-
atomic?: boolean | number;
|
|
3539
|
+
ignoreInitial?: boolean | undefined;
|
|
3540
|
+
followSymlinks?: boolean | undefined;
|
|
3541
|
+
cwd?: string | undefined;
|
|
3542
|
+
disableGlobbing?: boolean | undefined;
|
|
3543
|
+
usePolling?: boolean | undefined;
|
|
3544
|
+
useFsEvents?: boolean | undefined;
|
|
3545
|
+
alwaysStat?: boolean | undefined;
|
|
3546
|
+
depth?: number | undefined;
|
|
3547
|
+
interval?: number | undefined;
|
|
3548
|
+
binaryInterval?: number | undefined;
|
|
3549
|
+
ignorePermissionErrors?: boolean | undefined;
|
|
3550
|
+
atomic?: (boolean | number) | undefined;
|
|
3551
3551
|
awaitWriteFinish?: boolean | {
|
|
3552
|
-
stabilityThreshold?: number;
|
|
3553
|
-
pollInterval?: number;
|
|
3552
|
+
stabilityThreshold?: number | undefined;
|
|
3553
|
+
pollInterval?: number | undefined;
|
|
3554
3554
|
} | undefined;
|
|
3555
3555
|
} | undefined;
|
|
3556
3556
|
add?: {} | undefined;
|
|
@@ -3797,7 +3797,7 @@ export declare const fakeWxtDevServer: (overrides?: {
|
|
|
3797
3797
|
} | undefined;
|
|
3798
3798
|
watcher?: {
|
|
3799
3799
|
options?: {
|
|
3800
|
-
persistent?: boolean;
|
|
3800
|
+
persistent?: boolean | undefined;
|
|
3801
3801
|
ignored?: string | {
|
|
3802
3802
|
exec?: {} | undefined;
|
|
3803
3803
|
test?: {} | undefined;
|
|
@@ -3835,21 +3835,21 @@ export declare const fakeWxtDevServer: (overrides?: {
|
|
|
3835
3835
|
[Symbol.split]?: {} | undefined;
|
|
3836
3836
|
[Symbol.matchAll]?: {} | undefined;
|
|
3837
3837
|
} | {} | undefined)[] | undefined;
|
|
3838
|
-
ignoreInitial?: boolean;
|
|
3839
|
-
followSymlinks?: boolean;
|
|
3840
|
-
cwd?: string;
|
|
3841
|
-
disableGlobbing?: boolean;
|
|
3842
|
-
usePolling?: boolean;
|
|
3843
|
-
useFsEvents?: boolean;
|
|
3844
|
-
alwaysStat?: boolean;
|
|
3845
|
-
depth?: number;
|
|
3846
|
-
interval?: number;
|
|
3847
|
-
binaryInterval?: number;
|
|
3848
|
-
ignorePermissionErrors?: boolean;
|
|
3849
|
-
atomic?: boolean | number;
|
|
3838
|
+
ignoreInitial?: boolean | undefined;
|
|
3839
|
+
followSymlinks?: boolean | undefined;
|
|
3840
|
+
cwd?: string | undefined;
|
|
3841
|
+
disableGlobbing?: boolean | undefined;
|
|
3842
|
+
usePolling?: boolean | undefined;
|
|
3843
|
+
useFsEvents?: boolean | undefined;
|
|
3844
|
+
alwaysStat?: boolean | undefined;
|
|
3845
|
+
depth?: number | undefined;
|
|
3846
|
+
interval?: number | undefined;
|
|
3847
|
+
binaryInterval?: number | undefined;
|
|
3848
|
+
ignorePermissionErrors?: boolean | undefined;
|
|
3849
|
+
atomic?: (boolean | number) | undefined;
|
|
3850
3850
|
awaitWriteFinish?: boolean | {
|
|
3851
|
-
stabilityThreshold?: number;
|
|
3852
|
-
pollInterval?: number;
|
|
3851
|
+
stabilityThreshold?: number | undefined;
|
|
3852
|
+
pollInterval?: number | undefined;
|
|
3853
3853
|
} | undefined;
|
|
3854
3854
|
} | undefined;
|
|
3855
3855
|
add?: {} | undefined;
|
|
@@ -4471,7 +4471,7 @@ export declare const fakeDevServer: (overrides?: {
|
|
|
4471
4471
|
} | undefined;
|
|
4472
4472
|
watcher?: {
|
|
4473
4473
|
options?: {
|
|
4474
|
-
persistent?: boolean;
|
|
4474
|
+
persistent?: boolean | undefined;
|
|
4475
4475
|
ignored?: string | {
|
|
4476
4476
|
exec?: {} | undefined;
|
|
4477
4477
|
test?: {} | undefined;
|
|
@@ -4509,21 +4509,21 @@ export declare const fakeDevServer: (overrides?: {
|
|
|
4509
4509
|
[Symbol.split]?: {} | undefined;
|
|
4510
4510
|
[Symbol.matchAll]?: {} | undefined;
|
|
4511
4511
|
} | {} | undefined)[] | undefined;
|
|
4512
|
-
ignoreInitial?: boolean;
|
|
4513
|
-
followSymlinks?: boolean;
|
|
4514
|
-
cwd?: string;
|
|
4515
|
-
disableGlobbing?: boolean;
|
|
4516
|
-
usePolling?: boolean;
|
|
4517
|
-
useFsEvents?: boolean;
|
|
4518
|
-
alwaysStat?: boolean;
|
|
4519
|
-
depth?: number;
|
|
4520
|
-
interval?: number;
|
|
4521
|
-
binaryInterval?: number;
|
|
4522
|
-
ignorePermissionErrors?: boolean;
|
|
4523
|
-
atomic?: boolean | number;
|
|
4512
|
+
ignoreInitial?: boolean | undefined;
|
|
4513
|
+
followSymlinks?: boolean | undefined;
|
|
4514
|
+
cwd?: string | undefined;
|
|
4515
|
+
disableGlobbing?: boolean | undefined;
|
|
4516
|
+
usePolling?: boolean | undefined;
|
|
4517
|
+
useFsEvents?: boolean | undefined;
|
|
4518
|
+
alwaysStat?: boolean | undefined;
|
|
4519
|
+
depth?: number | undefined;
|
|
4520
|
+
interval?: number | undefined;
|
|
4521
|
+
binaryInterval?: number | undefined;
|
|
4522
|
+
ignorePermissionErrors?: boolean | undefined;
|
|
4523
|
+
atomic?: (boolean | number) | undefined;
|
|
4524
4524
|
awaitWriteFinish?: boolean | {
|
|
4525
|
-
stabilityThreshold?: number;
|
|
4526
|
-
pollInterval?: number;
|
|
4525
|
+
stabilityThreshold?: number | undefined;
|
|
4526
|
+
pollInterval?: number | undefined;
|
|
4527
4527
|
} | undefined;
|
|
4528
4528
|
} | undefined;
|
|
4529
4529
|
add?: {} | undefined;
|