@rspack/core 0.1.0 → 0.1.2

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