wxt 0.19.3-alpha2 → 0.19.4
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/browser/chrome.d.ts +1 -4
- package/dist/browser/index.d.ts +7 -7
- package/dist/client/content-scripts/ui/types.d.ts +1 -1
- package/dist/client/index.d.ts +1 -0
- package/dist/client/index.mjs +1 -0
- package/dist/client/inject-script.d.ts +18 -0
- package/dist/client/inject-script.mjs +14 -0
- package/dist/core/utils/building/find-entrypoints.mjs +11 -1
- package/dist/core/utils/building/generate-wxt-dir.mjs +4 -4
- package/dist/core/utils/building/resolve-config.mjs +0 -1
- package/dist/core/utils/testing/fake-objects.d.ts +764 -766
- package/dist/core/utils/testing/fake-objects.mjs +0 -1
- package/dist/types.d.ts +0 -1
- 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,30 +1458,29 @@ 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?: {
|
|
1481
1481
|
[x: string]: string | undefined;
|
|
1482
1482
|
} | undefined;
|
|
1483
1483
|
extensionApi?: "webextension-polyfill" | "chrome" | undefined;
|
|
1484
|
-
browserModule?: "wxt/browser" | "wxt/browser/chrome" | undefined;
|
|
1485
1484
|
entrypointLoader?: "vite-node" | "jiti" | undefined;
|
|
1486
1485
|
experimental?: {} | undefined;
|
|
1487
1486
|
dev?: {
|
|
@@ -1607,26 +1606,26 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1607
1606
|
ready?: {} | undefined;
|
|
1608
1607
|
} | undefined;
|
|
1609
1608
|
builtinModules?: ({
|
|
1610
|
-
name?: string;
|
|
1611
|
-
configKey?: string;
|
|
1609
|
+
name?: string | undefined;
|
|
1610
|
+
configKey?: string | undefined;
|
|
1612
1611
|
imports?: ({
|
|
1613
1612
|
name?: string | undefined;
|
|
1614
|
-
as?: import("unimport").ImportName;
|
|
1613
|
+
as?: import("unimport").ImportName | undefined;
|
|
1615
1614
|
with?: {
|
|
1616
1615
|
[x: string]: string | undefined;
|
|
1617
1616
|
} | undefined;
|
|
1618
1617
|
from?: string | undefined;
|
|
1619
|
-
priority?: number;
|
|
1620
|
-
disabled?: boolean;
|
|
1621
|
-
dtsDisabled?: boolean;
|
|
1618
|
+
priority?: number | undefined;
|
|
1619
|
+
disabled?: boolean | undefined;
|
|
1620
|
+
dtsDisabled?: boolean | undefined;
|
|
1622
1621
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1623
1622
|
meta?: {
|
|
1624
1623
|
[x: string]: any;
|
|
1625
|
-
description?: string;
|
|
1626
|
-
docsUrl?: string;
|
|
1624
|
+
description?: string | undefined;
|
|
1625
|
+
docsUrl?: string | undefined;
|
|
1627
1626
|
} | undefined;
|
|
1628
|
-
type?: boolean;
|
|
1629
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1627
|
+
type?: boolean | undefined;
|
|
1628
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1630
1629
|
} | undefined)[] | undefined;
|
|
1631
1630
|
hooks?: {
|
|
1632
1631
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -1646,26 +1645,26 @@ export declare const fakeResolvedConfig: (overrides?: {
|
|
|
1646
1645
|
userModules?: ({
|
|
1647
1646
|
type?: "local" | "node_module" | undefined;
|
|
1648
1647
|
id?: string | undefined;
|
|
1649
|
-
name?: string;
|
|
1650
|
-
configKey?: string;
|
|
1648
|
+
name?: string | undefined;
|
|
1649
|
+
configKey?: string | undefined;
|
|
1651
1650
|
imports?: ({
|
|
1652
1651
|
name?: string | undefined;
|
|
1653
|
-
as?: import("unimport").ImportName;
|
|
1652
|
+
as?: import("unimport").ImportName | undefined;
|
|
1654
1653
|
with?: {
|
|
1655
1654
|
[x: string]: string | undefined;
|
|
1656
1655
|
} | undefined;
|
|
1657
1656
|
from?: string | undefined;
|
|
1658
|
-
priority?: number;
|
|
1659
|
-
disabled?: boolean;
|
|
1660
|
-
dtsDisabled?: boolean;
|
|
1657
|
+
priority?: number | undefined;
|
|
1658
|
+
disabled?: boolean | undefined;
|
|
1659
|
+
dtsDisabled?: boolean | undefined;
|
|
1661
1660
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1662
1661
|
meta?: {
|
|
1663
1662
|
[x: string]: any;
|
|
1664
|
-
description?: string;
|
|
1665
|
-
docsUrl?: string;
|
|
1663
|
+
description?: string | undefined;
|
|
1664
|
+
docsUrl?: string | undefined;
|
|
1666
1665
|
} | undefined;
|
|
1667
|
-
type?: boolean;
|
|
1668
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1666
|
+
type?: boolean | undefined;
|
|
1667
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1669
1668
|
} | undefined)[] | undefined;
|
|
1670
1669
|
hooks?: {
|
|
1671
1670
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -1741,57 +1740,57 @@ export declare const fakeWxt: (overrides?: {
|
|
|
1741
1740
|
imports?: false | {
|
|
1742
1741
|
imports?: ({
|
|
1743
1742
|
name?: string | undefined;
|
|
1744
|
-
as?: import("unimport").ImportName;
|
|
1743
|
+
as?: import("unimport").ImportName | undefined;
|
|
1745
1744
|
with?: {
|
|
1746
1745
|
[x: string]: string | undefined;
|
|
1747
1746
|
} | undefined;
|
|
1748
1747
|
from?: string | undefined;
|
|
1749
|
-
priority?: number;
|
|
1750
|
-
disabled?: boolean;
|
|
1751
|
-
dtsDisabled?: boolean;
|
|
1748
|
+
priority?: number | undefined;
|
|
1749
|
+
disabled?: boolean | undefined;
|
|
1750
|
+
dtsDisabled?: boolean | undefined;
|
|
1752
1751
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1753
1752
|
meta?: {
|
|
1754
1753
|
[x: string]: any;
|
|
1755
|
-
description?: string;
|
|
1756
|
-
docsUrl?: string;
|
|
1754
|
+
description?: string | undefined;
|
|
1755
|
+
docsUrl?: string | undefined;
|
|
1757
1756
|
} | undefined;
|
|
1758
|
-
type?: boolean;
|
|
1759
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1757
|
+
type?: boolean | undefined;
|
|
1758
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1760
1759
|
} | undefined)[] | undefined;
|
|
1761
1760
|
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
1761
|
imports?: (string | any | {
|
|
1763
1762
|
meta?: {
|
|
1764
1763
|
[x: string]: any;
|
|
1765
|
-
description?: string;
|
|
1766
|
-
docsUrl?: string;
|
|
1764
|
+
description?: string | undefined;
|
|
1765
|
+
docsUrl?: string | undefined;
|
|
1767
1766
|
} | undefined;
|
|
1768
|
-
type?: boolean;
|
|
1767
|
+
type?: boolean | undefined;
|
|
1769
1768
|
name?: string | undefined;
|
|
1770
|
-
as?: import("unimport").ImportName;
|
|
1769
|
+
as?: import("unimport").ImportName | undefined;
|
|
1771
1770
|
with?: {
|
|
1772
1771
|
[x: string]: string | undefined;
|
|
1773
1772
|
} | undefined;
|
|
1774
|
-
priority?: number;
|
|
1775
|
-
disabled?: boolean;
|
|
1776
|
-
dtsDisabled?: boolean;
|
|
1773
|
+
priority?: number | undefined;
|
|
1774
|
+
disabled?: boolean | undefined;
|
|
1775
|
+
dtsDisabled?: boolean | undefined;
|
|
1777
1776
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1778
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1777
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1779
1778
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
1780
1779
|
from?: string | undefined;
|
|
1781
|
-
priority?: number;
|
|
1782
|
-
disabled?: boolean;
|
|
1783
|
-
dtsDisabled?: boolean;
|
|
1780
|
+
priority?: number | undefined;
|
|
1781
|
+
disabled?: boolean | undefined;
|
|
1782
|
+
dtsDisabled?: boolean | undefined;
|
|
1784
1783
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
1785
1784
|
meta?: {
|
|
1786
1785
|
[x: string]: any;
|
|
1787
|
-
description?: string;
|
|
1788
|
-
docsUrl?: string;
|
|
1786
|
+
description?: string | undefined;
|
|
1787
|
+
docsUrl?: string | undefined;
|
|
1789
1788
|
} | undefined;
|
|
1790
|
-
type?: boolean;
|
|
1791
|
-
typeFrom?: import("unimport").ModuleId;
|
|
1789
|
+
type?: boolean | undefined;
|
|
1790
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
1792
1791
|
} | {
|
|
1793
1792
|
package?: string | undefined;
|
|
1794
|
-
url?: string;
|
|
1793
|
+
url?: string | undefined;
|
|
1795
1794
|
ignore?: (string | {
|
|
1796
1795
|
exec?: {} | undefined;
|
|
1797
1796
|
test?: {} | undefined;
|
|
@@ -1811,12 +1810,12 @@ export declare const fakeWxt: (overrides?: {
|
|
|
1811
1810
|
[Symbol.split]?: {} | undefined;
|
|
1812
1811
|
[Symbol.matchAll]?: {} | undefined;
|
|
1813
1812
|
} | {} | undefined)[] | undefined;
|
|
1814
|
-
cache?: boolean;
|
|
1813
|
+
cache?: boolean | undefined;
|
|
1815
1814
|
} | undefined)[] | undefined;
|
|
1816
1815
|
warn?: {} | undefined;
|
|
1817
1816
|
debugLog?: {} | undefined;
|
|
1818
1817
|
addons?: {
|
|
1819
|
-
vueTemplate?: boolean;
|
|
1818
|
+
vueTemplate?: boolean | undefined;
|
|
1820
1819
|
} | ({
|
|
1821
1820
|
transform?: {} | undefined;
|
|
1822
1821
|
declaration?: {} | undefined;
|
|
@@ -1830,16 +1829,16 @@ export declare const fakeWxt: (overrides?: {
|
|
|
1830
1829
|
dirsScanOptions?: {
|
|
1831
1830
|
filePatterns?: (string | undefined)[] | undefined;
|
|
1832
1831
|
fileFilter?: {} | undefined;
|
|
1833
|
-
types?: boolean;
|
|
1834
|
-
cwd?: string;
|
|
1832
|
+
types?: boolean | undefined;
|
|
1833
|
+
cwd?: string | undefined;
|
|
1835
1834
|
} | undefined;
|
|
1836
1835
|
resolveId?: {} | undefined;
|
|
1837
1836
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
1838
1837
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
1839
|
-
collectMeta?: boolean;
|
|
1840
|
-
injectAtEnd?: boolean;
|
|
1841
|
-
mergeExisting?: boolean;
|
|
1842
|
-
parser?: "acorn" | "regex";
|
|
1838
|
+
collectMeta?: boolean | undefined;
|
|
1839
|
+
injectAtEnd?: boolean | undefined;
|
|
1840
|
+
mergeExisting?: boolean | undefined;
|
|
1841
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
1843
1842
|
eslintrc?: {
|
|
1844
1843
|
enabled?: false | 9 | 8 | undefined;
|
|
1845
1844
|
filePath?: string | undefined;
|
|
@@ -1857,150 +1856,150 @@ export declare const fakeWxt: (overrides?: {
|
|
|
1857
1856
|
} | undefined;
|
|
1858
1857
|
runnerConfig?: {
|
|
1859
1858
|
config?: {
|
|
1860
|
-
disabled?: boolean;
|
|
1861
|
-
openConsole?: boolean;
|
|
1862
|
-
openDevtools?: boolean;
|
|
1859
|
+
disabled?: boolean | undefined;
|
|
1860
|
+
openConsole?: boolean | undefined;
|
|
1861
|
+
openDevtools?: boolean | undefined;
|
|
1863
1862
|
binaries?: {
|
|
1864
1863
|
[x: string]: string | undefined;
|
|
1865
1864
|
} | undefined;
|
|
1866
|
-
firefoxProfile?: string;
|
|
1867
|
-
chromiumProfile?: string;
|
|
1868
|
-
chromiumPref?: string;
|
|
1869
|
-
chromiumPort?: number;
|
|
1865
|
+
firefoxProfile?: string | undefined;
|
|
1866
|
+
chromiumProfile?: string | undefined;
|
|
1867
|
+
chromiumPref?: string | undefined;
|
|
1868
|
+
chromiumPort?: number | undefined;
|
|
1870
1869
|
firefoxPrefs?: {
|
|
1871
1870
|
[x: string]: string | undefined;
|
|
1872
1871
|
} | undefined;
|
|
1873
1872
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
1874
1873
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
1875
1874
|
startUrls?: (string | undefined)[] | undefined;
|
|
1876
|
-
keepProfileChanges?: boolean;
|
|
1875
|
+
keepProfileChanges?: boolean | undefined;
|
|
1877
1876
|
} | undefined;
|
|
1878
1877
|
layers?: ({
|
|
1879
1878
|
config?: {
|
|
1880
|
-
disabled?: boolean;
|
|
1881
|
-
openConsole?: boolean;
|
|
1882
|
-
openDevtools?: boolean;
|
|
1879
|
+
disabled?: boolean | undefined;
|
|
1880
|
+
openConsole?: boolean | undefined;
|
|
1881
|
+
openDevtools?: boolean | undefined;
|
|
1883
1882
|
binaries?: {
|
|
1884
1883
|
[x: string]: string | undefined;
|
|
1885
1884
|
} | undefined;
|
|
1886
|
-
firefoxProfile?: string;
|
|
1887
|
-
chromiumProfile?: string;
|
|
1888
|
-
chromiumPref?: string;
|
|
1889
|
-
chromiumPort?: number;
|
|
1885
|
+
firefoxProfile?: string | undefined;
|
|
1886
|
+
chromiumProfile?: string | undefined;
|
|
1887
|
+
chromiumPref?: string | undefined;
|
|
1888
|
+
chromiumPort?: number | undefined;
|
|
1890
1889
|
firefoxPrefs?: {
|
|
1891
1890
|
[x: string]: string | undefined;
|
|
1892
1891
|
} | undefined;
|
|
1893
1892
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
1894
1893
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
1895
1894
|
startUrls?: (string | undefined)[] | undefined;
|
|
1896
|
-
keepProfileChanges?: boolean;
|
|
1895
|
+
keepProfileChanges?: boolean | undefined;
|
|
1897
1896
|
} | null | undefined;
|
|
1898
|
-
source?: string;
|
|
1897
|
+
source?: string | undefined;
|
|
1899
1898
|
sourceOptions?: {
|
|
1900
1899
|
[x: string]: any;
|
|
1901
1900
|
meta?: {
|
|
1902
1901
|
[x: string]: any;
|
|
1903
|
-
name?: string;
|
|
1902
|
+
name?: string | undefined;
|
|
1904
1903
|
} | undefined;
|
|
1905
1904
|
overrides?: {
|
|
1906
|
-
disabled?: boolean;
|
|
1907
|
-
openConsole?: boolean;
|
|
1908
|
-
openDevtools?: boolean;
|
|
1905
|
+
disabled?: boolean | undefined;
|
|
1906
|
+
openConsole?: boolean | undefined;
|
|
1907
|
+
openDevtools?: boolean | undefined;
|
|
1909
1908
|
binaries?: {
|
|
1910
1909
|
[x: string]: string | undefined;
|
|
1911
1910
|
} | undefined;
|
|
1912
|
-
firefoxProfile?: string;
|
|
1913
|
-
chromiumProfile?: string;
|
|
1914
|
-
chromiumPref?: string;
|
|
1915
|
-
chromiumPort?: number;
|
|
1911
|
+
firefoxProfile?: string | undefined;
|
|
1912
|
+
chromiumProfile?: string | undefined;
|
|
1913
|
+
chromiumPref?: string | undefined;
|
|
1914
|
+
chromiumPort?: number | undefined;
|
|
1916
1915
|
firefoxPrefs?: {
|
|
1917
1916
|
[x: string]: string | undefined;
|
|
1918
1917
|
} | undefined;
|
|
1919
1918
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
1920
1919
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
1921
1920
|
startUrls?: (string | undefined)[] | undefined;
|
|
1922
|
-
keepProfileChanges?: boolean;
|
|
1921
|
+
keepProfileChanges?: boolean | undefined;
|
|
1923
1922
|
} | undefined;
|
|
1924
1923
|
giget?: {
|
|
1925
|
-
provider?: string;
|
|
1926
|
-
force?: boolean;
|
|
1927
|
-
forceClean?: boolean;
|
|
1928
|
-
offline?: boolean;
|
|
1929
|
-
preferOffline?: boolean;
|
|
1924
|
+
provider?: string | undefined;
|
|
1925
|
+
force?: boolean | undefined;
|
|
1926
|
+
forceClean?: boolean | undefined;
|
|
1927
|
+
offline?: boolean | undefined;
|
|
1928
|
+
preferOffline?: boolean | undefined;
|
|
1930
1929
|
providers?: {
|
|
1931
1930
|
[x: string]: {} | undefined;
|
|
1932
1931
|
} | undefined;
|
|
1933
|
-
dir?: string;
|
|
1934
|
-
registry?: false | string;
|
|
1935
|
-
cwd?: string;
|
|
1936
|
-
auth?: string;
|
|
1937
|
-
install?: boolean;
|
|
1938
|
-
silent?: boolean;
|
|
1932
|
+
dir?: string | undefined;
|
|
1933
|
+
registry?: (false | string) | undefined;
|
|
1934
|
+
cwd?: string | undefined;
|
|
1935
|
+
auth?: string | undefined;
|
|
1936
|
+
install?: boolean | undefined;
|
|
1937
|
+
silent?: boolean | undefined;
|
|
1939
1938
|
} | undefined;
|
|
1940
|
-
install?: boolean;
|
|
1941
|
-
auth?: string;
|
|
1939
|
+
install?: boolean | undefined;
|
|
1940
|
+
auth?: string | undefined;
|
|
1942
1941
|
} | undefined;
|
|
1943
1942
|
meta?: {
|
|
1944
1943
|
[x: string]: any;
|
|
1945
|
-
name?: string;
|
|
1944
|
+
name?: string | undefined;
|
|
1946
1945
|
} | undefined;
|
|
1947
|
-
cwd?: string;
|
|
1948
|
-
configFile?: string;
|
|
1946
|
+
cwd?: string | undefined;
|
|
1947
|
+
configFile?: string | undefined;
|
|
1949
1948
|
} | undefined)[] | undefined;
|
|
1950
|
-
cwd?: string;
|
|
1951
|
-
source?: string;
|
|
1949
|
+
cwd?: string | undefined;
|
|
1950
|
+
source?: string | undefined;
|
|
1952
1951
|
sourceOptions?: {
|
|
1953
1952
|
[x: string]: any;
|
|
1954
1953
|
meta?: {
|
|
1955
1954
|
[x: string]: any;
|
|
1956
|
-
name?: string;
|
|
1955
|
+
name?: string | undefined;
|
|
1957
1956
|
} | undefined;
|
|
1958
1957
|
overrides?: {
|
|
1959
|
-
disabled?: boolean;
|
|
1960
|
-
openConsole?: boolean;
|
|
1961
|
-
openDevtools?: boolean;
|
|
1958
|
+
disabled?: boolean | undefined;
|
|
1959
|
+
openConsole?: boolean | undefined;
|
|
1960
|
+
openDevtools?: boolean | undefined;
|
|
1962
1961
|
binaries?: {
|
|
1963
1962
|
[x: string]: string | undefined;
|
|
1964
1963
|
} | undefined;
|
|
1965
|
-
firefoxProfile?: string;
|
|
1966
|
-
chromiumProfile?: string;
|
|
1967
|
-
chromiumPref?: string;
|
|
1968
|
-
chromiumPort?: number;
|
|
1964
|
+
firefoxProfile?: string | undefined;
|
|
1965
|
+
chromiumProfile?: string | undefined;
|
|
1966
|
+
chromiumPref?: string | undefined;
|
|
1967
|
+
chromiumPort?: number | undefined;
|
|
1969
1968
|
firefoxPrefs?: {
|
|
1970
1969
|
[x: string]: string | undefined;
|
|
1971
1970
|
} | undefined;
|
|
1972
1971
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
1973
1972
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
1974
1973
|
startUrls?: (string | undefined)[] | undefined;
|
|
1975
|
-
keepProfileChanges?: boolean;
|
|
1974
|
+
keepProfileChanges?: boolean | undefined;
|
|
1976
1975
|
} | undefined;
|
|
1977
1976
|
giget?: {
|
|
1978
|
-
provider?: string;
|
|
1979
|
-
force?: boolean;
|
|
1980
|
-
forceClean?: boolean;
|
|
1981
|
-
offline?: boolean;
|
|
1982
|
-
preferOffline?: boolean;
|
|
1977
|
+
provider?: string | undefined;
|
|
1978
|
+
force?: boolean | undefined;
|
|
1979
|
+
forceClean?: boolean | undefined;
|
|
1980
|
+
offline?: boolean | undefined;
|
|
1981
|
+
preferOffline?: boolean | undefined;
|
|
1983
1982
|
providers?: {
|
|
1984
1983
|
[x: string]: {} | undefined;
|
|
1985
1984
|
} | undefined;
|
|
1986
|
-
dir?: string;
|
|
1987
|
-
registry?: false | string;
|
|
1988
|
-
cwd?: string;
|
|
1989
|
-
auth?: string;
|
|
1990
|
-
install?: boolean;
|
|
1991
|
-
silent?: boolean;
|
|
1985
|
+
dir?: string | undefined;
|
|
1986
|
+
registry?: (false | string) | undefined;
|
|
1987
|
+
cwd?: string | undefined;
|
|
1988
|
+
auth?: string | undefined;
|
|
1989
|
+
install?: boolean | undefined;
|
|
1990
|
+
silent?: boolean | undefined;
|
|
1992
1991
|
} | undefined;
|
|
1993
|
-
install?: boolean;
|
|
1994
|
-
auth?: string;
|
|
1992
|
+
install?: boolean | undefined;
|
|
1993
|
+
auth?: string | undefined;
|
|
1995
1994
|
} | undefined;
|
|
1996
1995
|
meta?: {
|
|
1997
1996
|
[x: string]: any;
|
|
1998
|
-
name?: string;
|
|
1997
|
+
name?: string | undefined;
|
|
1999
1998
|
} | undefined;
|
|
2000
|
-
configFile?: string;
|
|
1999
|
+
configFile?: string | undefined;
|
|
2001
2000
|
} | undefined;
|
|
2002
2001
|
zip?: {
|
|
2003
|
-
name?: string;
|
|
2002
|
+
name?: string | undefined;
|
|
2004
2003
|
artifactTemplate?: string | undefined;
|
|
2005
2004
|
sourcesTemplate?: string | undefined;
|
|
2006
2005
|
includeSources?: (string | undefined)[] | undefined;
|
|
@@ -2023,10 +2022,10 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2023
2022
|
userConfigMetadata?: {
|
|
2024
2023
|
meta?: {
|
|
2025
2024
|
[x: string]: any;
|
|
2026
|
-
name?: string;
|
|
2025
|
+
name?: string | undefined;
|
|
2027
2026
|
} | undefined;
|
|
2028
|
-
source?: string;
|
|
2029
|
-
configFile?: string;
|
|
2027
|
+
source?: string | undefined;
|
|
2028
|
+
configFile?: string | undefined;
|
|
2030
2029
|
layers?: ({
|
|
2031
2030
|
config?: {
|
|
2032
2031
|
manifest?: {
|
|
@@ -2040,70 +2039,70 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2040
2039
|
readonly [Symbol.toStringTag]?: string | undefined;
|
|
2041
2040
|
} | {} | undefined;
|
|
2042
2041
|
vite?: {} | undefined;
|
|
2043
|
-
root?: string;
|
|
2044
|
-
mode?: string;
|
|
2045
|
-
publicDir?: string;
|
|
2042
|
+
root?: string | undefined;
|
|
2043
|
+
mode?: string | undefined;
|
|
2044
|
+
publicDir?: string | undefined;
|
|
2046
2045
|
experimental?: {} | undefined;
|
|
2047
|
-
srcDir?: string;
|
|
2048
|
-
entrypointsDir?: string;
|
|
2049
|
-
modulesDir?: string;
|
|
2046
|
+
srcDir?: string | undefined;
|
|
2047
|
+
entrypointsDir?: string | undefined;
|
|
2048
|
+
modulesDir?: string | undefined;
|
|
2050
2049
|
filterEntrypoints?: (string | undefined)[] | undefined;
|
|
2051
|
-
outDir?: string;
|
|
2052
|
-
debug?: boolean;
|
|
2050
|
+
outDir?: string | undefined;
|
|
2051
|
+
debug?: boolean | undefined;
|
|
2053
2052
|
imports?: false | {
|
|
2054
2053
|
imports?: ({
|
|
2055
2054
|
name?: string | undefined;
|
|
2056
|
-
as?: import("unimport").ImportName;
|
|
2055
|
+
as?: import("unimport").ImportName | undefined;
|
|
2057
2056
|
with?: {
|
|
2058
2057
|
[x: string]: string | undefined;
|
|
2059
2058
|
} | undefined;
|
|
2060
2059
|
from?: string | undefined;
|
|
2061
|
-
priority?: number;
|
|
2062
|
-
disabled?: boolean;
|
|
2063
|
-
dtsDisabled?: boolean;
|
|
2060
|
+
priority?: number | undefined;
|
|
2061
|
+
disabled?: boolean | undefined;
|
|
2062
|
+
dtsDisabled?: boolean | undefined;
|
|
2064
2063
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2065
2064
|
meta?: {
|
|
2066
2065
|
[x: string]: any;
|
|
2067
|
-
description?: string;
|
|
2068
|
-
docsUrl?: string;
|
|
2066
|
+
description?: string | undefined;
|
|
2067
|
+
docsUrl?: string | undefined;
|
|
2069
2068
|
} | undefined;
|
|
2070
|
-
type?: boolean;
|
|
2071
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2069
|
+
type?: boolean | undefined;
|
|
2070
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2072
2071
|
} | undefined)[] | undefined;
|
|
2073
2072
|
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
2073
|
imports?: (string | any | {
|
|
2075
2074
|
meta?: {
|
|
2076
2075
|
[x: string]: any;
|
|
2077
|
-
description?: string;
|
|
2078
|
-
docsUrl?: string;
|
|
2076
|
+
description?: string | undefined;
|
|
2077
|
+
docsUrl?: string | undefined;
|
|
2079
2078
|
} | undefined;
|
|
2080
|
-
type?: boolean;
|
|
2079
|
+
type?: boolean | undefined;
|
|
2081
2080
|
name?: string | undefined;
|
|
2082
|
-
as?: import("unimport").ImportName;
|
|
2081
|
+
as?: import("unimport").ImportName | undefined;
|
|
2083
2082
|
with?: {
|
|
2084
2083
|
[x: string]: string | undefined;
|
|
2085
2084
|
} | undefined;
|
|
2086
|
-
priority?: number;
|
|
2087
|
-
disabled?: boolean;
|
|
2088
|
-
dtsDisabled?: boolean;
|
|
2085
|
+
priority?: number | undefined;
|
|
2086
|
+
disabled?: boolean | undefined;
|
|
2087
|
+
dtsDisabled?: boolean | undefined;
|
|
2089
2088
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2090
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2089
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2091
2090
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
2092
2091
|
from?: string | undefined;
|
|
2093
|
-
priority?: number;
|
|
2094
|
-
disabled?: boolean;
|
|
2095
|
-
dtsDisabled?: boolean;
|
|
2092
|
+
priority?: number | undefined;
|
|
2093
|
+
disabled?: boolean | undefined;
|
|
2094
|
+
dtsDisabled?: boolean | undefined;
|
|
2096
2095
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2097
2096
|
meta?: {
|
|
2098
2097
|
[x: string]: any;
|
|
2099
|
-
description?: string;
|
|
2100
|
-
docsUrl?: string;
|
|
2098
|
+
description?: string | undefined;
|
|
2099
|
+
docsUrl?: string | undefined;
|
|
2101
2100
|
} | undefined;
|
|
2102
|
-
type?: boolean;
|
|
2103
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2101
|
+
type?: boolean | undefined;
|
|
2102
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2104
2103
|
} | {
|
|
2105
2104
|
package?: string | undefined;
|
|
2106
|
-
url?: string;
|
|
2105
|
+
url?: string | undefined;
|
|
2107
2106
|
ignore?: (string | {
|
|
2108
2107
|
exec?: {} | undefined;
|
|
2109
2108
|
test?: {} | undefined;
|
|
@@ -2123,12 +2122,12 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2123
2122
|
[Symbol.split]?: {} | undefined;
|
|
2124
2123
|
[Symbol.matchAll]?: {} | undefined;
|
|
2125
2124
|
} | {} | undefined)[] | undefined;
|
|
2126
|
-
cache?: boolean;
|
|
2125
|
+
cache?: boolean | undefined;
|
|
2127
2126
|
} | undefined)[] | undefined;
|
|
2128
2127
|
warn?: {} | undefined;
|
|
2129
2128
|
debugLog?: {} | undefined;
|
|
2130
2129
|
addons?: {
|
|
2131
|
-
vueTemplate?: boolean;
|
|
2130
|
+
vueTemplate?: boolean | undefined;
|
|
2132
2131
|
} | ({
|
|
2133
2132
|
transform?: {} | undefined;
|
|
2134
2133
|
declaration?: {} | undefined;
|
|
@@ -2142,24 +2141,24 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2142
2141
|
dirsScanOptions?: {
|
|
2143
2142
|
filePatterns?: (string | undefined)[] | undefined;
|
|
2144
2143
|
fileFilter?: {} | undefined;
|
|
2145
|
-
types?: boolean;
|
|
2146
|
-
cwd?: string;
|
|
2144
|
+
types?: boolean | undefined;
|
|
2145
|
+
cwd?: string | undefined;
|
|
2147
2146
|
} | undefined;
|
|
2148
2147
|
resolveId?: {} | undefined;
|
|
2149
2148
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
2150
2149
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
2151
|
-
collectMeta?: boolean;
|
|
2152
|
-
injectAtEnd?: boolean;
|
|
2153
|
-
mergeExisting?: boolean;
|
|
2154
|
-
parser?: "acorn" | "regex";
|
|
2150
|
+
collectMeta?: boolean | undefined;
|
|
2151
|
+
injectAtEnd?: boolean | undefined;
|
|
2152
|
+
mergeExisting?: boolean | undefined;
|
|
2153
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
2155
2154
|
eslintrc?: {
|
|
2156
|
-
enabled?: false | true | "auto" | 8 | 9;
|
|
2157
|
-
filePath?: string;
|
|
2158
|
-
globalsPropValue?: import("../../../types").EslintGlobalsPropValue;
|
|
2155
|
+
enabled?: (false | true | "auto" | 8 | 9) | undefined;
|
|
2156
|
+
filePath?: string | undefined;
|
|
2157
|
+
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
2159
2158
|
} | undefined;
|
|
2160
2159
|
} | undefined;
|
|
2161
|
-
browser?: import("../../../types").TargetBrowser;
|
|
2162
|
-
manifestVersion?: import("../../../types").TargetManifestVersion;
|
|
2160
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
2161
|
+
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
2163
2162
|
logger?: {
|
|
2164
2163
|
debug?: {} | undefined;
|
|
2165
2164
|
log?: {} | undefined;
|
|
@@ -2178,53 +2177,53 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2178
2177
|
} | undefined;
|
|
2179
2178
|
} | undefined;
|
|
2180
2179
|
runner?: {
|
|
2181
|
-
disabled?: boolean;
|
|
2182
|
-
openConsole?: boolean;
|
|
2183
|
-
openDevtools?: boolean;
|
|
2180
|
+
disabled?: boolean | undefined;
|
|
2181
|
+
openConsole?: boolean | undefined;
|
|
2182
|
+
openDevtools?: boolean | undefined;
|
|
2184
2183
|
binaries?: {
|
|
2185
2184
|
[x: string]: string | undefined;
|
|
2186
2185
|
} | undefined;
|
|
2187
|
-
firefoxProfile?: string;
|
|
2188
|
-
chromiumProfile?: string;
|
|
2189
|
-
chromiumPref?: string;
|
|
2190
|
-
chromiumPort?: number;
|
|
2186
|
+
firefoxProfile?: string | undefined;
|
|
2187
|
+
chromiumProfile?: string | undefined;
|
|
2188
|
+
chromiumPref?: string | undefined;
|
|
2189
|
+
chromiumPort?: number | undefined;
|
|
2191
2190
|
firefoxPrefs?: {
|
|
2192
2191
|
[x: string]: string | undefined;
|
|
2193
2192
|
} | undefined;
|
|
2194
2193
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
2195
2194
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
2196
2195
|
startUrls?: (string | undefined)[] | undefined;
|
|
2197
|
-
keepProfileChanges?: boolean;
|
|
2196
|
+
keepProfileChanges?: boolean | undefined;
|
|
2198
2197
|
} | undefined;
|
|
2199
2198
|
zip?: {
|
|
2200
|
-
artifactTemplate?: string;
|
|
2201
|
-
sourcesTemplate?: string;
|
|
2202
|
-
name?: string;
|
|
2203
|
-
sourcesRoot?: string;
|
|
2199
|
+
artifactTemplate?: string | undefined;
|
|
2200
|
+
sourcesTemplate?: string | undefined;
|
|
2201
|
+
name?: string | undefined;
|
|
2202
|
+
sourcesRoot?: string | undefined;
|
|
2204
2203
|
includeSources?: (string | undefined)[] | undefined;
|
|
2205
2204
|
excludeSources?: (string | undefined)[] | undefined;
|
|
2206
2205
|
downloadPackages?: (string | undefined)[] | undefined;
|
|
2207
|
-
compressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
2206
|
+
compressionLevel?: (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9) | undefined;
|
|
2208
2207
|
} | undefined;
|
|
2209
2208
|
transformManifest?: {} | undefined;
|
|
2210
2209
|
analysis?: {
|
|
2211
|
-
enabled?: boolean;
|
|
2212
|
-
open?: boolean;
|
|
2210
|
+
enabled?: boolean | undefined;
|
|
2211
|
+
open?: boolean | undefined;
|
|
2213
2212
|
template?: import("@aklinker1/rollup-plugin-visualizer").PluginVisualizerOptions["template"];
|
|
2214
|
-
outputFile?: string;
|
|
2215
|
-
keepArtifacts?: boolean;
|
|
2213
|
+
outputFile?: string | undefined;
|
|
2214
|
+
keepArtifacts?: boolean | undefined;
|
|
2216
2215
|
} | undefined;
|
|
2217
2216
|
alias?: {
|
|
2218
2217
|
[x: string]: string | undefined;
|
|
2219
2218
|
} | undefined;
|
|
2220
|
-
extensionApi?: "webextension-polyfill" | "chrome";
|
|
2221
|
-
entrypointLoader?: "vite-node" | "jiti";
|
|
2219
|
+
extensionApi?: ("webextension-polyfill" | "chrome") | undefined;
|
|
2220
|
+
entrypointLoader?: ("vite-node" | "jiti") | undefined;
|
|
2222
2221
|
dev?: {
|
|
2223
2222
|
server?: {
|
|
2224
|
-
port?: number;
|
|
2225
|
-
hostname?: string;
|
|
2223
|
+
port?: number | undefined;
|
|
2224
|
+
hostname?: string | undefined;
|
|
2226
2225
|
} | undefined;
|
|
2227
|
-
reloadCommand?: string | false;
|
|
2226
|
+
reloadCommand?: (string | false) | undefined;
|
|
2228
2227
|
} | undefined;
|
|
2229
2228
|
hooks?: {
|
|
2230
2229
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -2343,12 +2342,12 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2343
2342
|
} | undefined;
|
|
2344
2343
|
modules?: (string | undefined)[] | undefined;
|
|
2345
2344
|
} | null | undefined;
|
|
2346
|
-
source?: string;
|
|
2345
|
+
source?: string | undefined;
|
|
2347
2346
|
sourceOptions?: {
|
|
2348
2347
|
[x: string]: any;
|
|
2349
2348
|
meta?: {
|
|
2350
2349
|
[x: string]: any;
|
|
2351
|
-
name?: string;
|
|
2350
|
+
name?: string | undefined;
|
|
2352
2351
|
} | undefined;
|
|
2353
2352
|
overrides?: {
|
|
2354
2353
|
manifest?: {
|
|
@@ -2362,70 +2361,70 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2362
2361
|
readonly [Symbol.toStringTag]?: string | undefined;
|
|
2363
2362
|
} | {} | undefined;
|
|
2364
2363
|
vite?: {} | undefined;
|
|
2365
|
-
root?: string;
|
|
2366
|
-
mode?: string;
|
|
2367
|
-
publicDir?: string;
|
|
2364
|
+
root?: string | undefined;
|
|
2365
|
+
mode?: string | undefined;
|
|
2366
|
+
publicDir?: string | undefined;
|
|
2368
2367
|
experimental?: {} | undefined;
|
|
2369
|
-
srcDir?: string;
|
|
2370
|
-
entrypointsDir?: string;
|
|
2371
|
-
modulesDir?: string;
|
|
2368
|
+
srcDir?: string | undefined;
|
|
2369
|
+
entrypointsDir?: string | undefined;
|
|
2370
|
+
modulesDir?: string | undefined;
|
|
2372
2371
|
filterEntrypoints?: (string | undefined)[] | undefined;
|
|
2373
|
-
outDir?: string;
|
|
2374
|
-
debug?: boolean;
|
|
2372
|
+
outDir?: string | undefined;
|
|
2373
|
+
debug?: boolean | undefined;
|
|
2375
2374
|
imports?: false | {
|
|
2376
2375
|
imports?: ({
|
|
2377
2376
|
name?: string | undefined;
|
|
2378
|
-
as?: import("unimport").ImportName;
|
|
2377
|
+
as?: import("unimport").ImportName | undefined;
|
|
2379
2378
|
with?: {
|
|
2380
2379
|
[x: string]: string | undefined;
|
|
2381
2380
|
} | undefined;
|
|
2382
2381
|
from?: string | undefined;
|
|
2383
|
-
priority?: number;
|
|
2384
|
-
disabled?: boolean;
|
|
2385
|
-
dtsDisabled?: boolean;
|
|
2382
|
+
priority?: number | undefined;
|
|
2383
|
+
disabled?: boolean | undefined;
|
|
2384
|
+
dtsDisabled?: boolean | undefined;
|
|
2386
2385
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2387
2386
|
meta?: {
|
|
2388
2387
|
[x: string]: any;
|
|
2389
|
-
description?: string;
|
|
2390
|
-
docsUrl?: string;
|
|
2388
|
+
description?: string | undefined;
|
|
2389
|
+
docsUrl?: string | undefined;
|
|
2391
2390
|
} | undefined;
|
|
2392
|
-
type?: boolean;
|
|
2393
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2391
|
+
type?: boolean | undefined;
|
|
2392
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2394
2393
|
} | undefined)[] | undefined;
|
|
2395
2394
|
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
2395
|
imports?: (string | any | {
|
|
2397
2396
|
meta?: {
|
|
2398
2397
|
[x: string]: any;
|
|
2399
|
-
description?: string;
|
|
2400
|
-
docsUrl?: string;
|
|
2398
|
+
description?: string | undefined;
|
|
2399
|
+
docsUrl?: string | undefined;
|
|
2401
2400
|
} | undefined;
|
|
2402
|
-
type?: boolean;
|
|
2401
|
+
type?: boolean | undefined;
|
|
2403
2402
|
name?: string | undefined;
|
|
2404
|
-
as?: import("unimport").ImportName;
|
|
2403
|
+
as?: import("unimport").ImportName | undefined;
|
|
2405
2404
|
with?: {
|
|
2406
2405
|
[x: string]: string | undefined;
|
|
2407
2406
|
} | undefined;
|
|
2408
|
-
priority?: number;
|
|
2409
|
-
disabled?: boolean;
|
|
2410
|
-
dtsDisabled?: boolean;
|
|
2407
|
+
priority?: number | undefined;
|
|
2408
|
+
disabled?: boolean | undefined;
|
|
2409
|
+
dtsDisabled?: boolean | undefined;
|
|
2411
2410
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2412
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2411
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2413
2412
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
2414
2413
|
from?: string | undefined;
|
|
2415
|
-
priority?: number;
|
|
2416
|
-
disabled?: boolean;
|
|
2417
|
-
dtsDisabled?: boolean;
|
|
2414
|
+
priority?: number | undefined;
|
|
2415
|
+
disabled?: boolean | undefined;
|
|
2416
|
+
dtsDisabled?: boolean | undefined;
|
|
2418
2417
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2419
2418
|
meta?: {
|
|
2420
2419
|
[x: string]: any;
|
|
2421
|
-
description?: string;
|
|
2422
|
-
docsUrl?: string;
|
|
2420
|
+
description?: string | undefined;
|
|
2421
|
+
docsUrl?: string | undefined;
|
|
2423
2422
|
} | undefined;
|
|
2424
|
-
type?: boolean;
|
|
2425
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2423
|
+
type?: boolean | undefined;
|
|
2424
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2426
2425
|
} | {
|
|
2427
2426
|
package?: string | undefined;
|
|
2428
|
-
url?: string;
|
|
2427
|
+
url?: string | undefined;
|
|
2429
2428
|
ignore?: (string | {
|
|
2430
2429
|
exec?: {} | undefined;
|
|
2431
2430
|
test?: {} | undefined;
|
|
@@ -2445,12 +2444,12 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2445
2444
|
[Symbol.split]?: {} | undefined;
|
|
2446
2445
|
[Symbol.matchAll]?: {} | undefined;
|
|
2447
2446
|
} | {} | undefined)[] | undefined;
|
|
2448
|
-
cache?: boolean;
|
|
2447
|
+
cache?: boolean | undefined;
|
|
2449
2448
|
} | undefined)[] | undefined;
|
|
2450
2449
|
warn?: {} | undefined;
|
|
2451
2450
|
debugLog?: {} | undefined;
|
|
2452
2451
|
addons?: {
|
|
2453
|
-
vueTemplate?: boolean;
|
|
2452
|
+
vueTemplate?: boolean | undefined;
|
|
2454
2453
|
} | ({
|
|
2455
2454
|
transform?: {} | undefined;
|
|
2456
2455
|
declaration?: {} | undefined;
|
|
@@ -2464,24 +2463,24 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2464
2463
|
dirsScanOptions?: {
|
|
2465
2464
|
filePatterns?: (string | undefined)[] | undefined;
|
|
2466
2465
|
fileFilter?: {} | undefined;
|
|
2467
|
-
types?: boolean;
|
|
2468
|
-
cwd?: string;
|
|
2466
|
+
types?: boolean | undefined;
|
|
2467
|
+
cwd?: string | undefined;
|
|
2469
2468
|
} | undefined;
|
|
2470
2469
|
resolveId?: {} | undefined;
|
|
2471
2470
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
2472
2471
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
2473
|
-
collectMeta?: boolean;
|
|
2474
|
-
injectAtEnd?: boolean;
|
|
2475
|
-
mergeExisting?: boolean;
|
|
2476
|
-
parser?: "acorn" | "regex";
|
|
2472
|
+
collectMeta?: boolean | undefined;
|
|
2473
|
+
injectAtEnd?: boolean | undefined;
|
|
2474
|
+
mergeExisting?: boolean | undefined;
|
|
2475
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
2477
2476
|
eslintrc?: {
|
|
2478
|
-
enabled?: false | true | "auto" | 8 | 9;
|
|
2479
|
-
filePath?: string;
|
|
2480
|
-
globalsPropValue?: import("../../../types").EslintGlobalsPropValue;
|
|
2477
|
+
enabled?: (false | true | "auto" | 8 | 9) | undefined;
|
|
2478
|
+
filePath?: string | undefined;
|
|
2479
|
+
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
2481
2480
|
} | undefined;
|
|
2482
2481
|
} | undefined;
|
|
2483
|
-
browser?: import("../../../types").TargetBrowser;
|
|
2484
|
-
manifestVersion?: import("../../../types").TargetManifestVersion;
|
|
2482
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
2483
|
+
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
2485
2484
|
logger?: {
|
|
2486
2485
|
debug?: {} | undefined;
|
|
2487
2486
|
log?: {} | undefined;
|
|
@@ -2500,53 +2499,53 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2500
2499
|
} | undefined;
|
|
2501
2500
|
} | undefined;
|
|
2502
2501
|
runner?: {
|
|
2503
|
-
disabled?: boolean;
|
|
2504
|
-
openConsole?: boolean;
|
|
2505
|
-
openDevtools?: boolean;
|
|
2502
|
+
disabled?: boolean | undefined;
|
|
2503
|
+
openConsole?: boolean | undefined;
|
|
2504
|
+
openDevtools?: boolean | undefined;
|
|
2506
2505
|
binaries?: {
|
|
2507
2506
|
[x: string]: string | undefined;
|
|
2508
2507
|
} | undefined;
|
|
2509
|
-
firefoxProfile?: string;
|
|
2510
|
-
chromiumProfile?: string;
|
|
2511
|
-
chromiumPref?: string;
|
|
2512
|
-
chromiumPort?: number;
|
|
2508
|
+
firefoxProfile?: string | undefined;
|
|
2509
|
+
chromiumProfile?: string | undefined;
|
|
2510
|
+
chromiumPref?: string | undefined;
|
|
2511
|
+
chromiumPort?: number | undefined;
|
|
2513
2512
|
firefoxPrefs?: {
|
|
2514
2513
|
[x: string]: string | undefined;
|
|
2515
2514
|
} | undefined;
|
|
2516
2515
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
2517
2516
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
2518
2517
|
startUrls?: (string | undefined)[] | undefined;
|
|
2519
|
-
keepProfileChanges?: boolean;
|
|
2518
|
+
keepProfileChanges?: boolean | undefined;
|
|
2520
2519
|
} | undefined;
|
|
2521
2520
|
zip?: {
|
|
2522
|
-
artifactTemplate?: string;
|
|
2523
|
-
sourcesTemplate?: string;
|
|
2524
|
-
name?: string;
|
|
2525
|
-
sourcesRoot?: string;
|
|
2521
|
+
artifactTemplate?: string | undefined;
|
|
2522
|
+
sourcesTemplate?: string | undefined;
|
|
2523
|
+
name?: string | undefined;
|
|
2524
|
+
sourcesRoot?: string | undefined;
|
|
2526
2525
|
includeSources?: (string | undefined)[] | undefined;
|
|
2527
2526
|
excludeSources?: (string | undefined)[] | undefined;
|
|
2528
2527
|
downloadPackages?: (string | undefined)[] | undefined;
|
|
2529
|
-
compressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
2528
|
+
compressionLevel?: (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9) | undefined;
|
|
2530
2529
|
} | undefined;
|
|
2531
2530
|
transformManifest?: {} | undefined;
|
|
2532
2531
|
analysis?: {
|
|
2533
|
-
enabled?: boolean;
|
|
2534
|
-
open?: boolean;
|
|
2532
|
+
enabled?: boolean | undefined;
|
|
2533
|
+
open?: boolean | undefined;
|
|
2535
2534
|
template?: import("@aklinker1/rollup-plugin-visualizer").PluginVisualizerOptions["template"];
|
|
2536
|
-
outputFile?: string;
|
|
2537
|
-
keepArtifacts?: boolean;
|
|
2535
|
+
outputFile?: string | undefined;
|
|
2536
|
+
keepArtifacts?: boolean | undefined;
|
|
2538
2537
|
} | undefined;
|
|
2539
2538
|
alias?: {
|
|
2540
2539
|
[x: string]: string | undefined;
|
|
2541
2540
|
} | undefined;
|
|
2542
|
-
extensionApi?: "webextension-polyfill" | "chrome";
|
|
2543
|
-
entrypointLoader?: "vite-node" | "jiti";
|
|
2541
|
+
extensionApi?: ("webextension-polyfill" | "chrome") | undefined;
|
|
2542
|
+
entrypointLoader?: ("vite-node" | "jiti") | undefined;
|
|
2544
2543
|
dev?: {
|
|
2545
2544
|
server?: {
|
|
2546
|
-
port?: number;
|
|
2547
|
-
hostname?: string;
|
|
2545
|
+
port?: number | undefined;
|
|
2546
|
+
hostname?: string | undefined;
|
|
2548
2547
|
} | undefined;
|
|
2549
|
-
reloadCommand?: string | false;
|
|
2548
|
+
reloadCommand?: (string | false) | undefined;
|
|
2550
2549
|
} | undefined;
|
|
2551
2550
|
hooks?: {
|
|
2552
2551
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -2666,37 +2665,37 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2666
2665
|
modules?: (string | undefined)[] | undefined;
|
|
2667
2666
|
} | undefined;
|
|
2668
2667
|
giget?: {
|
|
2669
|
-
provider?: string;
|
|
2670
|
-
force?: boolean;
|
|
2671
|
-
forceClean?: boolean;
|
|
2672
|
-
offline?: boolean;
|
|
2673
|
-
preferOffline?: boolean;
|
|
2668
|
+
provider?: string | undefined;
|
|
2669
|
+
force?: boolean | undefined;
|
|
2670
|
+
forceClean?: boolean | undefined;
|
|
2671
|
+
offline?: boolean | undefined;
|
|
2672
|
+
preferOffline?: boolean | undefined;
|
|
2674
2673
|
providers?: {
|
|
2675
2674
|
[x: string]: {} | undefined;
|
|
2676
2675
|
} | undefined;
|
|
2677
|
-
dir?: string;
|
|
2678
|
-
registry?: false | string;
|
|
2679
|
-
cwd?: string;
|
|
2680
|
-
auth?: string;
|
|
2681
|
-
install?: boolean;
|
|
2682
|
-
silent?: boolean;
|
|
2676
|
+
dir?: string | undefined;
|
|
2677
|
+
registry?: (false | string) | undefined;
|
|
2678
|
+
cwd?: string | undefined;
|
|
2679
|
+
auth?: string | undefined;
|
|
2680
|
+
install?: boolean | undefined;
|
|
2681
|
+
silent?: boolean | undefined;
|
|
2683
2682
|
} | undefined;
|
|
2684
|
-
install?: boolean;
|
|
2685
|
-
auth?: string;
|
|
2683
|
+
install?: boolean | undefined;
|
|
2684
|
+
auth?: string | undefined;
|
|
2686
2685
|
} | undefined;
|
|
2687
2686
|
meta?: {
|
|
2688
2687
|
[x: string]: any;
|
|
2689
|
-
name?: string;
|
|
2688
|
+
name?: string | undefined;
|
|
2690
2689
|
} | undefined;
|
|
2691
|
-
cwd?: string;
|
|
2692
|
-
configFile?: string;
|
|
2690
|
+
cwd?: string | undefined;
|
|
2691
|
+
configFile?: string | undefined;
|
|
2693
2692
|
} | undefined)[] | undefined;
|
|
2694
|
-
cwd?: string;
|
|
2693
|
+
cwd?: string | undefined;
|
|
2695
2694
|
sourceOptions?: {
|
|
2696
2695
|
[x: string]: any;
|
|
2697
2696
|
meta?: {
|
|
2698
2697
|
[x: string]: any;
|
|
2699
|
-
name?: string;
|
|
2698
|
+
name?: string | undefined;
|
|
2700
2699
|
} | undefined;
|
|
2701
2700
|
overrides?: {
|
|
2702
2701
|
manifest?: {
|
|
@@ -2710,70 +2709,70 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2710
2709
|
readonly [Symbol.toStringTag]?: string | undefined;
|
|
2711
2710
|
} | {} | undefined;
|
|
2712
2711
|
vite?: {} | undefined;
|
|
2713
|
-
root?: string;
|
|
2714
|
-
mode?: string;
|
|
2715
|
-
publicDir?: string;
|
|
2712
|
+
root?: string | undefined;
|
|
2713
|
+
mode?: string | undefined;
|
|
2714
|
+
publicDir?: string | undefined;
|
|
2716
2715
|
experimental?: {} | undefined;
|
|
2717
|
-
srcDir?: string;
|
|
2718
|
-
entrypointsDir?: string;
|
|
2719
|
-
modulesDir?: string;
|
|
2716
|
+
srcDir?: string | undefined;
|
|
2717
|
+
entrypointsDir?: string | undefined;
|
|
2718
|
+
modulesDir?: string | undefined;
|
|
2720
2719
|
filterEntrypoints?: (string | undefined)[] | undefined;
|
|
2721
|
-
outDir?: string;
|
|
2722
|
-
debug?: boolean;
|
|
2720
|
+
outDir?: string | undefined;
|
|
2721
|
+
debug?: boolean | undefined;
|
|
2723
2722
|
imports?: false | {
|
|
2724
2723
|
imports?: ({
|
|
2725
2724
|
name?: string | undefined;
|
|
2726
|
-
as?: import("unimport").ImportName;
|
|
2725
|
+
as?: import("unimport").ImportName | undefined;
|
|
2727
2726
|
with?: {
|
|
2728
2727
|
[x: string]: string | undefined;
|
|
2729
2728
|
} | undefined;
|
|
2730
2729
|
from?: string | undefined;
|
|
2731
|
-
priority?: number;
|
|
2732
|
-
disabled?: boolean;
|
|
2733
|
-
dtsDisabled?: boolean;
|
|
2730
|
+
priority?: number | undefined;
|
|
2731
|
+
disabled?: boolean | undefined;
|
|
2732
|
+
dtsDisabled?: boolean | undefined;
|
|
2734
2733
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2735
2734
|
meta?: {
|
|
2736
2735
|
[x: string]: any;
|
|
2737
|
-
description?: string;
|
|
2738
|
-
docsUrl?: string;
|
|
2736
|
+
description?: string | undefined;
|
|
2737
|
+
docsUrl?: string | undefined;
|
|
2739
2738
|
} | undefined;
|
|
2740
|
-
type?: boolean;
|
|
2741
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2739
|
+
type?: boolean | undefined;
|
|
2740
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2742
2741
|
} | undefined)[] | undefined;
|
|
2743
2742
|
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
2743
|
imports?: (string | any | {
|
|
2745
2744
|
meta?: {
|
|
2746
2745
|
[x: string]: any;
|
|
2747
|
-
description?: string;
|
|
2748
|
-
docsUrl?: string;
|
|
2746
|
+
description?: string | undefined;
|
|
2747
|
+
docsUrl?: string | undefined;
|
|
2749
2748
|
} | undefined;
|
|
2750
|
-
type?: boolean;
|
|
2749
|
+
type?: boolean | undefined;
|
|
2751
2750
|
name?: string | undefined;
|
|
2752
|
-
as?: import("unimport").ImportName;
|
|
2751
|
+
as?: import("unimport").ImportName | undefined;
|
|
2753
2752
|
with?: {
|
|
2754
2753
|
[x: string]: string | undefined;
|
|
2755
2754
|
} | undefined;
|
|
2756
|
-
priority?: number;
|
|
2757
|
-
disabled?: boolean;
|
|
2758
|
-
dtsDisabled?: boolean;
|
|
2755
|
+
priority?: number | undefined;
|
|
2756
|
+
disabled?: boolean | undefined;
|
|
2757
|
+
dtsDisabled?: boolean | undefined;
|
|
2759
2758
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2760
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2759
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2761
2760
|
} | [name?: string | undefined, as?: string | undefined, from?: string | undefined] | undefined)[] | undefined;
|
|
2762
2761
|
from?: string | undefined;
|
|
2763
|
-
priority?: number;
|
|
2764
|
-
disabled?: boolean;
|
|
2765
|
-
dtsDisabled?: boolean;
|
|
2762
|
+
priority?: number | undefined;
|
|
2763
|
+
disabled?: boolean | undefined;
|
|
2764
|
+
dtsDisabled?: boolean | undefined;
|
|
2766
2765
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
2767
2766
|
meta?: {
|
|
2768
2767
|
[x: string]: any;
|
|
2769
|
-
description?: string;
|
|
2770
|
-
docsUrl?: string;
|
|
2768
|
+
description?: string | undefined;
|
|
2769
|
+
docsUrl?: string | undefined;
|
|
2771
2770
|
} | undefined;
|
|
2772
|
-
type?: boolean;
|
|
2773
|
-
typeFrom?: import("unimport").ModuleId;
|
|
2771
|
+
type?: boolean | undefined;
|
|
2772
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
2774
2773
|
} | {
|
|
2775
2774
|
package?: string | undefined;
|
|
2776
|
-
url?: string;
|
|
2775
|
+
url?: string | undefined;
|
|
2777
2776
|
ignore?: (string | {
|
|
2778
2777
|
exec?: {} | undefined;
|
|
2779
2778
|
test?: {} | undefined;
|
|
@@ -2793,12 +2792,12 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2793
2792
|
[Symbol.split]?: {} | undefined;
|
|
2794
2793
|
[Symbol.matchAll]?: {} | undefined;
|
|
2795
2794
|
} | {} | undefined)[] | undefined;
|
|
2796
|
-
cache?: boolean;
|
|
2795
|
+
cache?: boolean | undefined;
|
|
2797
2796
|
} | undefined)[] | undefined;
|
|
2798
2797
|
warn?: {} | undefined;
|
|
2799
2798
|
debugLog?: {} | undefined;
|
|
2800
2799
|
addons?: {
|
|
2801
|
-
vueTemplate?: boolean;
|
|
2800
|
+
vueTemplate?: boolean | undefined;
|
|
2802
2801
|
} | ({
|
|
2803
2802
|
transform?: {} | undefined;
|
|
2804
2803
|
declaration?: {} | undefined;
|
|
@@ -2812,24 +2811,24 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2812
2811
|
dirsScanOptions?: {
|
|
2813
2812
|
filePatterns?: (string | undefined)[] | undefined;
|
|
2814
2813
|
fileFilter?: {} | undefined;
|
|
2815
|
-
types?: boolean;
|
|
2816
|
-
cwd?: string;
|
|
2814
|
+
types?: boolean | undefined;
|
|
2815
|
+
cwd?: string | undefined;
|
|
2817
2816
|
} | undefined;
|
|
2818
2817
|
resolveId?: {} | undefined;
|
|
2819
2818
|
commentsDisable?: (string | undefined)[] | undefined;
|
|
2820
2819
|
commentsDebug?: (string | undefined)[] | undefined;
|
|
2821
|
-
collectMeta?: boolean;
|
|
2822
|
-
injectAtEnd?: boolean;
|
|
2823
|
-
mergeExisting?: boolean;
|
|
2824
|
-
parser?: "acorn" | "regex";
|
|
2820
|
+
collectMeta?: boolean | undefined;
|
|
2821
|
+
injectAtEnd?: boolean | undefined;
|
|
2822
|
+
mergeExisting?: boolean | undefined;
|
|
2823
|
+
parser?: ("acorn" | "regex") | undefined;
|
|
2825
2824
|
eslintrc?: {
|
|
2826
|
-
enabled?: false | true | "auto" | 8 | 9;
|
|
2827
|
-
filePath?: string;
|
|
2828
|
-
globalsPropValue?: import("../../../types").EslintGlobalsPropValue;
|
|
2825
|
+
enabled?: (false | true | "auto" | 8 | 9) | undefined;
|
|
2826
|
+
filePath?: string | undefined;
|
|
2827
|
+
globalsPropValue?: import("../../../types").EslintGlobalsPropValue | undefined;
|
|
2829
2828
|
} | undefined;
|
|
2830
2829
|
} | undefined;
|
|
2831
|
-
browser?: import("../../../types").TargetBrowser;
|
|
2832
|
-
manifestVersion?: import("../../../types").TargetManifestVersion;
|
|
2830
|
+
browser?: import("../../../types").TargetBrowser | undefined;
|
|
2831
|
+
manifestVersion?: import("../../../types").TargetManifestVersion | undefined;
|
|
2833
2832
|
logger?: {
|
|
2834
2833
|
debug?: {} | undefined;
|
|
2835
2834
|
log?: {} | undefined;
|
|
@@ -2848,53 +2847,53 @@ export declare const fakeWxt: (overrides?: {
|
|
|
2848
2847
|
} | undefined;
|
|
2849
2848
|
} | undefined;
|
|
2850
2849
|
runner?: {
|
|
2851
|
-
disabled?: boolean;
|
|
2852
|
-
openConsole?: boolean;
|
|
2853
|
-
openDevtools?: boolean;
|
|
2850
|
+
disabled?: boolean | undefined;
|
|
2851
|
+
openConsole?: boolean | undefined;
|
|
2852
|
+
openDevtools?: boolean | undefined;
|
|
2854
2853
|
binaries?: {
|
|
2855
2854
|
[x: string]: string | undefined;
|
|
2856
2855
|
} | undefined;
|
|
2857
|
-
firefoxProfile?: string;
|
|
2858
|
-
chromiumProfile?: string;
|
|
2859
|
-
chromiumPref?: string;
|
|
2860
|
-
chromiumPort?: number;
|
|
2856
|
+
firefoxProfile?: string | undefined;
|
|
2857
|
+
chromiumProfile?: string | undefined;
|
|
2858
|
+
chromiumPref?: string | undefined;
|
|
2859
|
+
chromiumPort?: number | undefined;
|
|
2861
2860
|
firefoxPrefs?: {
|
|
2862
2861
|
[x: string]: string | undefined;
|
|
2863
2862
|
} | undefined;
|
|
2864
2863
|
firefoxArgs?: (string | undefined)[] | undefined;
|
|
2865
2864
|
chromiumArgs?: (string | undefined)[] | undefined;
|
|
2866
2865
|
startUrls?: (string | undefined)[] | undefined;
|
|
2867
|
-
keepProfileChanges?: boolean;
|
|
2866
|
+
keepProfileChanges?: boolean | undefined;
|
|
2868
2867
|
} | undefined;
|
|
2869
2868
|
zip?: {
|
|
2870
|
-
artifactTemplate?: string;
|
|
2871
|
-
sourcesTemplate?: string;
|
|
2872
|
-
name?: string;
|
|
2873
|
-
sourcesRoot?: string;
|
|
2869
|
+
artifactTemplate?: string | undefined;
|
|
2870
|
+
sourcesTemplate?: string | undefined;
|
|
2871
|
+
name?: string | undefined;
|
|
2872
|
+
sourcesRoot?: string | undefined;
|
|
2874
2873
|
includeSources?: (string | undefined)[] | undefined;
|
|
2875
2874
|
excludeSources?: (string | undefined)[] | undefined;
|
|
2876
2875
|
downloadPackages?: (string | undefined)[] | undefined;
|
|
2877
|
-
compressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
2876
|
+
compressionLevel?: (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9) | undefined;
|
|
2878
2877
|
} | undefined;
|
|
2879
2878
|
transformManifest?: {} | undefined;
|
|
2880
2879
|
analysis?: {
|
|
2881
|
-
enabled?: boolean;
|
|
2882
|
-
open?: boolean;
|
|
2880
|
+
enabled?: boolean | undefined;
|
|
2881
|
+
open?: boolean | undefined;
|
|
2883
2882
|
template?: import("@aklinker1/rollup-plugin-visualizer").PluginVisualizerOptions["template"];
|
|
2884
|
-
outputFile?: string;
|
|
2885
|
-
keepArtifacts?: boolean;
|
|
2883
|
+
outputFile?: string | undefined;
|
|
2884
|
+
keepArtifacts?: boolean | undefined;
|
|
2886
2885
|
} | undefined;
|
|
2887
2886
|
alias?: {
|
|
2888
2887
|
[x: string]: string | undefined;
|
|
2889
2888
|
} | undefined;
|
|
2890
|
-
extensionApi?: "webextension-polyfill" | "chrome";
|
|
2891
|
-
entrypointLoader?: "vite-node" | "jiti";
|
|
2889
|
+
extensionApi?: ("webextension-polyfill" | "chrome") | undefined;
|
|
2890
|
+
entrypointLoader?: ("vite-node" | "jiti") | undefined;
|
|
2892
2891
|
dev?: {
|
|
2893
2892
|
server?: {
|
|
2894
|
-
port?: number;
|
|
2895
|
-
hostname?: string;
|
|
2893
|
+
port?: number | undefined;
|
|
2894
|
+
hostname?: string | undefined;
|
|
2896
2895
|
} | undefined;
|
|
2897
|
-
reloadCommand?: string | false;
|
|
2896
|
+
reloadCommand?: (string | false) | undefined;
|
|
2898
2897
|
} | undefined;
|
|
2899
2898
|
hooks?: {
|
|
2900
2899
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -3014,30 +3013,29 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3014
3013
|
modules?: (string | undefined)[] | undefined;
|
|
3015
3014
|
} | undefined;
|
|
3016
3015
|
giget?: {
|
|
3017
|
-
provider?: string;
|
|
3018
|
-
force?: boolean;
|
|
3019
|
-
forceClean?: boolean;
|
|
3020
|
-
offline?: boolean;
|
|
3021
|
-
preferOffline?: boolean;
|
|
3016
|
+
provider?: string | undefined;
|
|
3017
|
+
force?: boolean | undefined;
|
|
3018
|
+
forceClean?: boolean | undefined;
|
|
3019
|
+
offline?: boolean | undefined;
|
|
3020
|
+
preferOffline?: boolean | undefined;
|
|
3022
3021
|
providers?: {
|
|
3023
3022
|
[x: string]: {} | undefined;
|
|
3024
3023
|
} | undefined;
|
|
3025
|
-
dir?: string;
|
|
3026
|
-
registry?: false | string;
|
|
3027
|
-
cwd?: string;
|
|
3028
|
-
auth?: string;
|
|
3029
|
-
install?: boolean;
|
|
3030
|
-
silent?: boolean;
|
|
3024
|
+
dir?: string | undefined;
|
|
3025
|
+
registry?: (false | string) | undefined;
|
|
3026
|
+
cwd?: string | undefined;
|
|
3027
|
+
auth?: string | undefined;
|
|
3028
|
+
install?: boolean | undefined;
|
|
3029
|
+
silent?: boolean | undefined;
|
|
3031
3030
|
} | undefined;
|
|
3032
|
-
install?: boolean;
|
|
3033
|
-
auth?: string;
|
|
3031
|
+
install?: boolean | undefined;
|
|
3032
|
+
auth?: string | undefined;
|
|
3034
3033
|
} | undefined;
|
|
3035
3034
|
} | undefined;
|
|
3036
3035
|
alias?: {
|
|
3037
3036
|
[x: string]: string | undefined;
|
|
3038
3037
|
} | undefined;
|
|
3039
3038
|
extensionApi?: "webextension-polyfill" | "chrome" | undefined;
|
|
3040
|
-
browserModule?: "wxt/browser" | "wxt/browser/chrome" | undefined;
|
|
3041
3039
|
entrypointLoader?: "vite-node" | "jiti" | undefined;
|
|
3042
3040
|
experimental?: {} | undefined;
|
|
3043
3041
|
dev?: {
|
|
@@ -3163,26 +3161,26 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3163
3161
|
ready?: {} | undefined;
|
|
3164
3162
|
} | undefined;
|
|
3165
3163
|
builtinModules?: ({
|
|
3166
|
-
name?: string;
|
|
3167
|
-
configKey?: string;
|
|
3164
|
+
name?: string | undefined;
|
|
3165
|
+
configKey?: string | undefined;
|
|
3168
3166
|
imports?: ({
|
|
3169
3167
|
name?: string | undefined;
|
|
3170
|
-
as?: import("unimport").ImportName;
|
|
3168
|
+
as?: import("unimport").ImportName | undefined;
|
|
3171
3169
|
with?: {
|
|
3172
3170
|
[x: string]: string | undefined;
|
|
3173
3171
|
} | undefined;
|
|
3174
3172
|
from?: string | undefined;
|
|
3175
|
-
priority?: number;
|
|
3176
|
-
disabled?: boolean;
|
|
3177
|
-
dtsDisabled?: boolean;
|
|
3173
|
+
priority?: number | undefined;
|
|
3174
|
+
disabled?: boolean | undefined;
|
|
3175
|
+
dtsDisabled?: boolean | undefined;
|
|
3178
3176
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
3179
3177
|
meta?: {
|
|
3180
3178
|
[x: string]: any;
|
|
3181
|
-
description?: string;
|
|
3182
|
-
docsUrl?: string;
|
|
3179
|
+
description?: string | undefined;
|
|
3180
|
+
docsUrl?: string | undefined;
|
|
3183
3181
|
} | undefined;
|
|
3184
|
-
type?: boolean;
|
|
3185
|
-
typeFrom?: import("unimport").ModuleId;
|
|
3182
|
+
type?: boolean | undefined;
|
|
3183
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
3186
3184
|
} | undefined)[] | undefined;
|
|
3187
3185
|
hooks?: {
|
|
3188
3186
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -3202,26 +3200,26 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3202
3200
|
userModules?: ({
|
|
3203
3201
|
type?: "local" | "node_module" | undefined;
|
|
3204
3202
|
id?: string | undefined;
|
|
3205
|
-
name?: string;
|
|
3206
|
-
configKey?: string;
|
|
3203
|
+
name?: string | undefined;
|
|
3204
|
+
configKey?: string | undefined;
|
|
3207
3205
|
imports?: ({
|
|
3208
3206
|
name?: string | undefined;
|
|
3209
|
-
as?: import("unimport").ImportName;
|
|
3207
|
+
as?: import("unimport").ImportName | undefined;
|
|
3210
3208
|
with?: {
|
|
3211
3209
|
[x: string]: string | undefined;
|
|
3212
3210
|
} | undefined;
|
|
3213
3211
|
from?: string | undefined;
|
|
3214
|
-
priority?: number;
|
|
3215
|
-
disabled?: boolean;
|
|
3216
|
-
dtsDisabled?: boolean;
|
|
3212
|
+
priority?: number | undefined;
|
|
3213
|
+
disabled?: boolean | undefined;
|
|
3214
|
+
dtsDisabled?: boolean | undefined;
|
|
3217
3215
|
declarationType?: "function" | "var" | "let" | "const" | "enum" | "const enum" | "class" | "async function" | undefined;
|
|
3218
3216
|
meta?: {
|
|
3219
3217
|
[x: string]: any;
|
|
3220
|
-
description?: string;
|
|
3221
|
-
docsUrl?: string;
|
|
3218
|
+
description?: string | undefined;
|
|
3219
|
+
docsUrl?: string | undefined;
|
|
3222
3220
|
} | undefined;
|
|
3223
|
-
type?: boolean;
|
|
3224
|
-
typeFrom?: import("unimport").ModuleId;
|
|
3221
|
+
type?: boolean | undefined;
|
|
3222
|
+
typeFrom?: import("unimport").ModuleId | undefined;
|
|
3225
3223
|
} | undefined)[] | undefined;
|
|
3226
3224
|
hooks?: {
|
|
3227
3225
|
'vite:build:extendConfig'?: {} | undefined;
|
|
@@ -3284,9 +3282,9 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3284
3282
|
overridesKey?: string | undefined;
|
|
3285
3283
|
name?: import("nypm").PackageManagerName | undefined;
|
|
3286
3284
|
command?: string | undefined;
|
|
3287
|
-
version?: string;
|
|
3288
|
-
majorVersion?: string;
|
|
3289
|
-
lockFile?: string;
|
|
3285
|
+
version?: string | undefined;
|
|
3286
|
+
majorVersion?: string | undefined;
|
|
3287
|
+
lockFile?: string | undefined;
|
|
3290
3288
|
files?: (string | undefined)[] | undefined;
|
|
3291
3289
|
} | undefined;
|
|
3292
3290
|
server?: {
|
|
@@ -3498,7 +3496,7 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3498
3496
|
} | undefined;
|
|
3499
3497
|
watcher?: {
|
|
3500
3498
|
options?: {
|
|
3501
|
-
persistent?: boolean;
|
|
3499
|
+
persistent?: boolean | undefined;
|
|
3502
3500
|
ignored?: string | {
|
|
3503
3501
|
exec?: {} | undefined;
|
|
3504
3502
|
test?: {} | undefined;
|
|
@@ -3536,21 +3534,21 @@ export declare const fakeWxt: (overrides?: {
|
|
|
3536
3534
|
[Symbol.split]?: {} | undefined;
|
|
3537
3535
|
[Symbol.matchAll]?: {} | undefined;
|
|
3538
3536
|
} | {} | 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;
|
|
3537
|
+
ignoreInitial?: boolean | undefined;
|
|
3538
|
+
followSymlinks?: boolean | undefined;
|
|
3539
|
+
cwd?: string | undefined;
|
|
3540
|
+
disableGlobbing?: boolean | undefined;
|
|
3541
|
+
usePolling?: boolean | undefined;
|
|
3542
|
+
useFsEvents?: boolean | undefined;
|
|
3543
|
+
alwaysStat?: boolean | undefined;
|
|
3544
|
+
depth?: number | undefined;
|
|
3545
|
+
interval?: number | undefined;
|
|
3546
|
+
binaryInterval?: number | undefined;
|
|
3547
|
+
ignorePermissionErrors?: boolean | undefined;
|
|
3548
|
+
atomic?: (boolean | number) | undefined;
|
|
3551
3549
|
awaitWriteFinish?: boolean | {
|
|
3552
|
-
stabilityThreshold?: number;
|
|
3553
|
-
pollInterval?: number;
|
|
3550
|
+
stabilityThreshold?: number | undefined;
|
|
3551
|
+
pollInterval?: number | undefined;
|
|
3554
3552
|
} | undefined;
|
|
3555
3553
|
} | undefined;
|
|
3556
3554
|
add?: {} | undefined;
|
|
@@ -3797,7 +3795,7 @@ export declare const fakeWxtDevServer: (overrides?: {
|
|
|
3797
3795
|
} | undefined;
|
|
3798
3796
|
watcher?: {
|
|
3799
3797
|
options?: {
|
|
3800
|
-
persistent?: boolean;
|
|
3798
|
+
persistent?: boolean | undefined;
|
|
3801
3799
|
ignored?: string | {
|
|
3802
3800
|
exec?: {} | undefined;
|
|
3803
3801
|
test?: {} | undefined;
|
|
@@ -3835,21 +3833,21 @@ export declare const fakeWxtDevServer: (overrides?: {
|
|
|
3835
3833
|
[Symbol.split]?: {} | undefined;
|
|
3836
3834
|
[Symbol.matchAll]?: {} | undefined;
|
|
3837
3835
|
} | {} | 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;
|
|
3836
|
+
ignoreInitial?: boolean | undefined;
|
|
3837
|
+
followSymlinks?: boolean | undefined;
|
|
3838
|
+
cwd?: string | undefined;
|
|
3839
|
+
disableGlobbing?: boolean | undefined;
|
|
3840
|
+
usePolling?: boolean | undefined;
|
|
3841
|
+
useFsEvents?: boolean | undefined;
|
|
3842
|
+
alwaysStat?: boolean | undefined;
|
|
3843
|
+
depth?: number | undefined;
|
|
3844
|
+
interval?: number | undefined;
|
|
3845
|
+
binaryInterval?: number | undefined;
|
|
3846
|
+
ignorePermissionErrors?: boolean | undefined;
|
|
3847
|
+
atomic?: (boolean | number) | undefined;
|
|
3850
3848
|
awaitWriteFinish?: boolean | {
|
|
3851
|
-
stabilityThreshold?: number;
|
|
3852
|
-
pollInterval?: number;
|
|
3849
|
+
stabilityThreshold?: number | undefined;
|
|
3850
|
+
pollInterval?: number | undefined;
|
|
3853
3851
|
} | undefined;
|
|
3854
3852
|
} | undefined;
|
|
3855
3853
|
add?: {} | undefined;
|
|
@@ -4471,7 +4469,7 @@ export declare const fakeDevServer: (overrides?: {
|
|
|
4471
4469
|
} | undefined;
|
|
4472
4470
|
watcher?: {
|
|
4473
4471
|
options?: {
|
|
4474
|
-
persistent?: boolean;
|
|
4472
|
+
persistent?: boolean | undefined;
|
|
4475
4473
|
ignored?: string | {
|
|
4476
4474
|
exec?: {} | undefined;
|
|
4477
4475
|
test?: {} | undefined;
|
|
@@ -4509,21 +4507,21 @@ export declare const fakeDevServer: (overrides?: {
|
|
|
4509
4507
|
[Symbol.split]?: {} | undefined;
|
|
4510
4508
|
[Symbol.matchAll]?: {} | undefined;
|
|
4511
4509
|
} | {} | 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;
|
|
4510
|
+
ignoreInitial?: boolean | undefined;
|
|
4511
|
+
followSymlinks?: boolean | undefined;
|
|
4512
|
+
cwd?: string | undefined;
|
|
4513
|
+
disableGlobbing?: boolean | undefined;
|
|
4514
|
+
usePolling?: boolean | undefined;
|
|
4515
|
+
useFsEvents?: boolean | undefined;
|
|
4516
|
+
alwaysStat?: boolean | undefined;
|
|
4517
|
+
depth?: number | undefined;
|
|
4518
|
+
interval?: number | undefined;
|
|
4519
|
+
binaryInterval?: number | undefined;
|
|
4520
|
+
ignorePermissionErrors?: boolean | undefined;
|
|
4521
|
+
atomic?: (boolean | number) | undefined;
|
|
4524
4522
|
awaitWriteFinish?: boolean | {
|
|
4525
|
-
stabilityThreshold?: number;
|
|
4526
|
-
pollInterval?: number;
|
|
4523
|
+
stabilityThreshold?: number | undefined;
|
|
4524
|
+
pollInterval?: number | undefined;
|
|
4527
4525
|
} | undefined;
|
|
4528
4526
|
} | undefined;
|
|
4529
4527
|
add?: {} | undefined;
|