@rspack/core 0.1.0 → 0.1.1
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/compilation.d.ts +12 -3
- package/dist/compilation.d.ts.map +1 -1
- package/dist/compilation.js +12 -4
- package/dist/compilation.js.map +1 -1
- package/dist/compiler.d.ts +1 -1
- package/dist/compiler.d.ts.map +1 -1
- package/dist/compiler.js +3 -6
- package/dist/compiler.js.map +1 -1
- package/dist/config/adapter-rule-use.d.ts +1 -0
- package/dist/config/adapter-rule-use.d.ts.map +1 -1
- package/dist/config/adapter-rule-use.js +3 -0
- package/dist/config/adapter-rule-use.js.map +1 -1
- package/dist/config/adapter.d.ts.map +1 -1
- package/dist/config/adapter.js +34 -10
- package/dist/config/adapter.js.map +1 -1
- package/dist/config/builtins.d.ts +8 -8
- package/dist/config/builtins.d.ts.map +1 -1
- package/dist/config/defaults.d.ts.map +1 -1
- package/dist/config/defaults.js +6 -0
- package/dist/config/defaults.js.map +1 -1
- package/dist/config/normalization.d.ts.map +1 -1
- package/dist/config/normalization.js +1 -0
- package/dist/config/normalization.js.map +1 -1
- package/dist/config/schema.check.d.ts +4 -4
- package/dist/config/schema.check.d.ts.map +1 -1
- package/dist/config/schema.check.js +2275 -2173
- package/dist/config/schema.check.js.map +1 -1
- package/dist/config/schema.d.ts +644 -607
- package/dist/config/schema.js +31 -14
- package/dist/config/schema.js.map +1 -1
- package/dist/config/types.d.ts +69 -62
- package/dist/config/types.d.ts.map +1 -1
- package/dist/logging/Logger.d.ts +3 -3
- package/dist/logging/Logger.d.ts.map +1 -1
- package/dist/multiCompiler.d.ts +2 -2
- package/dist/multiCompiler.d.ts.map +1 -1
- package/dist/multiCompiler.js +3 -5
- package/dist/multiCompiler.js.map +1 -1
- package/dist/rspack.d.ts +9 -0
- package/dist/rspack.d.ts.map +1 -1
- package/dist/rspack.js +32 -5
- package/dist/rspack.js.map +1 -1
- package/dist/rspackOptionsApply.d.ts +9 -0
- package/dist/rspackOptionsApply.d.ts.map +1 -1
- package/dist/rspackOptionsApply.js +2 -9
- package/dist/rspackOptionsApply.js.map +1 -1
- package/dist/stats.d.ts +10 -1
- package/dist/stats.d.ts.map +1 -1
- package/dist/stats.js +5 -5
- package/dist/stats.js.map +1 -1
- package/dist/util/createSource.d.ts.map +1 -1
- package/dist/util/createSource.js +3 -0
- package/dist/util/createSource.js.map +1 -1
- package/dist/util/hash/index.d.ts.map +1 -1
- package/dist/util/hash/index.js +9 -0
- package/dist/util/hash/index.js.map +1 -1
- package/dist/util/index.d.ts +3 -1
- package/dist/util/index.d.ts.map +1 -1
- package/dist/util/index.js.map +1 -1
- package/dist/watching.d.ts +9 -0
- package/dist/watching.d.ts.map +1 -1
- package/dist/watching.js +0 -1
- package/dist/watching.js.map +1 -1
- package/package.json +8 -8
- package/dist/node/NodeTargetPlugin.d.ts +0 -14
- package/dist/node/NodeTargetPlugin.d.ts.map +0 -1
- package/dist/node/NodeTargetPlugin.js +0 -82
- package/dist/node/NodeTargetPlugin.js.map +0 -1
package/dist/config/schema.d.ts
CHANGED
|
@@ -264,8 +264,14 @@ export declare namespace definitions {
|
|
|
264
264
|
const description_28: string;
|
|
265
265
|
export { description_28 as description };
|
|
266
266
|
const anyOf_10: ({
|
|
267
|
+
description: string;
|
|
268
|
+
instanceof: string;
|
|
269
|
+
type?: undefined;
|
|
270
|
+
additionalProperties?: undefined;
|
|
271
|
+
} | {
|
|
267
272
|
description: string;
|
|
268
273
|
type: string;
|
|
274
|
+
instanceof?: undefined;
|
|
269
275
|
additionalProperties?: undefined;
|
|
270
276
|
} | {
|
|
271
277
|
description: string;
|
|
@@ -273,6 +279,7 @@ export declare namespace definitions {
|
|
|
273
279
|
additionalProperties: {
|
|
274
280
|
$ref: string;
|
|
275
281
|
};
|
|
282
|
+
instanceof?: undefined;
|
|
276
283
|
})[];
|
|
277
284
|
export { anyOf_10 as anyOf };
|
|
278
285
|
}
|
|
@@ -288,28 +295,53 @@ export declare namespace definitions {
|
|
|
288
295
|
namespace Externals {
|
|
289
296
|
const description_30: string;
|
|
290
297
|
export { description_30 as description };
|
|
291
|
-
const anyOf_12: {
|
|
298
|
+
const anyOf_12: ({
|
|
299
|
+
type: string;
|
|
300
|
+
items: {
|
|
301
|
+
$ref: string;
|
|
302
|
+
};
|
|
303
|
+
$ref?: undefined;
|
|
304
|
+
} | {
|
|
292
305
|
$ref: string;
|
|
293
|
-
|
|
306
|
+
type?: undefined;
|
|
307
|
+
items?: undefined;
|
|
308
|
+
})[];
|
|
294
309
|
export { anyOf_12 as anyOf };
|
|
295
310
|
}
|
|
296
|
-
namespace
|
|
311
|
+
namespace ExternalsPresets {
|
|
297
312
|
const description_31: string;
|
|
298
313
|
export { description_31 as description };
|
|
314
|
+
const type_13: string;
|
|
315
|
+
export { type_13 as type };
|
|
316
|
+
const additionalProperties_5: boolean;
|
|
317
|
+
export { additionalProperties_5 as additionalProperties };
|
|
318
|
+
export namespace properties_4 {
|
|
319
|
+
namespace node {
|
|
320
|
+
const description_32: string;
|
|
321
|
+
export { description_32 as description };
|
|
322
|
+
const type_14: string;
|
|
323
|
+
export { type_14 as type };
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
export { properties_4 as properties };
|
|
327
|
+
}
|
|
328
|
+
namespace ExternalsType {
|
|
329
|
+
const description_33: string;
|
|
330
|
+
export { description_33 as description };
|
|
299
331
|
const _enum: string[];
|
|
300
332
|
export { _enum as enum };
|
|
301
333
|
}
|
|
302
334
|
namespace Filename {
|
|
303
|
-
const
|
|
304
|
-
export {
|
|
335
|
+
const description_34: string;
|
|
336
|
+
export { description_34 as description };
|
|
305
337
|
const oneOf_5: {
|
|
306
338
|
$ref: string;
|
|
307
339
|
}[];
|
|
308
340
|
export { oneOf_5 as oneOf };
|
|
309
341
|
}
|
|
310
342
|
namespace FilenameTemplate {
|
|
311
|
-
const
|
|
312
|
-
export {
|
|
343
|
+
const description_35: string;
|
|
344
|
+
export { description_35 as description };
|
|
313
345
|
const anyOf_13: ({
|
|
314
346
|
type: string;
|
|
315
347
|
minLength: number;
|
|
@@ -322,8 +354,8 @@ export declare namespace definitions {
|
|
|
322
354
|
export { anyOf_13 as anyOf };
|
|
323
355
|
}
|
|
324
356
|
namespace FilterItemTypes {
|
|
325
|
-
const
|
|
326
|
-
export {
|
|
357
|
+
const description_36: string;
|
|
358
|
+
export { description_36 as description };
|
|
327
359
|
const anyOf_14: ({
|
|
328
360
|
instanceof: string;
|
|
329
361
|
type?: undefined;
|
|
@@ -334,8 +366,8 @@ export declare namespace definitions {
|
|
|
334
366
|
export { anyOf_14 as anyOf };
|
|
335
367
|
}
|
|
336
368
|
namespace FilterTypes {
|
|
337
|
-
const
|
|
338
|
-
export {
|
|
369
|
+
const description_37: string;
|
|
370
|
+
export { description_37 as description };
|
|
339
371
|
const anyOf_15: ({
|
|
340
372
|
type: string;
|
|
341
373
|
items: {
|
|
@@ -353,45 +385,45 @@ export declare namespace definitions {
|
|
|
353
385
|
export { anyOf_15 as anyOf };
|
|
354
386
|
}
|
|
355
387
|
namespace GlobalObject {
|
|
356
|
-
const
|
|
357
|
-
export {
|
|
358
|
-
const
|
|
359
|
-
export {
|
|
388
|
+
const description_38: string;
|
|
389
|
+
export { description_38 as description };
|
|
390
|
+
const type_15: string;
|
|
391
|
+
export { type_15 as type };
|
|
360
392
|
export const minLength: number;
|
|
361
393
|
}
|
|
362
394
|
namespace ImportFunctionName {
|
|
363
|
-
const
|
|
364
|
-
export {
|
|
365
|
-
const
|
|
366
|
-
export {
|
|
395
|
+
const description_39: string;
|
|
396
|
+
export { description_39 as description };
|
|
397
|
+
const type_16: string;
|
|
398
|
+
export { type_16 as type };
|
|
367
399
|
}
|
|
368
400
|
namespace InfrastructureLogging {
|
|
369
|
-
const
|
|
370
|
-
export {
|
|
371
|
-
const
|
|
372
|
-
export {
|
|
373
|
-
const
|
|
374
|
-
export {
|
|
375
|
-
export namespace
|
|
401
|
+
const description_40: string;
|
|
402
|
+
export { description_40 as description };
|
|
403
|
+
const type_17: string;
|
|
404
|
+
export { type_17 as type };
|
|
405
|
+
const additionalProperties_6: boolean;
|
|
406
|
+
export { additionalProperties_6 as additionalProperties };
|
|
407
|
+
export namespace properties_5 {
|
|
376
408
|
namespace appendOnly {
|
|
377
|
-
const
|
|
378
|
-
export {
|
|
379
|
-
const
|
|
380
|
-
export {
|
|
409
|
+
const description_41: string;
|
|
410
|
+
export { description_41 as description };
|
|
411
|
+
const type_18: string;
|
|
412
|
+
export { type_18 as type };
|
|
381
413
|
}
|
|
382
414
|
namespace colors {
|
|
383
|
-
const
|
|
384
|
-
export {
|
|
385
|
-
const
|
|
386
|
-
export {
|
|
415
|
+
const description_42: string;
|
|
416
|
+
export { description_42 as description };
|
|
417
|
+
const type_19: string;
|
|
418
|
+
export { type_19 as type };
|
|
387
419
|
}
|
|
388
420
|
namespace console {
|
|
389
|
-
const
|
|
390
|
-
export {
|
|
421
|
+
const description_43: string;
|
|
422
|
+
export { description_43 as description };
|
|
391
423
|
}
|
|
392
424
|
namespace debug {
|
|
393
|
-
const
|
|
394
|
-
export {
|
|
425
|
+
const description_44: string;
|
|
426
|
+
export { description_44 as description };
|
|
395
427
|
const anyOf_16: ({
|
|
396
428
|
description: string;
|
|
397
429
|
type: string;
|
|
@@ -404,90 +436,90 @@ export declare namespace definitions {
|
|
|
404
436
|
export { anyOf_16 as anyOf };
|
|
405
437
|
}
|
|
406
438
|
namespace level {
|
|
407
|
-
const
|
|
408
|
-
export {
|
|
439
|
+
const description_45: string;
|
|
440
|
+
export { description_45 as description };
|
|
409
441
|
const _enum_1: string[];
|
|
410
442
|
export { _enum_1 as enum };
|
|
411
443
|
}
|
|
412
444
|
namespace stream {
|
|
413
|
-
const
|
|
414
|
-
export {
|
|
445
|
+
const description_46: string;
|
|
446
|
+
export { description_46 as description };
|
|
415
447
|
}
|
|
416
448
|
}
|
|
417
|
-
export {
|
|
449
|
+
export { properties_5 as properties };
|
|
418
450
|
}
|
|
419
451
|
namespace Library {
|
|
420
|
-
const
|
|
421
|
-
export {
|
|
452
|
+
const description_47: string;
|
|
453
|
+
export { description_47 as description };
|
|
422
454
|
const anyOf_17: {
|
|
423
455
|
$ref: string;
|
|
424
456
|
}[];
|
|
425
457
|
export { anyOf_17 as anyOf };
|
|
426
458
|
}
|
|
427
459
|
namespace LibraryCustomUmdCommentObject {
|
|
428
|
-
const
|
|
429
|
-
export {
|
|
430
|
-
const
|
|
431
|
-
export {
|
|
432
|
-
const
|
|
433
|
-
export {
|
|
434
|
-
export namespace
|
|
460
|
+
const description_48: string;
|
|
461
|
+
export { description_48 as description };
|
|
462
|
+
const type_20: string;
|
|
463
|
+
export { type_20 as type };
|
|
464
|
+
const additionalProperties_7: boolean;
|
|
465
|
+
export { additionalProperties_7 as additionalProperties };
|
|
466
|
+
export namespace properties_6 {
|
|
435
467
|
namespace amd {
|
|
436
|
-
const description_47: string;
|
|
437
|
-
export { description_47 as description };
|
|
438
|
-
const type_19: string;
|
|
439
|
-
export { type_19 as type };
|
|
440
|
-
}
|
|
441
|
-
namespace commonjs {
|
|
442
|
-
const description_48: string;
|
|
443
|
-
export { description_48 as description };
|
|
444
|
-
const type_20: string;
|
|
445
|
-
export { type_20 as type };
|
|
446
|
-
}
|
|
447
|
-
namespace commonjs2 {
|
|
448
468
|
const description_49: string;
|
|
449
469
|
export { description_49 as description };
|
|
450
470
|
const type_21: string;
|
|
451
471
|
export { type_21 as type };
|
|
452
472
|
}
|
|
453
|
-
namespace
|
|
473
|
+
namespace commonjs {
|
|
454
474
|
const description_50: string;
|
|
455
475
|
export { description_50 as description };
|
|
456
476
|
const type_22: string;
|
|
457
477
|
export { type_22 as type };
|
|
458
478
|
}
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
export { type_23 as type };
|
|
467
|
-
const additionalProperties_7: boolean;
|
|
468
|
-
export { additionalProperties_7 as additionalProperties };
|
|
469
|
-
export namespace properties_6 {
|
|
470
|
-
export namespace amd_1 {
|
|
479
|
+
namespace commonjs2 {
|
|
480
|
+
const description_51: string;
|
|
481
|
+
export { description_51 as description };
|
|
482
|
+
const type_23: string;
|
|
483
|
+
export { type_23 as type };
|
|
484
|
+
}
|
|
485
|
+
namespace root {
|
|
471
486
|
const description_52: string;
|
|
472
487
|
export { description_52 as description };
|
|
473
488
|
const type_24: string;
|
|
474
489
|
export { type_24 as type };
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
export { properties_6 as properties };
|
|
493
|
+
}
|
|
494
|
+
namespace LibraryCustomUmdObject {
|
|
495
|
+
const description_53: string;
|
|
496
|
+
export { description_53 as description };
|
|
497
|
+
const type_25: string;
|
|
498
|
+
export { type_25 as type };
|
|
499
|
+
const additionalProperties_8: boolean;
|
|
500
|
+
export { additionalProperties_8 as additionalProperties };
|
|
501
|
+
export namespace properties_7 {
|
|
502
|
+
export namespace amd_1 {
|
|
503
|
+
const description_54: string;
|
|
504
|
+
export { description_54 as description };
|
|
505
|
+
const type_26: string;
|
|
506
|
+
export { type_26 as type };
|
|
475
507
|
const minLength_1: number;
|
|
476
508
|
export { minLength_1 as minLength };
|
|
477
509
|
}
|
|
478
510
|
export { amd_1 as amd };
|
|
479
511
|
export namespace commonjs_1 {
|
|
480
|
-
const
|
|
481
|
-
export {
|
|
482
|
-
const
|
|
483
|
-
export {
|
|
512
|
+
const description_55: string;
|
|
513
|
+
export { description_55 as description };
|
|
514
|
+
const type_27: string;
|
|
515
|
+
export { type_27 as type };
|
|
484
516
|
const minLength_2: number;
|
|
485
517
|
export { minLength_2 as minLength };
|
|
486
518
|
}
|
|
487
519
|
export { commonjs_1 as commonjs };
|
|
488
520
|
export namespace root_1 {
|
|
489
|
-
const
|
|
490
|
-
export {
|
|
521
|
+
const description_56: string;
|
|
522
|
+
export { description_56 as description };
|
|
491
523
|
const anyOf_18: ({
|
|
492
524
|
type: string;
|
|
493
525
|
items: {
|
|
@@ -505,11 +537,11 @@ export declare namespace definitions {
|
|
|
505
537
|
}
|
|
506
538
|
export { root_1 as root };
|
|
507
539
|
}
|
|
508
|
-
export {
|
|
540
|
+
export { properties_7 as properties };
|
|
509
541
|
}
|
|
510
542
|
namespace LibraryExport {
|
|
511
|
-
const
|
|
512
|
-
export {
|
|
543
|
+
const description_57: string;
|
|
544
|
+
export { description_57 as description };
|
|
513
545
|
const anyOf_19: ({
|
|
514
546
|
type: string;
|
|
515
547
|
items: {
|
|
@@ -526,8 +558,8 @@ export declare namespace definitions {
|
|
|
526
558
|
export { anyOf_19 as anyOf };
|
|
527
559
|
}
|
|
528
560
|
namespace LibraryName {
|
|
529
|
-
const
|
|
530
|
-
export {
|
|
561
|
+
const description_58: string;
|
|
562
|
+
export { description_58 as description };
|
|
531
563
|
const anyOf_20: ({
|
|
532
564
|
type: string;
|
|
533
565
|
items: {
|
|
@@ -554,13 +586,13 @@ export declare namespace definitions {
|
|
|
554
586
|
export { anyOf_20 as anyOf };
|
|
555
587
|
}
|
|
556
588
|
namespace LibraryOptions {
|
|
557
|
-
const
|
|
558
|
-
export {
|
|
559
|
-
const
|
|
560
|
-
export {
|
|
561
|
-
const
|
|
562
|
-
export {
|
|
563
|
-
export namespace
|
|
589
|
+
const description_59: string;
|
|
590
|
+
export { description_59 as description };
|
|
591
|
+
const type_28: string;
|
|
592
|
+
export { type_28 as type };
|
|
593
|
+
const additionalProperties_9: boolean;
|
|
594
|
+
export { additionalProperties_9 as additionalProperties };
|
|
595
|
+
export namespace properties_8 {
|
|
564
596
|
export namespace auxiliaryComment {
|
|
565
597
|
const $ref_3: string;
|
|
566
598
|
export { $ref_3 as $ref };
|
|
@@ -574,23 +606,23 @@ export declare namespace definitions {
|
|
|
574
606
|
const $ref_5: string;
|
|
575
607
|
export { $ref_5 as $ref };
|
|
576
608
|
}
|
|
577
|
-
export namespace
|
|
609
|
+
export namespace type_29 {
|
|
578
610
|
const $ref_6: string;
|
|
579
611
|
export { $ref_6 as $ref };
|
|
580
612
|
}
|
|
581
|
-
export {
|
|
613
|
+
export { type_29 as type };
|
|
582
614
|
export namespace umdNamedDefine {
|
|
583
615
|
const $ref_7: string;
|
|
584
616
|
export { $ref_7 as $ref };
|
|
585
617
|
}
|
|
586
618
|
}
|
|
587
|
-
export {
|
|
619
|
+
export { properties_8 as properties };
|
|
588
620
|
const required_1: string[];
|
|
589
621
|
export { required_1 as required };
|
|
590
622
|
}
|
|
591
623
|
namespace LibraryType {
|
|
592
|
-
const
|
|
593
|
-
export {
|
|
624
|
+
const description_60: string;
|
|
625
|
+
export { description_60 as description };
|
|
594
626
|
const anyOf_21: ({
|
|
595
627
|
enum: string[];
|
|
596
628
|
type?: undefined;
|
|
@@ -601,22 +633,22 @@ export declare namespace definitions {
|
|
|
601
633
|
export { anyOf_21 as anyOf };
|
|
602
634
|
}
|
|
603
635
|
namespace Mode {
|
|
604
|
-
const
|
|
605
|
-
export {
|
|
636
|
+
const description_61: string;
|
|
637
|
+
export { description_61 as description };
|
|
606
638
|
const _enum_2: string[];
|
|
607
639
|
export { _enum_2 as enum };
|
|
608
640
|
}
|
|
609
641
|
namespace ModuleOptions {
|
|
610
|
-
const
|
|
611
|
-
export {
|
|
612
|
-
const
|
|
613
|
-
export {
|
|
614
|
-
const
|
|
615
|
-
export {
|
|
616
|
-
export namespace
|
|
642
|
+
const description_62: string;
|
|
643
|
+
export { description_62 as description };
|
|
644
|
+
const type_30: string;
|
|
645
|
+
export { type_30 as type };
|
|
646
|
+
const additionalProperties_10: boolean;
|
|
647
|
+
export { additionalProperties_10 as additionalProperties };
|
|
648
|
+
export namespace properties_9 {
|
|
617
649
|
namespace defaultRules {
|
|
618
|
-
const
|
|
619
|
-
export {
|
|
650
|
+
const description_63: string;
|
|
651
|
+
export { description_63 as description };
|
|
620
652
|
const oneOf_6: {
|
|
621
653
|
$ref: string;
|
|
622
654
|
}[];
|
|
@@ -627,25 +659,25 @@ export declare namespace definitions {
|
|
|
627
659
|
export { $ref_8 as $ref };
|
|
628
660
|
}
|
|
629
661
|
namespace rules {
|
|
630
|
-
const
|
|
631
|
-
export {
|
|
662
|
+
const description_64: string;
|
|
663
|
+
export { description_64 as description };
|
|
632
664
|
const oneOf_7: {
|
|
633
665
|
$ref: string;
|
|
634
666
|
}[];
|
|
635
667
|
export { oneOf_7 as oneOf };
|
|
636
668
|
}
|
|
637
669
|
}
|
|
638
|
-
export {
|
|
670
|
+
export { properties_9 as properties };
|
|
639
671
|
}
|
|
640
672
|
namespace Name {
|
|
641
|
-
const
|
|
642
|
-
export {
|
|
643
|
-
const
|
|
644
|
-
export {
|
|
673
|
+
const description_65: string;
|
|
674
|
+
export { description_65 as description };
|
|
675
|
+
const type_31: string;
|
|
676
|
+
export { type_31 as type };
|
|
645
677
|
}
|
|
646
678
|
namespace Node {
|
|
647
|
-
const
|
|
648
|
-
export {
|
|
679
|
+
const description_66: string;
|
|
680
|
+
export { description_66 as description };
|
|
649
681
|
const anyOf_22: ({
|
|
650
682
|
enum: boolean[];
|
|
651
683
|
$ref?: undefined;
|
|
@@ -656,56 +688,56 @@ export declare namespace definitions {
|
|
|
656
688
|
export { anyOf_22 as anyOf };
|
|
657
689
|
}
|
|
658
690
|
namespace NodeOptions {
|
|
659
|
-
const
|
|
660
|
-
export {
|
|
661
|
-
const
|
|
662
|
-
export {
|
|
663
|
-
const
|
|
664
|
-
export {
|
|
665
|
-
export namespace
|
|
691
|
+
const description_67: string;
|
|
692
|
+
export { description_67 as description };
|
|
693
|
+
const type_32: string;
|
|
694
|
+
export { type_32 as type };
|
|
695
|
+
const additionalProperties_11: boolean;
|
|
696
|
+
export { additionalProperties_11 as additionalProperties };
|
|
697
|
+
export namespace properties_10 {
|
|
666
698
|
namespace __dirname {
|
|
667
|
-
const
|
|
668
|
-
export {
|
|
699
|
+
const description_68: string;
|
|
700
|
+
export { description_68 as description };
|
|
669
701
|
const _enum_3: (string | boolean)[];
|
|
670
702
|
export { _enum_3 as enum };
|
|
671
703
|
}
|
|
672
704
|
namespace global {
|
|
673
|
-
const
|
|
674
|
-
export {
|
|
705
|
+
const description_69: string;
|
|
706
|
+
export { description_69 as description };
|
|
675
707
|
const _enum_4: (string | boolean)[];
|
|
676
708
|
export { _enum_4 as enum };
|
|
677
709
|
}
|
|
678
710
|
}
|
|
679
|
-
export {
|
|
711
|
+
export { properties_10 as properties };
|
|
680
712
|
}
|
|
681
713
|
namespace Optimization {
|
|
682
|
-
const
|
|
683
|
-
export {
|
|
684
|
-
const
|
|
685
|
-
export {
|
|
686
|
-
const
|
|
687
|
-
export {
|
|
688
|
-
export namespace
|
|
714
|
+
const description_70: string;
|
|
715
|
+
export { description_70 as description };
|
|
716
|
+
const type_33: string;
|
|
717
|
+
export { type_33 as type };
|
|
718
|
+
const additionalProperties_12: boolean;
|
|
719
|
+
export { additionalProperties_12 as additionalProperties };
|
|
720
|
+
export namespace properties_11 {
|
|
689
721
|
namespace chunkIds {
|
|
690
|
-
const
|
|
691
|
-
export {
|
|
722
|
+
const description_71: string;
|
|
723
|
+
export { description_71 as description };
|
|
692
724
|
const _enum_5: string[];
|
|
693
725
|
export { _enum_5 as enum };
|
|
694
726
|
}
|
|
695
727
|
namespace minimize {
|
|
696
|
-
const
|
|
697
|
-
export {
|
|
698
|
-
const
|
|
699
|
-
export {
|
|
728
|
+
const description_72: string;
|
|
729
|
+
export { description_72 as description };
|
|
730
|
+
const type_34: string;
|
|
731
|
+
export { type_34 as type };
|
|
700
732
|
}
|
|
701
733
|
namespace minimizer {
|
|
702
|
-
const
|
|
703
|
-
export {
|
|
704
|
-
const
|
|
705
|
-
export {
|
|
734
|
+
const description_73: string;
|
|
735
|
+
export { description_73 as description };
|
|
736
|
+
const type_35: string;
|
|
737
|
+
export { type_35 as type };
|
|
706
738
|
export namespace items_2 {
|
|
707
|
-
const
|
|
708
|
-
export {
|
|
739
|
+
const description_74: string;
|
|
740
|
+
export { description_74 as description };
|
|
709
741
|
const anyOf_23: ({
|
|
710
742
|
enum: string[];
|
|
711
743
|
$ref?: undefined;
|
|
@@ -718,24 +750,24 @@ export declare namespace definitions {
|
|
|
718
750
|
export { items_2 as items };
|
|
719
751
|
}
|
|
720
752
|
namespace moduleIds {
|
|
721
|
-
const
|
|
722
|
-
export {
|
|
753
|
+
const description_75: string;
|
|
754
|
+
export { description_75 as description };
|
|
723
755
|
const _enum_6: string[];
|
|
724
756
|
export { _enum_6 as enum };
|
|
725
757
|
}
|
|
726
758
|
namespace removeAvailableModules {
|
|
727
|
-
const
|
|
728
|
-
export {
|
|
729
|
-
const
|
|
730
|
-
export {
|
|
759
|
+
const description_76: string;
|
|
760
|
+
export { description_76 as description };
|
|
761
|
+
const type_36: string;
|
|
762
|
+
export { type_36 as type };
|
|
731
763
|
}
|
|
732
764
|
namespace runtimeChunk {
|
|
733
765
|
const $ref_9: string;
|
|
734
766
|
export { $ref_9 as $ref };
|
|
735
767
|
}
|
|
736
768
|
namespace sideEffects {
|
|
737
|
-
const
|
|
738
|
-
export {
|
|
769
|
+
const description_77: string;
|
|
770
|
+
export { description_77 as description };
|
|
739
771
|
const anyOf_24: ({
|
|
740
772
|
enum: string[];
|
|
741
773
|
type?: undefined;
|
|
@@ -746,8 +778,8 @@ export declare namespace definitions {
|
|
|
746
778
|
export { anyOf_24 as anyOf };
|
|
747
779
|
}
|
|
748
780
|
namespace splitChunks {
|
|
749
|
-
const
|
|
750
|
-
export {
|
|
781
|
+
const description_78: string;
|
|
782
|
+
export { description_78 as description };
|
|
751
783
|
const anyOf_25: ({
|
|
752
784
|
enum: boolean[];
|
|
753
785
|
$ref?: undefined;
|
|
@@ -758,11 +790,11 @@ export declare namespace definitions {
|
|
|
758
790
|
export { anyOf_25 as anyOf };
|
|
759
791
|
}
|
|
760
792
|
}
|
|
761
|
-
export {
|
|
793
|
+
export { properties_11 as properties };
|
|
762
794
|
}
|
|
763
795
|
namespace OptimizationRuntimeChunk {
|
|
764
|
-
const
|
|
765
|
-
export {
|
|
796
|
+
const description_79: string;
|
|
797
|
+
export { description_79 as description };
|
|
766
798
|
const anyOf_26: ({
|
|
767
799
|
enum: string[];
|
|
768
800
|
type?: undefined;
|
|
@@ -793,16 +825,16 @@ export declare namespace definitions {
|
|
|
793
825
|
export { anyOf_26 as anyOf };
|
|
794
826
|
}
|
|
795
827
|
namespace OptimizationSplitChunksCacheGroup {
|
|
796
|
-
const
|
|
797
|
-
export {
|
|
798
|
-
const
|
|
799
|
-
export {
|
|
800
|
-
const
|
|
801
|
-
export {
|
|
802
|
-
export namespace
|
|
828
|
+
const description_80: string;
|
|
829
|
+
export { description_80 as description };
|
|
830
|
+
const type_37: string;
|
|
831
|
+
export { type_37 as type };
|
|
832
|
+
const additionalProperties_13: boolean;
|
|
833
|
+
export { additionalProperties_13 as additionalProperties };
|
|
834
|
+
export namespace properties_12 {
|
|
803
835
|
export namespace chunks {
|
|
804
|
-
const
|
|
805
|
-
export {
|
|
836
|
+
const description_81: string;
|
|
837
|
+
export { description_81 as description };
|
|
806
838
|
const anyOf_27: ({
|
|
807
839
|
enum: string[];
|
|
808
840
|
instanceof?: undefined;
|
|
@@ -813,15 +845,15 @@ export declare namespace definitions {
|
|
|
813
845
|
export { anyOf_27 as anyOf };
|
|
814
846
|
}
|
|
815
847
|
export namespace minChunks {
|
|
816
|
-
const
|
|
817
|
-
export {
|
|
818
|
-
const
|
|
819
|
-
export {
|
|
848
|
+
const description_82: string;
|
|
849
|
+
export { description_82 as description };
|
|
850
|
+
const type_38: string;
|
|
851
|
+
export { type_38 as type };
|
|
820
852
|
export const minimum: number;
|
|
821
853
|
}
|
|
822
854
|
export namespace name_1 {
|
|
823
|
-
const
|
|
824
|
-
export {
|
|
855
|
+
const description_83: string;
|
|
856
|
+
export { description_83 as description };
|
|
825
857
|
const anyOf_28: ({
|
|
826
858
|
enum: boolean[];
|
|
827
859
|
type?: undefined;
|
|
@@ -839,54 +871,54 @@ export declare namespace definitions {
|
|
|
839
871
|
}
|
|
840
872
|
export { name_1 as name };
|
|
841
873
|
export namespace priority {
|
|
842
|
-
const
|
|
843
|
-
export {
|
|
844
|
-
const
|
|
845
|
-
export {
|
|
874
|
+
const description_84: string;
|
|
875
|
+
export { description_84 as description };
|
|
876
|
+
const type_39: string;
|
|
877
|
+
export { type_39 as type };
|
|
846
878
|
}
|
|
847
879
|
export namespace reuseExistingChunk {
|
|
848
|
-
const
|
|
849
|
-
export {
|
|
850
|
-
const
|
|
851
|
-
export {
|
|
880
|
+
const description_85: string;
|
|
881
|
+
export { description_85 as description };
|
|
882
|
+
const type_40: string;
|
|
883
|
+
export { type_40 as type };
|
|
852
884
|
}
|
|
853
885
|
export namespace test {
|
|
854
|
-
const
|
|
855
|
-
export {
|
|
886
|
+
const description_86: string;
|
|
887
|
+
export { description_86 as description };
|
|
856
888
|
const anyOf_29: {
|
|
857
889
|
instanceof: string;
|
|
858
890
|
}[];
|
|
859
891
|
export { anyOf_29 as anyOf };
|
|
860
892
|
}
|
|
861
893
|
}
|
|
862
|
-
export {
|
|
894
|
+
export { properties_12 as properties };
|
|
863
895
|
}
|
|
864
896
|
namespace OptimizationSplitChunksOptions {
|
|
865
|
-
const
|
|
866
|
-
export {
|
|
867
|
-
const
|
|
868
|
-
export {
|
|
869
|
-
const
|
|
870
|
-
export {
|
|
871
|
-
export namespace
|
|
897
|
+
const description_87: string;
|
|
898
|
+
export { description_87 as description };
|
|
899
|
+
const type_41: string;
|
|
900
|
+
export { type_41 as type };
|
|
901
|
+
const additionalProperties_14: boolean;
|
|
902
|
+
export { additionalProperties_14 as additionalProperties };
|
|
903
|
+
export namespace properties_13 {
|
|
872
904
|
export namespace cacheGroups {
|
|
873
|
-
const
|
|
874
|
-
export {
|
|
875
|
-
const
|
|
876
|
-
export {
|
|
877
|
-
export namespace
|
|
878
|
-
const
|
|
879
|
-
export {
|
|
905
|
+
const description_88: string;
|
|
906
|
+
export { description_88 as description };
|
|
907
|
+
const type_42: string;
|
|
908
|
+
export { type_42 as type };
|
|
909
|
+
export namespace additionalProperties_15 {
|
|
910
|
+
const description_89: string;
|
|
911
|
+
export { description_89 as description };
|
|
880
912
|
const anyOf_30: {
|
|
881
913
|
$ref: string;
|
|
882
914
|
}[];
|
|
883
915
|
export { anyOf_30 as anyOf };
|
|
884
916
|
}
|
|
885
|
-
export {
|
|
917
|
+
export { additionalProperties_15 as additionalProperties };
|
|
886
918
|
}
|
|
887
919
|
export namespace chunks_1 {
|
|
888
|
-
const
|
|
889
|
-
export {
|
|
920
|
+
const description_90: string;
|
|
921
|
+
export { description_90 as description };
|
|
890
922
|
const anyOf_31: {
|
|
891
923
|
enum: string[];
|
|
892
924
|
}[];
|
|
@@ -894,60 +926,60 @@ export declare namespace definitions {
|
|
|
894
926
|
}
|
|
895
927
|
export { chunks_1 as chunks };
|
|
896
928
|
export namespace enforceSizeThreshold {
|
|
897
|
-
const
|
|
898
|
-
export {
|
|
929
|
+
const description_91: string;
|
|
930
|
+
export { description_91 as description };
|
|
899
931
|
const oneOf_8: {
|
|
900
932
|
$ref: string;
|
|
901
933
|
}[];
|
|
902
934
|
export { oneOf_8 as oneOf };
|
|
903
935
|
}
|
|
904
936
|
export namespace maxAsyncRequests {
|
|
905
|
-
const
|
|
906
|
-
export {
|
|
907
|
-
const
|
|
908
|
-
export {
|
|
937
|
+
const description_92: string;
|
|
938
|
+
export { description_92 as description };
|
|
939
|
+
const type_43: string;
|
|
940
|
+
export { type_43 as type };
|
|
909
941
|
const minimum_1: number;
|
|
910
942
|
export { minimum_1 as minimum };
|
|
911
943
|
}
|
|
912
944
|
export namespace maxInitialRequests {
|
|
913
|
-
const
|
|
914
|
-
export {
|
|
915
|
-
const
|
|
916
|
-
export {
|
|
945
|
+
const description_93: string;
|
|
946
|
+
export { description_93 as description };
|
|
947
|
+
const type_44: string;
|
|
948
|
+
export { type_44 as type };
|
|
917
949
|
const minimum_2: number;
|
|
918
950
|
export { minimum_2 as minimum };
|
|
919
951
|
}
|
|
920
952
|
export namespace minChunks_1 {
|
|
921
|
-
const
|
|
922
|
-
export {
|
|
923
|
-
const
|
|
924
|
-
export {
|
|
953
|
+
const description_94: string;
|
|
954
|
+
export { description_94 as description };
|
|
955
|
+
const type_45: string;
|
|
956
|
+
export { type_45 as type };
|
|
925
957
|
const minimum_3: number;
|
|
926
958
|
export { minimum_3 as minimum };
|
|
927
959
|
}
|
|
928
960
|
export { minChunks_1 as minChunks };
|
|
929
961
|
export namespace minRemainingSize {
|
|
930
|
-
const
|
|
931
|
-
export {
|
|
962
|
+
const description_95: string;
|
|
963
|
+
export { description_95 as description };
|
|
932
964
|
const oneOf_9: {
|
|
933
965
|
$ref: string;
|
|
934
966
|
}[];
|
|
935
967
|
export { oneOf_9 as oneOf };
|
|
936
968
|
}
|
|
937
969
|
export namespace minSize {
|
|
938
|
-
const
|
|
939
|
-
export {
|
|
970
|
+
const description_96: string;
|
|
971
|
+
export { description_96 as description };
|
|
940
972
|
const oneOf_10: {
|
|
941
973
|
$ref: string;
|
|
942
974
|
}[];
|
|
943
975
|
export { oneOf_10 as oneOf };
|
|
944
976
|
}
|
|
945
977
|
}
|
|
946
|
-
export {
|
|
978
|
+
export { properties_13 as properties };
|
|
947
979
|
}
|
|
948
980
|
namespace OptimizationSplitChunksSizes {
|
|
949
|
-
const
|
|
950
|
-
export {
|
|
981
|
+
const description_97: string;
|
|
982
|
+
export { description_97 as description };
|
|
951
983
|
const anyOf_32: {
|
|
952
984
|
description: string;
|
|
953
985
|
type: string;
|
|
@@ -956,13 +988,13 @@ export declare namespace definitions {
|
|
|
956
988
|
export { anyOf_32 as anyOf };
|
|
957
989
|
}
|
|
958
990
|
namespace Output {
|
|
959
|
-
const
|
|
960
|
-
export {
|
|
961
|
-
const
|
|
962
|
-
export {
|
|
963
|
-
const
|
|
964
|
-
export {
|
|
965
|
-
export namespace
|
|
991
|
+
const description_98: string;
|
|
992
|
+
export { description_98 as description };
|
|
993
|
+
const type_46: string;
|
|
994
|
+
export { type_46 as type };
|
|
995
|
+
const additionalProperties_16: boolean;
|
|
996
|
+
export { additionalProperties_16 as additionalProperties };
|
|
997
|
+
export namespace properties_14 {
|
|
966
998
|
export namespace assetModuleFilename {
|
|
967
999
|
const $ref_10: string;
|
|
968
1000
|
export { $ref_10 as $ref };
|
|
@@ -1046,50 +1078,50 @@ export declare namespace definitions {
|
|
|
1046
1078
|
export { $ref_23 as $ref };
|
|
1047
1079
|
}
|
|
1048
1080
|
}
|
|
1049
|
-
export {
|
|
1081
|
+
export { properties_14 as properties };
|
|
1050
1082
|
}
|
|
1051
1083
|
namespace OutputModule {
|
|
1052
|
-
const
|
|
1053
|
-
export {
|
|
1054
|
-
const
|
|
1055
|
-
export {
|
|
1084
|
+
const description_99: string;
|
|
1085
|
+
export { description_99 as description };
|
|
1086
|
+
const type_47: string;
|
|
1087
|
+
export { type_47 as type };
|
|
1056
1088
|
}
|
|
1057
1089
|
namespace ParserOptionsByModuleType {
|
|
1058
|
-
const
|
|
1059
|
-
export {
|
|
1060
|
-
const
|
|
1061
|
-
export {
|
|
1062
|
-
export namespace
|
|
1063
|
-
const
|
|
1064
|
-
export {
|
|
1065
|
-
const
|
|
1066
|
-
export {
|
|
1067
|
-
const
|
|
1068
|
-
export {
|
|
1090
|
+
const description_100: string;
|
|
1091
|
+
export { description_100 as description };
|
|
1092
|
+
const type_48: string;
|
|
1093
|
+
export { type_48 as type };
|
|
1094
|
+
export namespace additionalProperties_17 {
|
|
1095
|
+
const description_101: string;
|
|
1096
|
+
export { description_101 as description };
|
|
1097
|
+
const type_49: string;
|
|
1098
|
+
export { type_49 as type };
|
|
1099
|
+
const additionalProperties_18: boolean;
|
|
1100
|
+
export { additionalProperties_18 as additionalProperties };
|
|
1069
1101
|
}
|
|
1070
|
-
export {
|
|
1071
|
-
export namespace
|
|
1102
|
+
export { additionalProperties_17 as additionalProperties };
|
|
1103
|
+
export namespace properties_15 {
|
|
1072
1104
|
namespace asset {
|
|
1073
1105
|
const $ref_24: string;
|
|
1074
1106
|
export { $ref_24 as $ref };
|
|
1075
1107
|
}
|
|
1076
1108
|
}
|
|
1077
|
-
export {
|
|
1109
|
+
export { properties_15 as properties };
|
|
1078
1110
|
}
|
|
1079
1111
|
namespace Path {
|
|
1080
|
-
const
|
|
1081
|
-
export {
|
|
1082
|
-
const
|
|
1083
|
-
export {
|
|
1112
|
+
const description_102: string;
|
|
1113
|
+
export { description_102 as description };
|
|
1114
|
+
const type_50: string;
|
|
1115
|
+
export { type_50 as type };
|
|
1084
1116
|
}
|
|
1085
1117
|
namespace Plugins {
|
|
1086
|
-
const
|
|
1087
|
-
export {
|
|
1088
|
-
const
|
|
1089
|
-
export {
|
|
1118
|
+
const description_103: string;
|
|
1119
|
+
export { description_103 as description };
|
|
1120
|
+
const type_51: string;
|
|
1121
|
+
export { type_51 as type };
|
|
1090
1122
|
export namespace items_3 {
|
|
1091
|
-
const
|
|
1092
|
-
export {
|
|
1123
|
+
const description_104: string;
|
|
1124
|
+
export { description_104 as description };
|
|
1093
1125
|
const anyOf_33: {
|
|
1094
1126
|
$ref: string;
|
|
1095
1127
|
}[];
|
|
@@ -1098,8 +1130,8 @@ export declare namespace definitions {
|
|
|
1098
1130
|
export { items_3 as items };
|
|
1099
1131
|
}
|
|
1100
1132
|
namespace PublicPath {
|
|
1101
|
-
const
|
|
1102
|
-
export {
|
|
1133
|
+
const description_105: string;
|
|
1134
|
+
export { description_105 as description };
|
|
1103
1135
|
const anyOf_34: ({
|
|
1104
1136
|
enum: string[];
|
|
1105
1137
|
$ref?: undefined;
|
|
@@ -1110,24 +1142,24 @@ export declare namespace definitions {
|
|
|
1110
1142
|
export { anyOf_34 as anyOf };
|
|
1111
1143
|
}
|
|
1112
1144
|
namespace RawPublicPath {
|
|
1113
|
-
const
|
|
1114
|
-
export {
|
|
1145
|
+
const description_106: string;
|
|
1146
|
+
export { description_106 as description };
|
|
1115
1147
|
const anyOf_35: {
|
|
1116
1148
|
type: string;
|
|
1117
1149
|
}[];
|
|
1118
1150
|
export { anyOf_35 as anyOf };
|
|
1119
1151
|
}
|
|
1120
1152
|
namespace Resolve {
|
|
1121
|
-
const
|
|
1122
|
-
export {
|
|
1153
|
+
const description_107: string;
|
|
1154
|
+
export { description_107 as description };
|
|
1123
1155
|
const oneOf_15: {
|
|
1124
1156
|
$ref: string;
|
|
1125
1157
|
}[];
|
|
1126
1158
|
export { oneOf_15 as oneOf };
|
|
1127
1159
|
}
|
|
1128
1160
|
namespace ResolveAlias {
|
|
1129
|
-
const
|
|
1130
|
-
export {
|
|
1161
|
+
const description_108: string;
|
|
1162
|
+
export { description_108 as description };
|
|
1131
1163
|
const anyOf_36: {
|
|
1132
1164
|
type: string;
|
|
1133
1165
|
additionalProperties: {
|
|
@@ -1160,65 +1192,65 @@ export declare namespace definitions {
|
|
|
1160
1192
|
export { anyOf_36 as anyOf };
|
|
1161
1193
|
}
|
|
1162
1194
|
namespace ResolveOptions {
|
|
1163
|
-
const
|
|
1164
|
-
export {
|
|
1165
|
-
const
|
|
1166
|
-
export {
|
|
1167
|
-
const
|
|
1168
|
-
export {
|
|
1169
|
-
export namespace
|
|
1195
|
+
const description_109: string;
|
|
1196
|
+
export { description_109 as description };
|
|
1197
|
+
const type_52: string;
|
|
1198
|
+
export { type_52 as type };
|
|
1199
|
+
const additionalProperties_19: boolean;
|
|
1200
|
+
export { additionalProperties_19 as additionalProperties };
|
|
1201
|
+
export namespace properties_16 {
|
|
1170
1202
|
namespace alias {
|
|
1171
1203
|
const $ref_25: string;
|
|
1172
1204
|
export { $ref_25 as $ref };
|
|
1173
1205
|
}
|
|
1174
1206
|
namespace browserField {
|
|
1175
|
-
const
|
|
1176
|
-
export {
|
|
1177
|
-
const
|
|
1178
|
-
export {
|
|
1207
|
+
const description_110: string;
|
|
1208
|
+
export { description_110 as description };
|
|
1209
|
+
const type_53: string;
|
|
1210
|
+
export { type_53 as type };
|
|
1179
1211
|
}
|
|
1180
1212
|
namespace conditionNames {
|
|
1181
|
-
const description_109: string;
|
|
1182
|
-
export { description_109 as description };
|
|
1183
|
-
const type_52: string;
|
|
1184
|
-
export { type_52 as type };
|
|
1185
|
-
export namespace items_4 {
|
|
1186
|
-
const description_110: string;
|
|
1187
|
-
export { description_110 as description };
|
|
1188
|
-
const type_53: string;
|
|
1189
|
-
export { type_53 as type };
|
|
1190
|
-
}
|
|
1191
|
-
export { items_4 as items };
|
|
1192
|
-
}
|
|
1193
|
-
namespace extensions {
|
|
1194
1213
|
const description_111: string;
|
|
1195
1214
|
export { description_111 as description };
|
|
1196
1215
|
const type_54: string;
|
|
1197
1216
|
export { type_54 as type };
|
|
1198
|
-
export namespace
|
|
1217
|
+
export namespace items_4 {
|
|
1199
1218
|
const description_112: string;
|
|
1200
1219
|
export { description_112 as description };
|
|
1201
1220
|
const type_55: string;
|
|
1202
1221
|
export { type_55 as type };
|
|
1203
1222
|
}
|
|
1204
|
-
export {
|
|
1223
|
+
export { items_4 as items };
|
|
1205
1224
|
}
|
|
1206
|
-
namespace
|
|
1225
|
+
namespace extensions {
|
|
1207
1226
|
const description_113: string;
|
|
1208
1227
|
export { description_113 as description };
|
|
1228
|
+
const type_56: string;
|
|
1229
|
+
export { type_56 as type };
|
|
1230
|
+
export namespace items_5 {
|
|
1231
|
+
const description_114: string;
|
|
1232
|
+
export { description_114 as description };
|
|
1233
|
+
const type_57: string;
|
|
1234
|
+
export { type_57 as type };
|
|
1235
|
+
}
|
|
1236
|
+
export { items_5 as items };
|
|
1237
|
+
}
|
|
1238
|
+
namespace fallback {
|
|
1239
|
+
const description_115: string;
|
|
1240
|
+
export { description_115 as description };
|
|
1209
1241
|
const oneOf_16: {
|
|
1210
1242
|
$ref: string;
|
|
1211
1243
|
}[];
|
|
1212
1244
|
export { oneOf_16 as oneOf };
|
|
1213
1245
|
}
|
|
1214
1246
|
namespace mainFields {
|
|
1215
|
-
const
|
|
1216
|
-
export {
|
|
1217
|
-
const
|
|
1218
|
-
export {
|
|
1247
|
+
const description_116: string;
|
|
1248
|
+
export { description_116 as description };
|
|
1249
|
+
const type_58: string;
|
|
1250
|
+
export { type_58 as type };
|
|
1219
1251
|
export namespace items_6 {
|
|
1220
|
-
const
|
|
1221
|
-
export {
|
|
1252
|
+
const description_117: string;
|
|
1253
|
+
export { description_117 as description };
|
|
1222
1254
|
const anyOf_37: ({
|
|
1223
1255
|
type: string;
|
|
1224
1256
|
items: {
|
|
@@ -1237,53 +1269,53 @@ export declare namespace definitions {
|
|
|
1237
1269
|
export { items_6 as items };
|
|
1238
1270
|
}
|
|
1239
1271
|
namespace mainFiles {
|
|
1240
|
-
const description_116: string;
|
|
1241
|
-
export { description_116 as description };
|
|
1242
|
-
const type_57: string;
|
|
1243
|
-
export { type_57 as type };
|
|
1244
|
-
export namespace items_7 {
|
|
1245
|
-
const description_117: string;
|
|
1246
|
-
export { description_117 as description };
|
|
1247
|
-
const type_58: string;
|
|
1248
|
-
export { type_58 as type };
|
|
1249
|
-
const minLength_3: number;
|
|
1250
|
-
export { minLength_3 as minLength };
|
|
1251
|
-
}
|
|
1252
|
-
export { items_7 as items };
|
|
1253
|
-
}
|
|
1254
|
-
namespace modules {
|
|
1255
1272
|
const description_118: string;
|
|
1256
1273
|
export { description_118 as description };
|
|
1257
1274
|
const type_59: string;
|
|
1258
1275
|
export { type_59 as type };
|
|
1259
|
-
export namespace
|
|
1276
|
+
export namespace items_7 {
|
|
1260
1277
|
const description_119: string;
|
|
1261
1278
|
export { description_119 as description };
|
|
1262
1279
|
const type_60: string;
|
|
1263
1280
|
export { type_60 as type };
|
|
1264
|
-
const
|
|
1265
|
-
export {
|
|
1281
|
+
const minLength_3: number;
|
|
1282
|
+
export { minLength_3 as minLength };
|
|
1266
1283
|
}
|
|
1267
|
-
export {
|
|
1284
|
+
export { items_7 as items };
|
|
1268
1285
|
}
|
|
1269
|
-
namespace
|
|
1286
|
+
namespace modules {
|
|
1270
1287
|
const description_120: string;
|
|
1271
1288
|
export { description_120 as description };
|
|
1272
1289
|
const type_61: string;
|
|
1273
1290
|
export { type_61 as type };
|
|
1291
|
+
export namespace items_8 {
|
|
1292
|
+
const description_121: string;
|
|
1293
|
+
export { description_121 as description };
|
|
1294
|
+
const type_62: string;
|
|
1295
|
+
export { type_62 as type };
|
|
1296
|
+
const minLength_4: number;
|
|
1297
|
+
export { minLength_4 as minLength };
|
|
1298
|
+
}
|
|
1299
|
+
export { items_8 as items };
|
|
1300
|
+
}
|
|
1301
|
+
namespace preferRelative {
|
|
1302
|
+
const description_122: string;
|
|
1303
|
+
export { description_122 as description };
|
|
1304
|
+
const type_63: string;
|
|
1305
|
+
export { type_63 as type };
|
|
1274
1306
|
}
|
|
1275
1307
|
namespace tsConfigPath {
|
|
1276
|
-
const
|
|
1277
|
-
export {
|
|
1278
|
-
const
|
|
1279
|
-
export {
|
|
1308
|
+
const description_123: string;
|
|
1309
|
+
export { description_123 as description };
|
|
1310
|
+
const type_64: string;
|
|
1311
|
+
export { type_64 as type };
|
|
1280
1312
|
}
|
|
1281
1313
|
}
|
|
1282
|
-
export {
|
|
1314
|
+
export { properties_16 as properties };
|
|
1283
1315
|
}
|
|
1284
1316
|
namespace RuleSetCondition {
|
|
1285
|
-
const
|
|
1286
|
-
export {
|
|
1317
|
+
const description_124: string;
|
|
1318
|
+
export { description_124 as description };
|
|
1287
1319
|
const anyOf_38: ({
|
|
1288
1320
|
instanceof: string;
|
|
1289
1321
|
type?: undefined;
|
|
@@ -1300,21 +1332,21 @@ export declare namespace definitions {
|
|
|
1300
1332
|
export { anyOf_38 as anyOf };
|
|
1301
1333
|
}
|
|
1302
1334
|
namespace RuleSetConditionOrConditions {
|
|
1303
|
-
const
|
|
1304
|
-
export {
|
|
1335
|
+
const description_125: string;
|
|
1336
|
+
export { description_125 as description };
|
|
1305
1337
|
const anyOf_39: {
|
|
1306
1338
|
$ref: string;
|
|
1307
1339
|
}[];
|
|
1308
1340
|
export { anyOf_39 as anyOf };
|
|
1309
1341
|
}
|
|
1310
1342
|
namespace RuleSetConditions {
|
|
1311
|
-
const
|
|
1312
|
-
export {
|
|
1313
|
-
const
|
|
1314
|
-
export {
|
|
1343
|
+
const description_126: string;
|
|
1344
|
+
export { description_126 as description };
|
|
1345
|
+
const type_65: string;
|
|
1346
|
+
export { type_65 as type };
|
|
1315
1347
|
export namespace items_9 {
|
|
1316
|
-
const
|
|
1317
|
-
export {
|
|
1348
|
+
const description_127: string;
|
|
1349
|
+
export { description_127 as description };
|
|
1318
1350
|
const oneOf_17: {
|
|
1319
1351
|
$ref: string;
|
|
1320
1352
|
}[];
|
|
@@ -1323,102 +1355,102 @@ export declare namespace definitions {
|
|
|
1323
1355
|
export { items_9 as items };
|
|
1324
1356
|
}
|
|
1325
1357
|
namespace RuleSetLoader {
|
|
1326
|
-
const
|
|
1327
|
-
export {
|
|
1328
|
-
const
|
|
1329
|
-
export {
|
|
1358
|
+
const description_128: string;
|
|
1359
|
+
export { description_128 as description };
|
|
1360
|
+
const type_66: string;
|
|
1361
|
+
export { type_66 as type };
|
|
1330
1362
|
const minLength_5: number;
|
|
1331
1363
|
export { minLength_5 as minLength };
|
|
1332
1364
|
}
|
|
1333
1365
|
namespace RuleSetLoaderOptions {
|
|
1334
|
-
const
|
|
1335
|
-
export {
|
|
1366
|
+
const description_129: string;
|
|
1367
|
+
export { description_129 as description };
|
|
1336
1368
|
const anyOf_40: {
|
|
1337
1369
|
type: string;
|
|
1338
1370
|
}[];
|
|
1339
1371
|
export { anyOf_40 as anyOf };
|
|
1340
1372
|
}
|
|
1341
1373
|
namespace RuleSetLogicalConditions {
|
|
1342
|
-
const
|
|
1343
|
-
export {
|
|
1344
|
-
const
|
|
1345
|
-
export {
|
|
1346
|
-
const
|
|
1347
|
-
export {
|
|
1348
|
-
export namespace
|
|
1374
|
+
const description_130: string;
|
|
1375
|
+
export { description_130 as description };
|
|
1376
|
+
const type_67: string;
|
|
1377
|
+
export { type_67 as type };
|
|
1378
|
+
const additionalProperties_20: boolean;
|
|
1379
|
+
export { additionalProperties_20 as additionalProperties };
|
|
1380
|
+
export namespace properties_17 {
|
|
1349
1381
|
namespace and {
|
|
1350
|
-
const
|
|
1351
|
-
export {
|
|
1382
|
+
const description_131: string;
|
|
1383
|
+
export { description_131 as description };
|
|
1352
1384
|
const oneOf_18: {
|
|
1353
1385
|
$ref: string;
|
|
1354
1386
|
}[];
|
|
1355
1387
|
export { oneOf_18 as oneOf };
|
|
1356
1388
|
}
|
|
1357
1389
|
namespace not {
|
|
1358
|
-
const
|
|
1359
|
-
export {
|
|
1390
|
+
const description_132: string;
|
|
1391
|
+
export { description_132 as description };
|
|
1360
1392
|
const oneOf_19: {
|
|
1361
1393
|
$ref: string;
|
|
1362
1394
|
}[];
|
|
1363
1395
|
export { oneOf_19 as oneOf };
|
|
1364
1396
|
}
|
|
1365
1397
|
namespace or {
|
|
1366
|
-
const
|
|
1367
|
-
export {
|
|
1398
|
+
const description_133: string;
|
|
1399
|
+
export { description_133 as description };
|
|
1368
1400
|
const oneOf_20: {
|
|
1369
1401
|
$ref: string;
|
|
1370
1402
|
}[];
|
|
1371
1403
|
export { oneOf_20 as oneOf };
|
|
1372
1404
|
}
|
|
1373
1405
|
}
|
|
1374
|
-
export {
|
|
1406
|
+
export { properties_17 as properties };
|
|
1375
1407
|
}
|
|
1376
1408
|
namespace RuleSetRule {
|
|
1377
|
-
const
|
|
1378
|
-
export {
|
|
1379
|
-
const
|
|
1380
|
-
export {
|
|
1381
|
-
const
|
|
1382
|
-
export {
|
|
1383
|
-
export namespace
|
|
1409
|
+
const description_134: string;
|
|
1410
|
+
export { description_134 as description };
|
|
1411
|
+
const type_68: string;
|
|
1412
|
+
export { type_68 as type };
|
|
1413
|
+
const additionalProperties_21: boolean;
|
|
1414
|
+
export { additionalProperties_21 as additionalProperties };
|
|
1415
|
+
export namespace properties_18 {
|
|
1384
1416
|
export namespace exclude {
|
|
1385
|
-
const
|
|
1386
|
-
export {
|
|
1417
|
+
const description_135: string;
|
|
1418
|
+
export { description_135 as description };
|
|
1387
1419
|
const oneOf_21: {
|
|
1388
1420
|
$ref: string;
|
|
1389
1421
|
}[];
|
|
1390
1422
|
export { oneOf_21 as oneOf };
|
|
1391
1423
|
}
|
|
1392
1424
|
export namespace generator {
|
|
1393
|
-
const
|
|
1394
|
-
export {
|
|
1395
|
-
const
|
|
1396
|
-
export {
|
|
1425
|
+
const description_136: string;
|
|
1426
|
+
export { description_136 as description };
|
|
1427
|
+
const type_69: string;
|
|
1428
|
+
export { type_69 as type };
|
|
1397
1429
|
}
|
|
1398
1430
|
export namespace include {
|
|
1399
|
-
const
|
|
1400
|
-
export {
|
|
1431
|
+
const description_137: string;
|
|
1432
|
+
export { description_137 as description };
|
|
1401
1433
|
const oneOf_22: {
|
|
1402
1434
|
$ref: string;
|
|
1403
1435
|
}[];
|
|
1404
1436
|
export { oneOf_22 as oneOf };
|
|
1405
1437
|
}
|
|
1406
1438
|
export namespace issuer {
|
|
1407
|
-
const
|
|
1408
|
-
export {
|
|
1439
|
+
const description_138: string;
|
|
1440
|
+
export { description_138 as description };
|
|
1409
1441
|
const oneOf_23: {
|
|
1410
1442
|
$ref: string;
|
|
1411
1443
|
}[];
|
|
1412
1444
|
export { oneOf_23 as oneOf };
|
|
1413
1445
|
}
|
|
1414
1446
|
export namespace oneOf_24 {
|
|
1415
|
-
const
|
|
1416
|
-
export {
|
|
1417
|
-
const
|
|
1418
|
-
export {
|
|
1447
|
+
const description_139: string;
|
|
1448
|
+
export { description_139 as description };
|
|
1449
|
+
const type_70: string;
|
|
1450
|
+
export { type_70 as type };
|
|
1419
1451
|
export namespace items_10 {
|
|
1420
|
-
const
|
|
1421
|
-
export {
|
|
1452
|
+
const description_140: string;
|
|
1453
|
+
export { description_140 as description };
|
|
1422
1454
|
const oneOf_25: {
|
|
1423
1455
|
$ref: string;
|
|
1424
1456
|
}[];
|
|
@@ -1428,56 +1460,56 @@ export declare namespace definitions {
|
|
|
1428
1460
|
}
|
|
1429
1461
|
export { oneOf_24 as oneOf };
|
|
1430
1462
|
export namespace parser_1 {
|
|
1431
|
-
const
|
|
1432
|
-
export {
|
|
1433
|
-
const
|
|
1434
|
-
export {
|
|
1435
|
-
const
|
|
1436
|
-
export {
|
|
1463
|
+
const description_141: string;
|
|
1464
|
+
export { description_141 as description };
|
|
1465
|
+
const type_71: string;
|
|
1466
|
+
export { type_71 as type };
|
|
1467
|
+
const additionalProperties_22: boolean;
|
|
1468
|
+
export { additionalProperties_22 as additionalProperties };
|
|
1437
1469
|
}
|
|
1438
1470
|
export { parser_1 as parser };
|
|
1439
1471
|
export namespace resolve {
|
|
1440
|
-
const
|
|
1441
|
-
export {
|
|
1442
|
-
const
|
|
1443
|
-
export {
|
|
1472
|
+
const description_142: string;
|
|
1473
|
+
export { description_142 as description };
|
|
1474
|
+
const type_72: string;
|
|
1475
|
+
export { type_72 as type };
|
|
1444
1476
|
const oneOf_26: {
|
|
1445
1477
|
$ref: string;
|
|
1446
1478
|
}[];
|
|
1447
1479
|
export { oneOf_26 as oneOf };
|
|
1448
1480
|
}
|
|
1449
1481
|
export namespace resource {
|
|
1450
|
-
const
|
|
1451
|
-
export {
|
|
1482
|
+
const description_143: string;
|
|
1483
|
+
export { description_143 as description };
|
|
1452
1484
|
const oneOf_27: {
|
|
1453
1485
|
$ref: string;
|
|
1454
1486
|
}[];
|
|
1455
1487
|
export { oneOf_27 as oneOf };
|
|
1456
1488
|
}
|
|
1457
1489
|
export namespace resourceFragment {
|
|
1458
|
-
const
|
|
1459
|
-
export {
|
|
1490
|
+
const description_144: string;
|
|
1491
|
+
export { description_144 as description };
|
|
1460
1492
|
const oneOf_28: {
|
|
1461
1493
|
$ref: string;
|
|
1462
1494
|
}[];
|
|
1463
1495
|
export { oneOf_28 as oneOf };
|
|
1464
1496
|
}
|
|
1465
1497
|
export namespace resourceQuery {
|
|
1466
|
-
const
|
|
1467
|
-
export {
|
|
1498
|
+
const description_145: string;
|
|
1499
|
+
export { description_145 as description };
|
|
1468
1500
|
const oneOf_29: {
|
|
1469
1501
|
$ref: string;
|
|
1470
1502
|
}[];
|
|
1471
1503
|
export { oneOf_29 as oneOf };
|
|
1472
1504
|
}
|
|
1473
1505
|
export namespace rules_1 {
|
|
1474
|
-
const
|
|
1475
|
-
export {
|
|
1476
|
-
const
|
|
1477
|
-
export {
|
|
1506
|
+
const description_146: string;
|
|
1507
|
+
export { description_146 as description };
|
|
1508
|
+
const type_73: string;
|
|
1509
|
+
export { type_73 as type };
|
|
1478
1510
|
export namespace items_11 {
|
|
1479
|
-
const
|
|
1480
|
-
export {
|
|
1511
|
+
const description_147: string;
|
|
1512
|
+
export { description_147 as description };
|
|
1481
1513
|
const oneOf_30: {
|
|
1482
1514
|
$ref: string;
|
|
1483
1515
|
}[];
|
|
@@ -1487,47 +1519,47 @@ export declare namespace definitions {
|
|
|
1487
1519
|
}
|
|
1488
1520
|
export { rules_1 as rules };
|
|
1489
1521
|
export namespace sideEffects_1 {
|
|
1490
|
-
const
|
|
1491
|
-
export {
|
|
1492
|
-
const
|
|
1493
|
-
export {
|
|
1522
|
+
const description_148: string;
|
|
1523
|
+
export { description_148 as description };
|
|
1524
|
+
const type_74: string;
|
|
1525
|
+
export { type_74 as type };
|
|
1494
1526
|
}
|
|
1495
1527
|
export { sideEffects_1 as sideEffects };
|
|
1496
1528
|
export namespace test_1 {
|
|
1497
|
-
const
|
|
1498
|
-
export {
|
|
1529
|
+
const description_149: string;
|
|
1530
|
+
export { description_149 as description };
|
|
1499
1531
|
const oneOf_31: {
|
|
1500
1532
|
$ref: string;
|
|
1501
1533
|
}[];
|
|
1502
1534
|
export { oneOf_31 as oneOf };
|
|
1503
1535
|
}
|
|
1504
1536
|
export { test_1 as test };
|
|
1505
|
-
export namespace
|
|
1506
|
-
const
|
|
1507
|
-
export {
|
|
1508
|
-
const
|
|
1509
|
-
export {
|
|
1537
|
+
export namespace type_75 {
|
|
1538
|
+
const description_150: string;
|
|
1539
|
+
export { description_150 as description };
|
|
1540
|
+
const type_76: string;
|
|
1541
|
+
export { type_76 as type };
|
|
1510
1542
|
}
|
|
1511
|
-
export {
|
|
1543
|
+
export { type_75 as type };
|
|
1512
1544
|
export namespace use {
|
|
1513
|
-
const
|
|
1514
|
-
export {
|
|
1545
|
+
const description_151: string;
|
|
1546
|
+
export { description_151 as description };
|
|
1515
1547
|
const oneOf_32: {
|
|
1516
1548
|
$ref: string;
|
|
1517
1549
|
}[];
|
|
1518
1550
|
export { oneOf_32 as oneOf };
|
|
1519
1551
|
}
|
|
1520
1552
|
}
|
|
1521
|
-
export {
|
|
1553
|
+
export { properties_18 as properties };
|
|
1522
1554
|
}
|
|
1523
1555
|
namespace RuleSetRules {
|
|
1524
|
-
const
|
|
1525
|
-
export {
|
|
1526
|
-
const
|
|
1527
|
-
export {
|
|
1556
|
+
const description_152: string;
|
|
1557
|
+
export { description_152 as description };
|
|
1558
|
+
const type_77: string;
|
|
1559
|
+
export { type_77 as type };
|
|
1528
1560
|
export namespace items_12 {
|
|
1529
|
-
const
|
|
1530
|
-
export {
|
|
1561
|
+
const description_153: string;
|
|
1562
|
+
export { description_153 as description };
|
|
1531
1563
|
const anyOf_41: ({
|
|
1532
1564
|
enum: string[];
|
|
1533
1565
|
$ref?: undefined;
|
|
@@ -1540,8 +1572,8 @@ export declare namespace definitions {
|
|
|
1540
1572
|
export { items_12 as items };
|
|
1541
1573
|
}
|
|
1542
1574
|
namespace RuleSetUse {
|
|
1543
|
-
const
|
|
1544
|
-
export {
|
|
1575
|
+
const description_154: string;
|
|
1576
|
+
export { description_154 as description };
|
|
1545
1577
|
const anyOf_42: ({
|
|
1546
1578
|
type: string;
|
|
1547
1579
|
items: {
|
|
@@ -1559,8 +1591,8 @@ export declare namespace definitions {
|
|
|
1559
1591
|
export { anyOf_42 as anyOf };
|
|
1560
1592
|
}
|
|
1561
1593
|
namespace RuleSetUseItem {
|
|
1562
|
-
const
|
|
1563
|
-
export {
|
|
1594
|
+
const description_155: string;
|
|
1595
|
+
export { description_155 as description };
|
|
1564
1596
|
const anyOf_43: ({
|
|
1565
1597
|
type: string;
|
|
1566
1598
|
additionalProperties: boolean;
|
|
@@ -1588,109 +1620,109 @@ export declare namespace definitions {
|
|
|
1588
1620
|
export { anyOf_43 as anyOf };
|
|
1589
1621
|
}
|
|
1590
1622
|
namespace SnapshotOptions {
|
|
1591
|
-
const
|
|
1592
|
-
export {
|
|
1593
|
-
const
|
|
1594
|
-
export {
|
|
1595
|
-
const
|
|
1596
|
-
export {
|
|
1597
|
-
export namespace
|
|
1623
|
+
const description_156: string;
|
|
1624
|
+
export { description_156 as description };
|
|
1625
|
+
const type_78: string;
|
|
1626
|
+
export { type_78 as type };
|
|
1627
|
+
const additionalProperties_23: boolean;
|
|
1628
|
+
export { additionalProperties_23 as additionalProperties };
|
|
1629
|
+
export namespace properties_19 {
|
|
1598
1630
|
export namespace module_1 {
|
|
1599
|
-
const
|
|
1600
|
-
export {
|
|
1601
|
-
const
|
|
1602
|
-
export {
|
|
1603
|
-
const
|
|
1604
|
-
export {
|
|
1605
|
-
export namespace
|
|
1631
|
+
const description_157: string;
|
|
1632
|
+
export { description_157 as description };
|
|
1633
|
+
const type_79: string;
|
|
1634
|
+
export { type_79 as type };
|
|
1635
|
+
const additionalProperties_24: boolean;
|
|
1636
|
+
export { additionalProperties_24 as additionalProperties };
|
|
1637
|
+
export namespace properties_20 {
|
|
1606
1638
|
namespace hash {
|
|
1607
|
-
const
|
|
1608
|
-
export {
|
|
1609
|
-
const
|
|
1610
|
-
export {
|
|
1639
|
+
const description_158: string;
|
|
1640
|
+
export { description_158 as description };
|
|
1641
|
+
const type_80: string;
|
|
1642
|
+
export { type_80 as type };
|
|
1611
1643
|
}
|
|
1612
1644
|
namespace timestamp {
|
|
1613
|
-
const
|
|
1614
|
-
export {
|
|
1615
|
-
const
|
|
1616
|
-
export {
|
|
1645
|
+
const description_159: string;
|
|
1646
|
+
export { description_159 as description };
|
|
1647
|
+
const type_81: string;
|
|
1648
|
+
export { type_81 as type };
|
|
1617
1649
|
}
|
|
1618
1650
|
}
|
|
1619
|
-
export {
|
|
1651
|
+
export { properties_20 as properties };
|
|
1620
1652
|
}
|
|
1621
1653
|
export { module_1 as module };
|
|
1622
1654
|
export namespace resolve_1 {
|
|
1623
|
-
const
|
|
1624
|
-
export {
|
|
1625
|
-
const
|
|
1626
|
-
export {
|
|
1627
|
-
const
|
|
1628
|
-
export {
|
|
1629
|
-
export namespace
|
|
1655
|
+
const description_160: string;
|
|
1656
|
+
export { description_160 as description };
|
|
1657
|
+
const type_82: string;
|
|
1658
|
+
export { type_82 as type };
|
|
1659
|
+
const additionalProperties_25: boolean;
|
|
1660
|
+
export { additionalProperties_25 as additionalProperties };
|
|
1661
|
+
export namespace properties_21 {
|
|
1630
1662
|
export namespace hash_1 {
|
|
1631
|
-
const
|
|
1632
|
-
export {
|
|
1633
|
-
const
|
|
1634
|
-
export {
|
|
1663
|
+
const description_161: string;
|
|
1664
|
+
export { description_161 as description };
|
|
1665
|
+
const type_83: string;
|
|
1666
|
+
export { type_83 as type };
|
|
1635
1667
|
}
|
|
1636
1668
|
export { hash_1 as hash };
|
|
1637
1669
|
export namespace timestamp_1 {
|
|
1638
|
-
const
|
|
1639
|
-
export {
|
|
1640
|
-
const
|
|
1641
|
-
export {
|
|
1670
|
+
const description_162: string;
|
|
1671
|
+
export { description_162 as description };
|
|
1672
|
+
const type_84: string;
|
|
1673
|
+
export { type_84 as type };
|
|
1642
1674
|
}
|
|
1643
1675
|
export { timestamp_1 as timestamp };
|
|
1644
1676
|
}
|
|
1645
|
-
export {
|
|
1677
|
+
export { properties_21 as properties };
|
|
1646
1678
|
}
|
|
1647
1679
|
export { resolve_1 as resolve };
|
|
1648
1680
|
}
|
|
1649
|
-
export {
|
|
1681
|
+
export { properties_19 as properties };
|
|
1650
1682
|
}
|
|
1651
1683
|
namespace StatsOptions {
|
|
1652
|
-
const
|
|
1653
|
-
export {
|
|
1654
|
-
const
|
|
1655
|
-
export {
|
|
1656
|
-
const
|
|
1657
|
-
export {
|
|
1658
|
-
export namespace
|
|
1684
|
+
const description_163: string;
|
|
1685
|
+
export { description_163 as description };
|
|
1686
|
+
const type_85: string;
|
|
1687
|
+
export { type_85 as type };
|
|
1688
|
+
const additionalProperties_26: boolean;
|
|
1689
|
+
export { additionalProperties_26 as additionalProperties };
|
|
1690
|
+
export namespace properties_22 {
|
|
1659
1691
|
export namespace all {
|
|
1660
|
-
const description_162: string;
|
|
1661
|
-
export { description_162 as description };
|
|
1662
|
-
const type_84: string;
|
|
1663
|
-
export { type_84 as type };
|
|
1664
|
-
}
|
|
1665
|
-
export namespace assets {
|
|
1666
|
-
const description_163: string;
|
|
1667
|
-
export { description_163 as description };
|
|
1668
|
-
const type_85: string;
|
|
1669
|
-
export { type_85 as type };
|
|
1670
|
-
}
|
|
1671
|
-
export namespace chunkGroups {
|
|
1672
1692
|
const description_164: string;
|
|
1673
1693
|
export { description_164 as description };
|
|
1674
1694
|
const type_86: string;
|
|
1675
1695
|
export { type_86 as type };
|
|
1676
1696
|
}
|
|
1677
|
-
export namespace
|
|
1697
|
+
export namespace assets {
|
|
1678
1698
|
const description_165: string;
|
|
1679
1699
|
export { description_165 as description };
|
|
1680
1700
|
const type_87: string;
|
|
1681
1701
|
export { type_87 as type };
|
|
1682
1702
|
}
|
|
1683
|
-
export
|
|
1684
|
-
export namespace colors_1 {
|
|
1703
|
+
export namespace chunkGroups {
|
|
1685
1704
|
const description_166: string;
|
|
1686
1705
|
export { description_166 as description };
|
|
1687
1706
|
const type_88: string;
|
|
1688
1707
|
export { type_88 as type };
|
|
1689
1708
|
}
|
|
1690
|
-
export
|
|
1691
|
-
export namespace entrypoints {
|
|
1709
|
+
export namespace chunks_2 {
|
|
1692
1710
|
const description_167: string;
|
|
1693
1711
|
export { description_167 as description };
|
|
1712
|
+
const type_89: string;
|
|
1713
|
+
export { type_89 as type };
|
|
1714
|
+
}
|
|
1715
|
+
export { chunks_2 as chunks };
|
|
1716
|
+
export namespace colors_1 {
|
|
1717
|
+
const description_168: string;
|
|
1718
|
+
export { description_168 as description };
|
|
1719
|
+
const type_90: string;
|
|
1720
|
+
export { type_90 as type };
|
|
1721
|
+
}
|
|
1722
|
+
export { colors_1 as colors };
|
|
1723
|
+
export namespace entrypoints {
|
|
1724
|
+
const description_169: string;
|
|
1725
|
+
export { description_169 as description };
|
|
1694
1726
|
const anyOf_44: ({
|
|
1695
1727
|
enum: string[];
|
|
1696
1728
|
type?: undefined;
|
|
@@ -1701,70 +1733,70 @@ export declare namespace definitions {
|
|
|
1701
1733
|
export { anyOf_44 as anyOf };
|
|
1702
1734
|
}
|
|
1703
1735
|
export namespace errors {
|
|
1704
|
-
const description_168: string;
|
|
1705
|
-
export { description_168 as description };
|
|
1706
|
-
const type_89: string;
|
|
1707
|
-
export { type_89 as type };
|
|
1708
|
-
}
|
|
1709
|
-
export namespace errorsCount {
|
|
1710
|
-
const description_169: string;
|
|
1711
|
-
export { description_169 as description };
|
|
1712
|
-
const type_90: string;
|
|
1713
|
-
export { type_90 as type };
|
|
1714
|
-
}
|
|
1715
|
-
export namespace hash_2 {
|
|
1716
1736
|
const description_170: string;
|
|
1717
1737
|
export { description_170 as description };
|
|
1718
1738
|
const type_91: string;
|
|
1719
1739
|
export { type_91 as type };
|
|
1720
1740
|
}
|
|
1721
|
-
export
|
|
1722
|
-
export namespace modules_1 {
|
|
1741
|
+
export namespace errorsCount {
|
|
1723
1742
|
const description_171: string;
|
|
1724
1743
|
export { description_171 as description };
|
|
1725
1744
|
const type_92: string;
|
|
1726
1745
|
export { type_92 as type };
|
|
1727
1746
|
}
|
|
1728
|
-
export
|
|
1729
|
-
export namespace preset {
|
|
1747
|
+
export namespace hash_2 {
|
|
1730
1748
|
const description_172: string;
|
|
1731
1749
|
export { description_172 as description };
|
|
1732
|
-
const
|
|
1733
|
-
|
|
1734
|
-
}[];
|
|
1735
|
-
export { anyOf_45 as anyOf };
|
|
1750
|
+
const type_93: string;
|
|
1751
|
+
export { type_93 as type };
|
|
1736
1752
|
}
|
|
1737
|
-
export
|
|
1753
|
+
export { hash_2 as hash };
|
|
1754
|
+
export namespace modules_1 {
|
|
1738
1755
|
const description_173: string;
|
|
1739
1756
|
export { description_173 as description };
|
|
1740
|
-
const
|
|
1741
|
-
export {
|
|
1757
|
+
const type_94: string;
|
|
1758
|
+
export { type_94 as type };
|
|
1742
1759
|
}
|
|
1743
|
-
export {
|
|
1744
|
-
export namespace
|
|
1760
|
+
export { modules_1 as modules };
|
|
1761
|
+
export namespace preset {
|
|
1745
1762
|
const description_174: string;
|
|
1746
1763
|
export { description_174 as description };
|
|
1747
|
-
const
|
|
1748
|
-
|
|
1764
|
+
const anyOf_45: {
|
|
1765
|
+
type: string;
|
|
1766
|
+
}[];
|
|
1767
|
+
export { anyOf_45 as anyOf };
|
|
1749
1768
|
}
|
|
1750
|
-
export namespace
|
|
1769
|
+
export namespace publicPath_1 {
|
|
1751
1770
|
const description_175: string;
|
|
1752
1771
|
export { description_175 as description };
|
|
1753
1772
|
const type_95: string;
|
|
1754
1773
|
export { type_95 as type };
|
|
1755
1774
|
}
|
|
1756
|
-
export
|
|
1775
|
+
export { publicPath_1 as publicPath };
|
|
1776
|
+
export namespace reasons {
|
|
1757
1777
|
const description_176: string;
|
|
1758
1778
|
export { description_176 as description };
|
|
1759
1779
|
const type_96: string;
|
|
1760
1780
|
export { type_96 as type };
|
|
1761
1781
|
}
|
|
1782
|
+
export namespace warnings {
|
|
1783
|
+
const description_177: string;
|
|
1784
|
+
export { description_177 as description };
|
|
1785
|
+
const type_97: string;
|
|
1786
|
+
export { type_97 as type };
|
|
1787
|
+
}
|
|
1788
|
+
export namespace warningsCount {
|
|
1789
|
+
const description_178: string;
|
|
1790
|
+
export { description_178 as description };
|
|
1791
|
+
const type_98: string;
|
|
1792
|
+
export { type_98 as type };
|
|
1793
|
+
}
|
|
1762
1794
|
}
|
|
1763
|
-
export {
|
|
1795
|
+
export { properties_22 as properties };
|
|
1764
1796
|
}
|
|
1765
1797
|
namespace StatsValue {
|
|
1766
|
-
const
|
|
1767
|
-
export {
|
|
1798
|
+
const description_179: string;
|
|
1799
|
+
export { description_179 as description };
|
|
1768
1800
|
const anyOf_46: ({
|
|
1769
1801
|
enum: string[];
|
|
1770
1802
|
type?: undefined;
|
|
@@ -1781,14 +1813,14 @@ export declare namespace definitions {
|
|
|
1781
1813
|
export { anyOf_46 as anyOf };
|
|
1782
1814
|
}
|
|
1783
1815
|
namespace StrictModuleErrorHandling {
|
|
1784
|
-
const
|
|
1785
|
-
export {
|
|
1786
|
-
const
|
|
1787
|
-
export {
|
|
1816
|
+
const description_180: string;
|
|
1817
|
+
export { description_180 as description };
|
|
1818
|
+
const type_99: string;
|
|
1819
|
+
export { type_99 as type };
|
|
1788
1820
|
}
|
|
1789
1821
|
namespace Target {
|
|
1790
|
-
const
|
|
1791
|
-
export {
|
|
1822
|
+
const description_181: string;
|
|
1823
|
+
export { description_181 as description };
|
|
1792
1824
|
const anyOf_47: ({
|
|
1793
1825
|
type: string;
|
|
1794
1826
|
items: {
|
|
@@ -1815,48 +1847,48 @@ export declare namespace definitions {
|
|
|
1815
1847
|
export { anyOf_47 as anyOf };
|
|
1816
1848
|
}
|
|
1817
1849
|
namespace UmdNamedDefine {
|
|
1818
|
-
const description_180: string;
|
|
1819
|
-
export { description_180 as description };
|
|
1820
|
-
const type_98: string;
|
|
1821
|
-
export { type_98 as type };
|
|
1822
|
-
}
|
|
1823
|
-
namespace UniqueName {
|
|
1824
|
-
const description_181: string;
|
|
1825
|
-
export { description_181 as description };
|
|
1826
|
-
const type_99: string;
|
|
1827
|
-
export { type_99 as type };
|
|
1828
|
-
const minLength_6: number;
|
|
1829
|
-
export { minLength_6 as minLength };
|
|
1830
|
-
}
|
|
1831
|
-
namespace Watch {
|
|
1832
1850
|
const description_182: string;
|
|
1833
1851
|
export { description_182 as description };
|
|
1834
1852
|
const type_100: string;
|
|
1835
1853
|
export { type_100 as type };
|
|
1836
1854
|
}
|
|
1837
|
-
namespace
|
|
1855
|
+
namespace UniqueName {
|
|
1838
1856
|
const description_183: string;
|
|
1839
1857
|
export { description_183 as description };
|
|
1840
1858
|
const type_101: string;
|
|
1841
1859
|
export { type_101 as type };
|
|
1842
|
-
const
|
|
1843
|
-
export {
|
|
1844
|
-
|
|
1860
|
+
const minLength_6: number;
|
|
1861
|
+
export { minLength_6 as minLength };
|
|
1862
|
+
}
|
|
1863
|
+
namespace Watch {
|
|
1864
|
+
const description_184: string;
|
|
1865
|
+
export { description_184 as description };
|
|
1866
|
+
const type_102: string;
|
|
1867
|
+
export { type_102 as type };
|
|
1868
|
+
}
|
|
1869
|
+
namespace WatchOptions {
|
|
1870
|
+
const description_185: string;
|
|
1871
|
+
export { description_185 as description };
|
|
1872
|
+
const type_103: string;
|
|
1873
|
+
export { type_103 as type };
|
|
1874
|
+
const additionalProperties_27: boolean;
|
|
1875
|
+
export { additionalProperties_27 as additionalProperties };
|
|
1876
|
+
export namespace properties_23 {
|
|
1845
1877
|
namespace aggregateTimeout {
|
|
1846
|
-
const
|
|
1847
|
-
export {
|
|
1848
|
-
const
|
|
1849
|
-
export {
|
|
1878
|
+
const description_186: string;
|
|
1879
|
+
export { description_186 as description };
|
|
1880
|
+
const type_104: string;
|
|
1881
|
+
export { type_104 as type };
|
|
1850
1882
|
}
|
|
1851
1883
|
namespace followSymlinks {
|
|
1852
|
-
const
|
|
1853
|
-
export {
|
|
1854
|
-
const
|
|
1855
|
-
export {
|
|
1884
|
+
const description_187: string;
|
|
1885
|
+
export { description_187 as description };
|
|
1886
|
+
const type_105: string;
|
|
1887
|
+
export { type_105 as type };
|
|
1856
1888
|
}
|
|
1857
1889
|
namespace ignored {
|
|
1858
|
-
const
|
|
1859
|
-
export {
|
|
1890
|
+
const description_188: string;
|
|
1891
|
+
export { description_188 as description };
|
|
1860
1892
|
const anyOf_48: ({
|
|
1861
1893
|
type: string;
|
|
1862
1894
|
items: {
|
|
@@ -1883,8 +1915,8 @@ export declare namespace definitions {
|
|
|
1883
1915
|
export { anyOf_48 as anyOf };
|
|
1884
1916
|
}
|
|
1885
1917
|
namespace poll {
|
|
1886
|
-
const
|
|
1887
|
-
export {
|
|
1918
|
+
const description_189: string;
|
|
1919
|
+
export { description_189 as description };
|
|
1888
1920
|
const anyOf_49: {
|
|
1889
1921
|
description: string;
|
|
1890
1922
|
type: string;
|
|
@@ -1892,45 +1924,45 @@ export declare namespace definitions {
|
|
|
1892
1924
|
export { anyOf_49 as anyOf };
|
|
1893
1925
|
}
|
|
1894
1926
|
namespace stdin {
|
|
1895
|
-
const
|
|
1896
|
-
export {
|
|
1897
|
-
const
|
|
1898
|
-
export {
|
|
1927
|
+
const description_190: string;
|
|
1928
|
+
export { description_190 as description };
|
|
1929
|
+
const type_106: string;
|
|
1930
|
+
export { type_106 as type };
|
|
1899
1931
|
}
|
|
1900
1932
|
}
|
|
1901
|
-
export {
|
|
1933
|
+
export { properties_23 as properties };
|
|
1902
1934
|
}
|
|
1903
1935
|
namespace RspackPluginFunction {
|
|
1904
|
-
const
|
|
1905
|
-
export {
|
|
1936
|
+
const description_191: string;
|
|
1937
|
+
export { description_191 as description };
|
|
1906
1938
|
const _instanceof: string;
|
|
1907
1939
|
export { _instanceof as instanceof };
|
|
1908
1940
|
}
|
|
1909
1941
|
namespace RspackPluginInstance {
|
|
1910
|
-
const
|
|
1911
|
-
export {
|
|
1912
|
-
const
|
|
1913
|
-
export {
|
|
1914
|
-
const
|
|
1915
|
-
export {
|
|
1916
|
-
export namespace
|
|
1942
|
+
const description_192: string;
|
|
1943
|
+
export { description_192 as description };
|
|
1944
|
+
const type_107: string;
|
|
1945
|
+
export { type_107 as type };
|
|
1946
|
+
const additionalProperties_28: boolean;
|
|
1947
|
+
export { additionalProperties_28 as additionalProperties };
|
|
1948
|
+
export namespace properties_24 {
|
|
1917
1949
|
namespace apply {
|
|
1918
|
-
const
|
|
1919
|
-
export {
|
|
1950
|
+
const description_193: string;
|
|
1951
|
+
export { description_193 as description };
|
|
1920
1952
|
const _instanceof_1: string;
|
|
1921
1953
|
export { _instanceof_1 as instanceof };
|
|
1922
1954
|
}
|
|
1923
1955
|
}
|
|
1924
|
-
export {
|
|
1956
|
+
export { properties_24 as properties };
|
|
1925
1957
|
const required_2: string[];
|
|
1926
1958
|
export { required_2 as required };
|
|
1927
1959
|
}
|
|
1928
1960
|
}
|
|
1929
1961
|
export declare const title: string;
|
|
1930
|
-
declare const
|
|
1931
|
-
declare const
|
|
1932
|
-
declare const
|
|
1933
|
-
export declare namespace
|
|
1962
|
+
declare const description_194: string;
|
|
1963
|
+
declare const type_108: string;
|
|
1964
|
+
declare const additionalProperties_29: boolean;
|
|
1965
|
+
export declare namespace properties_25 {
|
|
1934
1966
|
export namespace cache {
|
|
1935
1967
|
const $ref_26: string;
|
|
1936
1968
|
export { $ref_26 as $ref };
|
|
@@ -1967,73 +1999,78 @@ export declare namespace properties_24 {
|
|
|
1967
1999
|
const $ref_34: string;
|
|
1968
2000
|
export { $ref_34 as $ref };
|
|
1969
2001
|
}
|
|
1970
|
-
export namespace
|
|
2002
|
+
export namespace externalsPresets {
|
|
1971
2003
|
const $ref_35: string;
|
|
1972
2004
|
export { $ref_35 as $ref };
|
|
1973
2005
|
}
|
|
1974
|
-
export namespace
|
|
2006
|
+
export namespace infrastructureLogging {
|
|
1975
2007
|
const $ref_36: string;
|
|
1976
2008
|
export { $ref_36 as $ref };
|
|
1977
2009
|
}
|
|
1978
|
-
export namespace
|
|
2010
|
+
export namespace mode {
|
|
1979
2011
|
const $ref_37: string;
|
|
1980
2012
|
export { $ref_37 as $ref };
|
|
1981
2013
|
}
|
|
1982
|
-
export
|
|
1983
|
-
export namespace name_2 {
|
|
2014
|
+
export namespace module_2 {
|
|
1984
2015
|
const $ref_38: string;
|
|
1985
2016
|
export { $ref_38 as $ref };
|
|
1986
2017
|
}
|
|
1987
|
-
export {
|
|
1988
|
-
export namespace
|
|
2018
|
+
export { module_2 as module };
|
|
2019
|
+
export namespace name_2 {
|
|
1989
2020
|
const $ref_39: string;
|
|
1990
2021
|
export { $ref_39 as $ref };
|
|
1991
2022
|
}
|
|
1992
|
-
export
|
|
2023
|
+
export { name_2 as name };
|
|
2024
|
+
export namespace node_1 {
|
|
1993
2025
|
const $ref_40: string;
|
|
1994
2026
|
export { $ref_40 as $ref };
|
|
1995
2027
|
}
|
|
1996
|
-
export
|
|
2028
|
+
export { node_1 as node };
|
|
2029
|
+
export namespace optimization {
|
|
1997
2030
|
const $ref_41: string;
|
|
1998
2031
|
export { $ref_41 as $ref };
|
|
1999
2032
|
}
|
|
2000
|
-
export namespace
|
|
2033
|
+
export namespace output {
|
|
2001
2034
|
const $ref_42: string;
|
|
2002
2035
|
export { $ref_42 as $ref };
|
|
2003
2036
|
}
|
|
2004
|
-
export namespace
|
|
2037
|
+
export namespace plugins {
|
|
2005
2038
|
const $ref_43: string;
|
|
2006
2039
|
export { $ref_43 as $ref };
|
|
2007
2040
|
}
|
|
2008
|
-
export
|
|
2009
|
-
export namespace snapshot {
|
|
2041
|
+
export namespace resolve_2 {
|
|
2010
2042
|
const $ref_44: string;
|
|
2011
2043
|
export { $ref_44 as $ref };
|
|
2012
2044
|
}
|
|
2013
|
-
export
|
|
2045
|
+
export { resolve_2 as resolve };
|
|
2046
|
+
export namespace snapshot {
|
|
2014
2047
|
const $ref_45: string;
|
|
2015
2048
|
export { $ref_45 as $ref };
|
|
2016
2049
|
}
|
|
2017
|
-
export namespace
|
|
2050
|
+
export namespace stats {
|
|
2018
2051
|
const $ref_46: string;
|
|
2019
2052
|
export { $ref_46 as $ref };
|
|
2020
2053
|
}
|
|
2021
|
-
export namespace
|
|
2054
|
+
export namespace target {
|
|
2022
2055
|
const $ref_47: string;
|
|
2023
2056
|
export { $ref_47 as $ref };
|
|
2024
2057
|
}
|
|
2025
|
-
export namespace
|
|
2058
|
+
export namespace watch {
|
|
2026
2059
|
const $ref_48: string;
|
|
2027
2060
|
export { $ref_48 as $ref };
|
|
2028
2061
|
}
|
|
2062
|
+
export namespace watchOptions {
|
|
2063
|
+
const $ref_49: string;
|
|
2064
|
+
export { $ref_49 as $ref };
|
|
2065
|
+
}
|
|
2029
2066
|
export namespace builtins {
|
|
2030
|
-
const
|
|
2031
|
-
export {
|
|
2032
|
-
const
|
|
2033
|
-
export {
|
|
2034
|
-
const
|
|
2035
|
-
export {
|
|
2067
|
+
const description_195: string;
|
|
2068
|
+
export { description_195 as description };
|
|
2069
|
+
const type_109: string;
|
|
2070
|
+
export { type_109 as type };
|
|
2071
|
+
const additionalProperties_30: boolean;
|
|
2072
|
+
export { additionalProperties_30 as additionalProperties };
|
|
2036
2073
|
}
|
|
2037
2074
|
}
|
|
2038
|
-
export {
|
|
2075
|
+
export { description_194 as description, type_108 as type, additionalProperties_29 as additionalProperties, properties_25 as properties };
|
|
2039
2076
|
//# sourceMappingURL=schema.d.ts.map
|