@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.
- package/dist/compilation.d.ts +22 -5
- package/dist/compilation.d.ts.map +1 -1
- package/dist/compilation.js +25 -6
- package/dist/compilation.js.map +1 -1
- package/dist/compiler.d.ts +3 -3
- package/dist/compiler.d.ts.map +1 -1
- package/dist/compiler.js +30 -12
- 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 +5 -25
- package/dist/config/adapter-rule-use.js.map +1 -1
- package/dist/config/adapter.d.ts.map +1 -1
- package/dist/config/adapter.js +42 -11
- 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 +28 -26
- 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 +2302 -2180
- package/dist/config/schema.check.js.map +1 -1
- package/dist/config/schema.d.ts +668 -625
- package/dist/config/schema.js +38 -14
- package/dist/config/schema.js.map +1 -1
- package/dist/config/types.d.ts +71 -62
- package/dist/config/types.d.ts.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.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/multiStats.d.ts +1 -0
- package/dist/multiStats.d.ts.map +1 -1
- package/dist/multiStats.js +2 -0
- package/dist/multiStats.js.map +1 -1
- package/dist/normalModuleFactory.d.ts +18 -0
- package/dist/normalModuleFactory.d.ts.map +1 -0
- package/dist/normalModuleFactory.js +44 -0
- package/dist/normalModuleFactory.js.map +1 -0
- 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 +11 -1
- package/dist/stats.d.ts.map +1 -1
- package/dist/stats.js +8 -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 +9 -9
- 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,62 @@ 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
|
-
namespace
|
|
673
|
-
const
|
|
674
|
-
export {
|
|
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 {
|
|
717
|
+
export { properties_10 as properties };
|
|
680
718
|
}
|
|
681
719
|
namespace Optimization {
|
|
682
|
-
const
|
|
683
|
-
export {
|
|
684
|
-
const
|
|
685
|
-
export {
|
|
686
|
-
const
|
|
687
|
-
export {
|
|
688
|
-
export namespace
|
|
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
|
|
691
|
-
export {
|
|
692
|
-
const
|
|
693
|
-
export {
|
|
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
|
|
697
|
-
export {
|
|
698
|
-
const
|
|
699
|
-
export {
|
|
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
|
|
703
|
-
export {
|
|
704
|
-
const
|
|
705
|
-
export {
|
|
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
|
|
708
|
-
export {
|
|
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
|
|
722
|
-
export {
|
|
723
|
-
const
|
|
724
|
-
export {
|
|
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
|
|
728
|
-
export {
|
|
729
|
-
const
|
|
730
|
-
export {
|
|
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
|
|
738
|
-
export {
|
|
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
|
|
750
|
-
export {
|
|
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 {
|
|
799
|
+
export { properties_11 as properties };
|
|
762
800
|
}
|
|
763
801
|
namespace OptimizationRuntimeChunk {
|
|
764
|
-
const
|
|
765
|
-
export {
|
|
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
|
|
797
|
-
export {
|
|
798
|
-
const
|
|
799
|
-
export {
|
|
800
|
-
const
|
|
801
|
-
export {
|
|
802
|
-
export namespace
|
|
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
|
|
805
|
-
export {
|
|
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
|
|
817
|
-
export {
|
|
818
|
-
const
|
|
819
|
-
export {
|
|
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
|
|
824
|
-
export {
|
|
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
|
|
843
|
-
export {
|
|
844
|
-
const
|
|
845
|
-
export {
|
|
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
|
|
849
|
-
export {
|
|
850
|
-
const
|
|
851
|
-
export {
|
|
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
|
|
855
|
-
export {
|
|
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 {
|
|
900
|
+
export { properties_12 as properties };
|
|
863
901
|
}
|
|
864
902
|
namespace OptimizationSplitChunksOptions {
|
|
865
|
-
const
|
|
866
|
-
export {
|
|
867
|
-
const
|
|
868
|
-
export {
|
|
869
|
-
const
|
|
870
|
-
export {
|
|
871
|
-
export namespace
|
|
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
|
|
874
|
-
export {
|
|
875
|
-
const
|
|
876
|
-
export {
|
|
877
|
-
export namespace
|
|
878
|
-
const
|
|
879
|
-
export {
|
|
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 {
|
|
923
|
+
export { additionalProperties_15 as additionalProperties };
|
|
886
924
|
}
|
|
887
925
|
export namespace chunks_1 {
|
|
888
|
-
const
|
|
889
|
-
export {
|
|
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
|
|
898
|
-
export {
|
|
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
|
|
906
|
-
export {
|
|
907
|
-
const
|
|
908
|
-
export {
|
|
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
|
|
914
|
-
export {
|
|
915
|
-
const
|
|
916
|
-
export {
|
|
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
|
|
922
|
-
export {
|
|
923
|
-
const
|
|
924
|
-
export {
|
|
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
|
|
931
|
-
export {
|
|
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
|
|
939
|
-
export {
|
|
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 {
|
|
984
|
+
export { properties_13 as properties };
|
|
947
985
|
}
|
|
948
986
|
namespace OptimizationSplitChunksSizes {
|
|
949
|
-
const
|
|
950
|
-
export {
|
|
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
|
|
960
|
-
export {
|
|
961
|
-
const
|
|
962
|
-
export {
|
|
963
|
-
const
|
|
964
|
-
export {
|
|
965
|
-
export namespace
|
|
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 {
|
|
1087
|
+
export { properties_14 as properties };
|
|
1050
1088
|
}
|
|
1051
1089
|
namespace OutputModule {
|
|
1052
|
-
const
|
|
1053
|
-
export {
|
|
1054
|
-
const
|
|
1055
|
-
export {
|
|
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
|
|
1059
|
-
export {
|
|
1060
|
-
const
|
|
1061
|
-
export {
|
|
1062
|
-
export namespace
|
|
1063
|
-
const
|
|
1064
|
-
export {
|
|
1065
|
-
const
|
|
1066
|
-
export {
|
|
1067
|
-
const
|
|
1068
|
-
export {
|
|
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 {
|
|
1071
|
-
export namespace
|
|
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 {
|
|
1115
|
+
export { properties_15 as properties };
|
|
1078
1116
|
}
|
|
1079
1117
|
namespace Path {
|
|
1080
|
-
const
|
|
1081
|
-
export {
|
|
1082
|
-
const
|
|
1083
|
-
export {
|
|
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
|
|
1087
|
-
export {
|
|
1088
|
-
const
|
|
1089
|
-
export {
|
|
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
|
|
1092
|
-
export {
|
|
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
|
|
1102
|
-
export {
|
|
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
|
|
1114
|
-
export {
|
|
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
|
|
1122
|
-
export {
|
|
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
|
|
1130
|
-
export {
|
|
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
|
|
1164
|
-
export {
|
|
1165
|
-
const
|
|
1166
|
-
export {
|
|
1167
|
-
const
|
|
1168
|
-
export {
|
|
1169
|
-
export namespace
|
|
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
|
|
1176
|
-
export {
|
|
1177
|
-
const
|
|
1178
|
-
export {
|
|
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
|
|
1182
|
-
export {
|
|
1183
|
-
const
|
|
1184
|
-
export {
|
|
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
|
|
1187
|
-
export {
|
|
1188
|
-
const
|
|
1189
|
-
export {
|
|
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
|
|
1195
|
-
export {
|
|
1196
|
-
const
|
|
1197
|
-
export {
|
|
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
|
|
1200
|
-
export {
|
|
1201
|
-
const
|
|
1202
|
-
export {
|
|
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
|
|
1208
|
-
export {
|
|
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
|
|
1216
|
-
export {
|
|
1217
|
-
const
|
|
1218
|
-
export {
|
|
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
|
|
1221
|
-
export {
|
|
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
|
|
1241
|
-
export {
|
|
1242
|
-
const
|
|
1243
|
-
export {
|
|
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
|
|
1246
|
-
export {
|
|
1247
|
-
const
|
|
1248
|
-
export {
|
|
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
|
|
1256
|
-
export {
|
|
1257
|
-
const
|
|
1258
|
-
export {
|
|
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
|
|
1261
|
-
export {
|
|
1262
|
-
const
|
|
1263
|
-
export {
|
|
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
|
|
1271
|
-
export {
|
|
1272
|
-
const
|
|
1273
|
-
export {
|
|
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
|
|
1277
|
-
export {
|
|
1278
|
-
const
|
|
1279
|
-
export {
|
|
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 {
|
|
1320
|
+
export { properties_16 as properties };
|
|
1283
1321
|
}
|
|
1284
1322
|
namespace RuleSetCondition {
|
|
1285
|
-
const
|
|
1286
|
-
export {
|
|
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
|
|
1304
|
-
export {
|
|
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
|
|
1312
|
-
export {
|
|
1313
|
-
const
|
|
1314
|
-
export {
|
|
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
|
|
1317
|
-
export {
|
|
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
|
|
1327
|
-
export {
|
|
1328
|
-
const
|
|
1329
|
-
export {
|
|
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
|
|
1335
|
-
export {
|
|
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
|
|
1343
|
-
export {
|
|
1344
|
-
const
|
|
1345
|
-
export {
|
|
1346
|
-
const
|
|
1347
|
-
export {
|
|
1348
|
-
export namespace
|
|
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
|
|
1351
|
-
export {
|
|
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
|
|
1359
|
-
export {
|
|
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
|
|
1367
|
-
export {
|
|
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 {
|
|
1412
|
+
export { properties_17 as properties };
|
|
1375
1413
|
}
|
|
1376
1414
|
namespace RuleSetRule {
|
|
1377
|
-
const
|
|
1378
|
-
export {
|
|
1379
|
-
const
|
|
1380
|
-
export {
|
|
1381
|
-
const
|
|
1382
|
-
export {
|
|
1383
|
-
export namespace
|
|
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
|
|
1386
|
-
export {
|
|
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
|
|
1394
|
-
export {
|
|
1395
|
-
const
|
|
1396
|
-
export {
|
|
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
|
|
1400
|
-
export {
|
|
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
|
|
1408
|
-
export {
|
|
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
|
|
1416
|
-
export {
|
|
1417
|
-
const
|
|
1418
|
-
export {
|
|
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
|
|
1421
|
-
export {
|
|
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
|
|
1432
|
-
export {
|
|
1433
|
-
const
|
|
1434
|
-
export {
|
|
1435
|
-
const
|
|
1436
|
-
export {
|
|
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
|
|
1441
|
-
export {
|
|
1442
|
-
const
|
|
1443
|
-
export {
|
|
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
|
|
1451
|
-
export {
|
|
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
|
|
1459
|
-
export {
|
|
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
|
|
1467
|
-
export {
|
|
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
|
|
1475
|
-
export {
|
|
1476
|
-
const
|
|
1477
|
-
export {
|
|
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
|
|
1480
|
-
export {
|
|
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
|
|
1491
|
-
export {
|
|
1492
|
-
const
|
|
1493
|
-
export {
|
|
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
|
|
1498
|
-
export {
|
|
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
|
|
1506
|
-
const
|
|
1507
|
-
export {
|
|
1508
|
-
const
|
|
1509
|
-
export {
|
|
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 {
|
|
1549
|
+
export { type_75 as type };
|
|
1512
1550
|
export namespace use {
|
|
1513
|
-
const
|
|
1514
|
-
export {
|
|
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 {
|
|
1559
|
+
export { properties_18 as properties };
|
|
1522
1560
|
}
|
|
1523
1561
|
namespace RuleSetRules {
|
|
1524
|
-
const
|
|
1525
|
-
export {
|
|
1526
|
-
const
|
|
1527
|
-
export {
|
|
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
|
|
1530
|
-
export {
|
|
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
|
|
1544
|
-
export {
|
|
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
|
|
1563
|
-
export {
|
|
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
|
|
1592
|
-
export {
|
|
1593
|
-
const
|
|
1594
|
-
export {
|
|
1595
|
-
const
|
|
1596
|
-
export {
|
|
1597
|
-
export namespace
|
|
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
|
|
1626
|
-
export {
|
|
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
|
-
|
|
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
|
|
1639
|
-
export {
|
|
1640
|
-
const
|
|
1641
|
-
export {
|
|
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 {
|
|
1683
|
+
export { properties_21 as properties };
|
|
1646
1684
|
}
|
|
1647
1685
|
export { resolve_1 as resolve };
|
|
1648
1686
|
}
|
|
1649
|
-
export {
|
|
1687
|
+
export { properties_19 as properties };
|
|
1650
1688
|
}
|
|
1651
1689
|
namespace StatsOptions {
|
|
1652
|
-
const
|
|
1653
|
-
export {
|
|
1654
|
-
const
|
|
1655
|
-
export {
|
|
1656
|
-
const
|
|
1657
|
-
export {
|
|
1658
|
-
export namespace
|
|
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
|
|
1681
|
-
export {
|
|
1700
|
+
const type_86: string;
|
|
1701
|
+
export { type_86 as type };
|
|
1682
1702
|
}
|
|
1683
|
-
export
|
|
1684
|
-
export namespace colors_1 {
|
|
1703
|
+
export namespace assets {
|
|
1685
1704
|
const description_166: string;
|
|
1686
1705
|
export { description_166 as description };
|
|
1687
|
-
const
|
|
1688
|
-
export {
|
|
1706
|
+
const type_87: string;
|
|
1707
|
+
export { type_87 as type };
|
|
1689
1708
|
}
|
|
1690
|
-
export
|
|
1691
|
-
export namespace entrypoints {
|
|
1709
|
+
export namespace chunkGroups {
|
|
1692
1710
|
const description_167: string;
|
|
1693
1711
|
export { description_167 as description };
|
|
1694
|
-
const
|
|
1695
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
1719
|
-
|
|
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
|
|
1722
|
-
export namespace modules_1 {
|
|
1741
|
+
export namespace errors {
|
|
1723
1742
|
const description_171: string;
|
|
1724
1743
|
export { description_171 as description };
|
|
1725
|
-
const
|
|
1726
|
-
export {
|
|
1744
|
+
const type_91: string;
|
|
1745
|
+
export { type_91 as type };
|
|
1727
1746
|
}
|
|
1728
|
-
export
|
|
1729
|
-
export namespace preset {
|
|
1747
|
+
export namespace errorsCount {
|
|
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_92: string;
|
|
1751
|
+
export { type_92 as type };
|
|
1736
1752
|
}
|
|
1737
|
-
export namespace
|
|
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 {
|
|
1744
|
-
export namespace
|
|
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
|
|
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
|
|
1754
|
-
|
|
1770
|
+
const anyOf_45: {
|
|
1771
|
+
type: string;
|
|
1772
|
+
}[];
|
|
1773
|
+
export { anyOf_45 as anyOf };
|
|
1755
1774
|
}
|
|
1756
|
-
export namespace
|
|
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 {
|
|
1801
|
+
export { properties_22 as properties };
|
|
1764
1802
|
}
|
|
1765
1803
|
namespace StatsValue {
|
|
1766
|
-
const
|
|
1767
|
-
export {
|
|
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
|
|
1785
|
-
export {
|
|
1786
|
-
const
|
|
1787
|
-
export {
|
|
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
|
|
1791
|
-
export {
|
|
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
|
|
1819
|
-
export {
|
|
1820
|
-
const
|
|
1821
|
-
export {
|
|
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
|
|
1825
|
-
export {
|
|
1826
|
-
const
|
|
1827
|
-
export {
|
|
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
|
|
1833
|
-
export {
|
|
1834
|
-
const
|
|
1835
|
-
export {
|
|
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
|
|
1839
|
-
export {
|
|
1840
|
-
const
|
|
1841
|
-
export {
|
|
1842
|
-
const
|
|
1843
|
-
export {
|
|
1844
|
-
export namespace
|
|
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
|
|
1847
|
-
export {
|
|
1848
|
-
const
|
|
1849
|
-
export {
|
|
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
|
|
1853
|
-
export {
|
|
1854
|
-
const
|
|
1855
|
-
export {
|
|
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
|
|
1859
|
-
export {
|
|
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
|
|
1887
|
-
export {
|
|
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
|
|
1896
|
-
export {
|
|
1897
|
-
const
|
|
1898
|
-
export {
|
|
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 {
|
|
1939
|
+
export { properties_23 as properties };
|
|
1902
1940
|
}
|
|
1903
1941
|
namespace RspackPluginFunction {
|
|
1904
|
-
const
|
|
1905
|
-
export {
|
|
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
|
|
1911
|
-
export {
|
|
1912
|
-
const
|
|
1913
|
-
export {
|
|
1914
|
-
const
|
|
1915
|
-
export {
|
|
1916
|
-
export namespace
|
|
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
|
|
1919
|
-
export {
|
|
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 {
|
|
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
|
|
1931
|
-
declare const
|
|
1932
|
-
declare const
|
|
1933
|
-
export declare namespace
|
|
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
|
|
2008
|
+
export namespace externalsPresets {
|
|
1971
2009
|
const $ref_35: string;
|
|
1972
2010
|
export { $ref_35 as $ref };
|
|
1973
2011
|
}
|
|
1974
|
-
export namespace
|
|
2012
|
+
export namespace infrastructureLogging {
|
|
1975
2013
|
const $ref_36: string;
|
|
1976
2014
|
export { $ref_36 as $ref };
|
|
1977
2015
|
}
|
|
1978
|
-
export namespace
|
|
2016
|
+
export namespace mode {
|
|
1979
2017
|
const $ref_37: string;
|
|
1980
2018
|
export { $ref_37 as $ref };
|
|
1981
2019
|
}
|
|
1982
|
-
export
|
|
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 {
|
|
1988
|
-
export namespace
|
|
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
|
|
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
|
|
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
|
|
2039
|
+
export namespace output {
|
|
2001
2040
|
const $ref_42: string;
|
|
2002
2041
|
export { $ref_42 as $ref };
|
|
2003
2042
|
}
|
|
2004
|
-
export namespace
|
|
2043
|
+
export namespace plugins {
|
|
2005
2044
|
const $ref_43: string;
|
|
2006
2045
|
export { $ref_43 as $ref };
|
|
2007
2046
|
}
|
|
2008
|
-
export
|
|
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
|
|
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
|
|
2056
|
+
export namespace stats {
|
|
2018
2057
|
const $ref_46: string;
|
|
2019
2058
|
export { $ref_46 as $ref };
|
|
2020
2059
|
}
|
|
2021
|
-
export namespace
|
|
2060
|
+
export namespace target {
|
|
2022
2061
|
const $ref_47: string;
|
|
2023
2062
|
export { $ref_47 as $ref };
|
|
2024
2063
|
}
|
|
2025
|
-
export namespace
|
|
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
|
|
2031
|
-
export {
|
|
2032
|
-
const
|
|
2033
|
-
export {
|
|
2034
|
-
const
|
|
2035
|
-
export {
|
|
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 {
|
|
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
|