forked from babel/babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
742 lines (742 loc) · 31.4 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
/* This file is automatically generated by scripts/generators/tsconfig.js */
{
"extends": "./tsconfig.base.json",
"include": [
"./packages/babel-cli/src/**/*.ts",
"./packages/babel-code-frame/src/**/*.ts",
"./packages/babel-compat-data/src/**/*.ts",
"./packages/babel-core/src/**/*.ts",
"./packages/babel-generator/src/**/*.ts",
"./packages/babel-helper-annotate-as-pure/src/**/*.ts",
"./packages/babel-helper-builder-binary-assignment-operator-visitor/src/**/*.ts",
"./packages/babel-helper-builder-react-jsx/src/**/*.ts",
"./packages/babel-helper-check-duplicate-nodes/src/**/*.ts",
"./packages/babel-helper-compilation-targets/src/**/*.ts",
"./packages/babel-helper-create-class-features-plugin/src/**/*.ts",
"./packages/babel-helper-create-regexp-features-plugin/src/**/*.ts",
"./packages/babel-helper-define-map/src/**/*.ts",
"./packages/babel-helper-environment-visitor/src/**/*.ts",
"./packages/babel-helper-explode-assignable-expression/src/**/*.ts",
"./packages/babel-helper-fixtures/src/**/*.ts",
"./packages/babel-helper-function-name/src/**/*.ts",
"./packages/babel-helper-hoist-variables/src/**/*.ts",
"./packages/babel-helper-member-expression-to-functions/src/**/*.ts",
"./packages/babel-helper-module-imports/src/**/*.ts",
"./packages/babel-helper-module-transforms/src/**/*.ts",
"./packages/babel-helper-optimise-call-expression/src/**/*.ts",
"./packages/babel-helper-plugin-test-runner/src/**/*.ts",
"./packages/babel-helper-plugin-utils/src/**/*.ts",
"./packages/babel-helper-remap-async-to-generator/src/**/*.ts",
"./packages/babel-helper-replace-supers/src/**/*.ts",
"./packages/babel-helper-simple-access/src/**/*.ts",
"./packages/babel-helper-skip-transparent-expression-wrappers/src/**/*.ts",
"./packages/babel-helper-split-export-declaration/src/**/*.ts",
"./packages/babel-helper-string-parser/src/**/*.ts",
"./packages/babel-helper-transform-fixture-test-runner/src/**/*.ts",
"./packages/babel-helper-validator-identifier/src/**/*.ts",
"./packages/babel-helper-validator-option/src/**/*.ts",
"./packages/babel-helper-wrap-function/src/**/*.ts",
"./packages/babel-helpers/src/**/*.ts",
"./packages/babel-highlight/src/**/*.ts",
"./packages/babel-node/src/**/*.ts",
"./packages/babel-parser/src/**/*.ts",
"./packages/babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression/src/**/*.ts",
"./packages/babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining/src/**/*.ts",
"./packages/babel-plugin-external-helpers/src/**/*.ts",
"./packages/babel-plugin-proposal-async-do-expressions/src/**/*.ts",
"./packages/babel-plugin-proposal-async-generator-functions/src/**/*.ts",
"./packages/babel-plugin-proposal-class-properties/src/**/*.ts",
"./packages/babel-plugin-proposal-class-static-block/src/**/*.ts",
"./packages/babel-plugin-proposal-decorators/src/**/*.ts",
"./packages/babel-plugin-proposal-destructuring-private/src/**/*.ts",
"./packages/babel-plugin-proposal-do-expressions/src/**/*.ts",
"./packages/babel-plugin-proposal-duplicate-named-capturing-groups-regex/src/**/*.ts",
"./packages/babel-plugin-proposal-dynamic-import/src/**/*.ts",
"./packages/babel-plugin-proposal-export-default-from/src/**/*.ts",
"./packages/babel-plugin-proposal-export-namespace-from/src/**/*.ts",
"./packages/babel-plugin-proposal-function-bind/src/**/*.ts",
"./packages/babel-plugin-proposal-function-sent/src/**/*.ts",
"./packages/babel-plugin-proposal-json-strings/src/**/*.ts",
"./packages/babel-plugin-proposal-logical-assignment-operators/src/**/*.ts",
"./packages/babel-plugin-proposal-nullish-coalescing-operator/src/**/*.ts",
"./packages/babel-plugin-proposal-numeric-separator/src/**/*.ts",
"./packages/babel-plugin-proposal-object-rest-spread/src/**/*.ts",
"./packages/babel-plugin-proposal-optional-catch-binding/src/**/*.ts",
"./packages/babel-plugin-proposal-optional-chaining/src/**/*.ts",
"./packages/babel-plugin-proposal-partial-application/src/**/*.ts",
"./packages/babel-plugin-proposal-pipeline-operator/src/**/*.ts",
"./packages/babel-plugin-proposal-private-methods/src/**/*.ts",
"./packages/babel-plugin-proposal-private-property-in-object/src/**/*.ts",
"./packages/babel-plugin-proposal-record-and-tuple/src/**/*.ts",
"./packages/babel-plugin-proposal-throw-expressions/src/**/*.ts",
"./packages/babel-plugin-proposal-unicode-property-regex/src/**/*.ts",
"./packages/babel-plugin-proposal-unicode-sets-regex/src/**/*.ts",
"./packages/babel-plugin-syntax-async-do-expressions/src/**/*.ts",
"./packages/babel-plugin-syntax-decimal/src/**/*.ts",
"./packages/babel-plugin-syntax-decorators/src/**/*.ts",
"./packages/babel-plugin-syntax-destructuring-private/src/**/*.ts",
"./packages/babel-plugin-syntax-do-expressions/src/**/*.ts",
"./packages/babel-plugin-syntax-export-default-from/src/**/*.ts",
"./packages/babel-plugin-syntax-flow/src/**/*.ts",
"./packages/babel-plugin-syntax-function-bind/src/**/*.ts",
"./packages/babel-plugin-syntax-function-sent/src/**/*.ts",
"./packages/babel-plugin-syntax-import-assertions/src/**/*.ts",
"./packages/babel-plugin-syntax-jsx/src/**/*.ts",
"./packages/babel-plugin-syntax-module-blocks/src/**/*.ts",
"./packages/babel-plugin-syntax-partial-application/src/**/*.ts",
"./packages/babel-plugin-syntax-pipeline-operator/src/**/*.ts",
"./packages/babel-plugin-syntax-record-and-tuple/src/**/*.ts",
"./packages/babel-plugin-syntax-throw-expressions/src/**/*.ts",
"./packages/babel-plugin-syntax-typescript/src/**/*.ts",
"./packages/babel-plugin-syntax-unicode-sets-regex/src/**/*.ts",
"./packages/babel-plugin-transform-arrow-functions/src/**/*.ts",
"./packages/babel-plugin-transform-async-to-generator/src/**/*.ts",
"./packages/babel-plugin-transform-block-scoped-functions/src/**/*.ts",
"./packages/babel-plugin-transform-block-scoping/src/**/*.ts",
"./packages/babel-plugin-transform-classes/src/**/*.ts",
"./packages/babel-plugin-transform-computed-properties/src/**/*.ts",
"./packages/babel-plugin-transform-destructuring/src/**/*.ts",
"./packages/babel-plugin-transform-dotall-regex/src/**/*.ts",
"./packages/babel-plugin-transform-duplicate-keys/src/**/*.ts",
"./packages/babel-plugin-transform-exponentiation-operator/src/**/*.ts",
"./packages/babel-plugin-transform-flow-comments/src/**/*.ts",
"./packages/babel-plugin-transform-flow-strip-types/src/**/*.ts",
"./packages/babel-plugin-transform-for-of/src/**/*.ts",
"./packages/babel-plugin-transform-function-name/src/**/*.ts",
"./packages/babel-plugin-transform-instanceof/src/**/*.ts",
"./packages/babel-plugin-transform-jscript/src/**/*.ts",
"./packages/babel-plugin-transform-literals/src/**/*.ts",
"./packages/babel-plugin-transform-member-expression-literals/src/**/*.ts",
"./packages/babel-plugin-transform-modules-amd/src/**/*.ts",
"./packages/babel-plugin-transform-modules-commonjs/src/**/*.ts",
"./packages/babel-plugin-transform-modules-systemjs/src/**/*.ts",
"./packages/babel-plugin-transform-modules-umd/src/**/*.ts",
"./packages/babel-plugin-transform-named-capturing-groups-regex/src/**/*.ts",
"./packages/babel-plugin-transform-new-target/src/**/*.ts",
"./packages/babel-plugin-transform-object-assign/src/**/*.ts",
"./packages/babel-plugin-transform-object-set-prototype-of-to-assign/src/**/*.ts",
"./packages/babel-plugin-transform-object-super/src/**/*.ts",
"./packages/babel-plugin-transform-parameters/src/**/*.ts",
"./packages/babel-plugin-transform-property-literals/src/**/*.ts",
"./packages/babel-plugin-transform-property-mutators/src/**/*.ts",
"./packages/babel-plugin-transform-proto-to-assign/src/**/*.ts",
"./packages/babel-plugin-transform-react-constant-elements/src/**/*.ts",
"./packages/babel-plugin-transform-react-display-name/src/**/*.ts",
"./packages/babel-plugin-transform-react-inline-elements/src/**/*.ts",
"./packages/babel-plugin-transform-react-jsx/src/**/*.ts",
"./packages/babel-plugin-transform-react-jsx-compat/src/**/*.ts",
"./packages/babel-plugin-transform-react-jsx-development/src/**/*.ts",
"./packages/babel-plugin-transform-react-jsx-self/src/**/*.ts",
"./packages/babel-plugin-transform-react-jsx-source/src/**/*.ts",
"./packages/babel-plugin-transform-react-pure-annotations/src/**/*.ts",
"./packages/babel-plugin-transform-regenerator/src/**/*.ts",
"./packages/babel-plugin-transform-reserved-words/src/**/*.ts",
"./packages/babel-plugin-transform-runtime/src/**/*.ts",
"./packages/babel-plugin-transform-shorthand-properties/src/**/*.ts",
"./packages/babel-plugin-transform-spread/src/**/*.ts",
"./packages/babel-plugin-transform-sticky-regex/src/**/*.ts",
"./packages/babel-plugin-transform-strict-mode/src/**/*.ts",
"./packages/babel-plugin-transform-template-literals/src/**/*.ts",
"./packages/babel-plugin-transform-typeof-symbol/src/**/*.ts",
"./packages/babel-plugin-transform-typescript/src/**/*.ts",
"./packages/babel-plugin-transform-unicode-escapes/src/**/*.ts",
"./packages/babel-plugin-transform-unicode-regex/src/**/*.ts",
"./packages/babel-preset-env/src/**/*.ts",
"./packages/babel-preset-flow/src/**/*.ts",
"./packages/babel-preset-react/src/**/*.ts",
"./packages/babel-preset-typescript/src/**/*.ts",
"./packages/babel-register/src/**/*.ts",
"./packages/babel-standalone/src/**/*.ts",
"./packages/babel-template/src/**/*.ts",
"./packages/babel-traverse/src/**/*.ts",
"./packages/babel-types/src/**/*.ts",
"./codemods/babel-plugin-codemod-object-assign-to-object-spread/src/**/*.ts",
"./codemods/babel-plugin-codemod-optional-catch-binding/src/**/*.ts"
],
"compilerOptions": {
"paths": {
"@babel/cli": [
"./packages/babel-cli/src"
],
"@babel/code-frame": [
"./packages/babel-code-frame/src"
],
"@babel/compat-data/plugins": [
"./packages/babel-compat-data/data/plugins.json"
],
"@babel/compat-data/native-modules": [
"./packages/babel-compat-data/data/native-modules.json"
],
"@babel/compat-data/corejs2-built-ins": [
"./packages/babel-compat-data/data/corejs2-built-ins.json"
],
"@babel/compat-data/corejs3-shipped-proposals": [
"./packages/babel-compat-data/data/corejs3-shipped-proposals.json"
],
"@babel/compat-data/overlapping-plugins": [
"./packages/babel-compat-data/data/overlapping-plugins.json"
],
"@babel/compat-data/plugin-bugfixes": [
"./packages/babel-compat-data/data/plugin-bugfixes.json"
],
"@babel/core": [
"./packages/babel-core/src"
],
"@babel/generator": [
"./packages/babel-generator/src"
],
"@babel/helper-annotate-as-pure": [
"./packages/babel-helper-annotate-as-pure/src"
],
"@babel/helper-builder-binary-assignment-operator-visitor": [
"./packages/babel-helper-builder-binary-assignment-operator-visitor/src"
],
"@babel/helper-builder-react-jsx": [
"./packages/babel-helper-builder-react-jsx/src"
],
"@babel/helper-check-duplicate-nodes": [
"./packages/babel-helper-check-duplicate-nodes/src"
],
"@babel/helper-compilation-targets": [
"./packages/babel-helper-compilation-targets/src"
],
"@babel/helper-create-class-features-plugin": [
"./packages/babel-helper-create-class-features-plugin/src"
],
"@babel/helper-create-regexp-features-plugin": [
"./packages/babel-helper-create-regexp-features-plugin/src"
],
"@babel/helper-define-map": [
"./packages/babel-helper-define-map/src"
],
"@babel/helper-environment-visitor": [
"./packages/babel-helper-environment-visitor/src"
],
"@babel/helper-explode-assignable-expression": [
"./packages/babel-helper-explode-assignable-expression/src"
],
"@babel/helper-fixtures": [
"./packages/babel-helper-fixtures/src"
],
"@babel/helper-function-name": [
"./packages/babel-helper-function-name/src"
],
"@babel/helper-hoist-variables": [
"./packages/babel-helper-hoist-variables/src"
],
"@babel/helper-member-expression-to-functions": [
"./packages/babel-helper-member-expression-to-functions/src"
],
"@babel/helper-module-imports": [
"./packages/babel-helper-module-imports/src"
],
"@babel/helper-module-transforms": [
"./packages/babel-helper-module-transforms/src"
],
"@babel/helper-optimise-call-expression": [
"./packages/babel-helper-optimise-call-expression/src"
],
"@babel/helper-plugin-test-runner": [
"./packages/babel-helper-plugin-test-runner/src"
],
"@babel/helper-plugin-utils": [
"./packages/babel-helper-plugin-utils/src"
],
"@babel/helper-remap-async-to-generator": [
"./packages/babel-helper-remap-async-to-generator/src"
],
"@babel/helper-replace-supers": [
"./packages/babel-helper-replace-supers/src"
],
"@babel/helper-simple-access": [
"./packages/babel-helper-simple-access/src"
],
"@babel/helper-skip-transparent-expression-wrappers": [
"./packages/babel-helper-skip-transparent-expression-wrappers/src"
],
"@babel/helper-split-export-declaration": [
"./packages/babel-helper-split-export-declaration/src"
],
"@babel/helper-string-parser": [
"./packages/babel-helper-string-parser/src"
],
"@babel/helper-transform-fixture-test-runner": [
"./packages/babel-helper-transform-fixture-test-runner/src"
],
"@babel/helper-validator-identifier": [
"./packages/babel-helper-validator-identifier/src"
],
"@babel/helper-validator-option": [
"./packages/babel-helper-validator-option/src"
],
"@babel/helper-wrap-function": [
"./packages/babel-helper-wrap-function/src"
],
"@babel/helpers": [
"./packages/babel-helpers/src"
],
"@babel/highlight": [
"./packages/babel-highlight/src"
],
"@babel/node": [
"./packages/babel-node/src"
],
"@babel/parser": [
"./packages/babel-parser/src"
],
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [
"./packages/babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression/src"
],
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [
"./packages/babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining/src"
],
"@babel/plugin-external-helpers": [
"./packages/babel-plugin-external-helpers/src"
],
"@babel/plugin-proposal-async-do-expressions": [
"./packages/babel-plugin-proposal-async-do-expressions/src"
],
"@babel/plugin-proposal-async-generator-functions": [
"./packages/babel-plugin-proposal-async-generator-functions/src"
],
"@babel/plugin-proposal-class-properties": [
"./packages/babel-plugin-proposal-class-properties/src"
],
"@babel/plugin-proposal-class-static-block": [
"./packages/babel-plugin-proposal-class-static-block/src"
],
"@babel/plugin-proposal-decorators": [
"./packages/babel-plugin-proposal-decorators/src"
],
"@babel/plugin-proposal-destructuring-private": [
"./packages/babel-plugin-proposal-destructuring-private/src"
],
"@babel/plugin-proposal-do-expressions": [
"./packages/babel-plugin-proposal-do-expressions/src"
],
"@babel/plugin-proposal-duplicate-named-capturing-groups-regex": [
"./packages/babel-plugin-proposal-duplicate-named-capturing-groups-regex/src"
],
"@babel/plugin-proposal-dynamic-import": [
"./packages/babel-plugin-proposal-dynamic-import/src"
],
"@babel/plugin-proposal-export-default-from": [
"./packages/babel-plugin-proposal-export-default-from/src"
],
"@babel/plugin-proposal-export-namespace-from": [
"./packages/babel-plugin-proposal-export-namespace-from/src"
],
"@babel/plugin-proposal-function-bind": [
"./packages/babel-plugin-proposal-function-bind/src"
],
"@babel/plugin-proposal-function-sent": [
"./packages/babel-plugin-proposal-function-sent/src"
],
"@babel/plugin-proposal-json-strings": [
"./packages/babel-plugin-proposal-json-strings/src"
],
"@babel/plugin-proposal-logical-assignment-operators": [
"./packages/babel-plugin-proposal-logical-assignment-operators/src"
],
"@babel/plugin-proposal-nullish-coalescing-operator": [
"./packages/babel-plugin-proposal-nullish-coalescing-operator/src"
],
"@babel/plugin-proposal-numeric-separator": [
"./packages/babel-plugin-proposal-numeric-separator/src"
],
"@babel/plugin-proposal-object-rest-spread": [
"./packages/babel-plugin-proposal-object-rest-spread/src"
],
"@babel/plugin-proposal-optional-catch-binding": [
"./packages/babel-plugin-proposal-optional-catch-binding/src"
],
"@babel/plugin-proposal-optional-chaining": [
"./packages/babel-plugin-proposal-optional-chaining/src"
],
"@babel/plugin-proposal-partial-application": [
"./packages/babel-plugin-proposal-partial-application/src"
],
"@babel/plugin-proposal-pipeline-operator": [
"./packages/babel-plugin-proposal-pipeline-operator/src"
],
"@babel/plugin-proposal-private-methods": [
"./packages/babel-plugin-proposal-private-methods/src"
],
"@babel/plugin-proposal-private-property-in-object": [
"./packages/babel-plugin-proposal-private-property-in-object/src"
],
"@babel/plugin-proposal-record-and-tuple": [
"./packages/babel-plugin-proposal-record-and-tuple/src"
],
"@babel/plugin-proposal-throw-expressions": [
"./packages/babel-plugin-proposal-throw-expressions/src"
],
"@babel/plugin-proposal-unicode-property-regex": [
"./packages/babel-plugin-proposal-unicode-property-regex/src"
],
"@babel/plugin-proposal-unicode-sets-regex": [
"./packages/babel-plugin-proposal-unicode-sets-regex/src"
],
"@babel/plugin-syntax-async-do-expressions": [
"./packages/babel-plugin-syntax-async-do-expressions/src"
],
"@babel/plugin-syntax-decimal": [
"./packages/babel-plugin-syntax-decimal/src"
],
"@babel/plugin-syntax-decorators": [
"./packages/babel-plugin-syntax-decorators/src"
],
"@babel/plugin-syntax-destructuring-private": [
"./packages/babel-plugin-syntax-destructuring-private/src"
],
"@babel/plugin-syntax-do-expressions": [
"./packages/babel-plugin-syntax-do-expressions/src"
],
"@babel/plugin-syntax-export-default-from": [
"./packages/babel-plugin-syntax-export-default-from/src"
],
"@babel/plugin-syntax-flow": [
"./packages/babel-plugin-syntax-flow/src"
],
"@babel/plugin-syntax-function-bind": [
"./packages/babel-plugin-syntax-function-bind/src"
],
"@babel/plugin-syntax-function-sent": [
"./packages/babel-plugin-syntax-function-sent/src"
],
"@babel/plugin-syntax-import-assertions": [
"./packages/babel-plugin-syntax-import-assertions/src"
],
"@babel/plugin-syntax-jsx": [
"./packages/babel-plugin-syntax-jsx/src"
],
"@babel/plugin-syntax-module-blocks": [
"./packages/babel-plugin-syntax-module-blocks/src"
],
"@babel/plugin-syntax-partial-application": [
"./packages/babel-plugin-syntax-partial-application/src"
],
"@babel/plugin-syntax-pipeline-operator": [
"./packages/babel-plugin-syntax-pipeline-operator/src"
],
"@babel/plugin-syntax-record-and-tuple": [
"./packages/babel-plugin-syntax-record-and-tuple/src"
],
"@babel/plugin-syntax-throw-expressions": [
"./packages/babel-plugin-syntax-throw-expressions/src"
],
"@babel/plugin-syntax-typescript": [
"./packages/babel-plugin-syntax-typescript/src"
],
"@babel/plugin-syntax-unicode-sets-regex": [
"./packages/babel-plugin-syntax-unicode-sets-regex/src"
],
"@babel/plugin-transform-arrow-functions": [
"./packages/babel-plugin-transform-arrow-functions/src"
],
"@babel/plugin-transform-async-to-generator": [
"./packages/babel-plugin-transform-async-to-generator/src"
],
"@babel/plugin-transform-block-scoped-functions": [
"./packages/babel-plugin-transform-block-scoped-functions/src"
],
"@babel/plugin-transform-block-scoping": [
"./packages/babel-plugin-transform-block-scoping/src"
],
"@babel/plugin-transform-classes": [
"./packages/babel-plugin-transform-classes/src"
],
"@babel/plugin-transform-computed-properties": [
"./packages/babel-plugin-transform-computed-properties/src"
],
"@babel/plugin-transform-destructuring": [
"./packages/babel-plugin-transform-destructuring/src"
],
"@babel/plugin-transform-dotall-regex": [
"./packages/babel-plugin-transform-dotall-regex/src"
],
"@babel/plugin-transform-duplicate-keys": [
"./packages/babel-plugin-transform-duplicate-keys/src"
],
"@babel/plugin-transform-exponentiation-operator": [
"./packages/babel-plugin-transform-exponentiation-operator/src"
],
"@babel/plugin-transform-flow-comments": [
"./packages/babel-plugin-transform-flow-comments/src"
],
"@babel/plugin-transform-flow-strip-types": [
"./packages/babel-plugin-transform-flow-strip-types/src"
],
"@babel/plugin-transform-for-of": [
"./packages/babel-plugin-transform-for-of/src"
],
"@babel/plugin-transform-function-name": [
"./packages/babel-plugin-transform-function-name/src"
],
"@babel/plugin-transform-instanceof": [
"./packages/babel-plugin-transform-instanceof/src"
],
"@babel/plugin-transform-jscript": [
"./packages/babel-plugin-transform-jscript/src"
],
"@babel/plugin-transform-literals": [
"./packages/babel-plugin-transform-literals/src"
],
"@babel/plugin-transform-member-expression-literals": [
"./packages/babel-plugin-transform-member-expression-literals/src"
],
"@babel/plugin-transform-modules-amd": [
"./packages/babel-plugin-transform-modules-amd/src"
],
"@babel/plugin-transform-modules-commonjs": [
"./packages/babel-plugin-transform-modules-commonjs/src"
],
"@babel/plugin-transform-modules-systemjs": [
"./packages/babel-plugin-transform-modules-systemjs/src"
],
"@babel/plugin-transform-modules-umd": [
"./packages/babel-plugin-transform-modules-umd/src"
],
"@babel/plugin-transform-named-capturing-groups-regex": [
"./packages/babel-plugin-transform-named-capturing-groups-regex/src"
],
"@babel/plugin-transform-new-target": [
"./packages/babel-plugin-transform-new-target/src"
],
"@babel/plugin-transform-object-assign": [
"./packages/babel-plugin-transform-object-assign/src"
],
"@babel/plugin-transform-object-set-prototype-of-to-assign": [
"./packages/babel-plugin-transform-object-set-prototype-of-to-assign/src"
],
"@babel/plugin-transform-object-super": [
"./packages/babel-plugin-transform-object-super/src"
],
"@babel/plugin-transform-parameters": [
"./packages/babel-plugin-transform-parameters/src"
],
"@babel/plugin-transform-property-literals": [
"./packages/babel-plugin-transform-property-literals/src"
],
"@babel/plugin-transform-property-mutators": [
"./packages/babel-plugin-transform-property-mutators/src"
],
"@babel/plugin-transform-proto-to-assign": [
"./packages/babel-plugin-transform-proto-to-assign/src"
],
"@babel/plugin-transform-react-constant-elements": [
"./packages/babel-plugin-transform-react-constant-elements/src"
],
"@babel/plugin-transform-react-display-name": [
"./packages/babel-plugin-transform-react-display-name/src"
],
"@babel/plugin-transform-react-inline-elements": [
"./packages/babel-plugin-transform-react-inline-elements/src"
],
"@babel/plugin-transform-react-jsx": [
"./packages/babel-plugin-transform-react-jsx/src"
],
"@babel/plugin-transform-react-jsx/lib/development": [
"./packages/babel-plugin-transform-react-jsx/src/development.ts"
],
"@babel/plugin-transform-react-jsx-compat": [
"./packages/babel-plugin-transform-react-jsx-compat/src"
],
"@babel/plugin-transform-react-jsx-development": [
"./packages/babel-plugin-transform-react-jsx-development/src"
],
"@babel/plugin-transform-react-jsx-self": [
"./packages/babel-plugin-transform-react-jsx-self/src"
],
"@babel/plugin-transform-react-jsx-source": [
"./packages/babel-plugin-transform-react-jsx-source/src"
],
"@babel/plugin-transform-react-pure-annotations": [
"./packages/babel-plugin-transform-react-pure-annotations/src"
],
"@babel/plugin-transform-regenerator": [
"./packages/babel-plugin-transform-regenerator/src"
],
"@babel/plugin-transform-reserved-words": [
"./packages/babel-plugin-transform-reserved-words/src"
],
"@babel/plugin-transform-runtime": [
"./packages/babel-plugin-transform-runtime/src"
],
"@babel/plugin-transform-shorthand-properties": [
"./packages/babel-plugin-transform-shorthand-properties/src"
],
"@babel/plugin-transform-spread": [
"./packages/babel-plugin-transform-spread/src"
],
"@babel/plugin-transform-sticky-regex": [
"./packages/babel-plugin-transform-sticky-regex/src"
],
"@babel/plugin-transform-strict-mode": [
"./packages/babel-plugin-transform-strict-mode/src"
],
"@babel/plugin-transform-template-literals": [
"./packages/babel-plugin-transform-template-literals/src"
],
"@babel/plugin-transform-typeof-symbol": [
"./packages/babel-plugin-transform-typeof-symbol/src"
],
"@babel/plugin-transform-typescript": [
"./packages/babel-plugin-transform-typescript/src"
],
"@babel/plugin-transform-unicode-escapes": [
"./packages/babel-plugin-transform-unicode-escapes/src"
],
"@babel/plugin-transform-unicode-regex": [
"./packages/babel-plugin-transform-unicode-regex/src"
],
"@babel/preset-env": [
"./packages/babel-preset-env/src"
],
"@babel/preset-flow": [
"./packages/babel-preset-flow/src"
],
"@babel/preset-react": [
"./packages/babel-preset-react/src"
],
"@babel/preset-typescript": [
"./packages/babel-preset-typescript/src"
],
"@babel/register": [
"./packages/babel-register/src"
],
"@babel/standalone": [
"./packages/babel-standalone/src"
],
"@babel/template": [
"./packages/babel-template/src"
],
"@babel/traverse": [
"./packages/babel-traverse/src"
],
"@babel/types": [
"./packages/babel-types/src"
],
"@babel/plugin-codemod-object-assign-to-object-spread": [
"./codemods/babel-plugin-codemod-object-assign-to-object-spread/src"
],
"@babel/plugin-codemod-optional-catch-binding": [
"./codemods/babel-plugin-codemod-optional-catch-binding/src"
],
"@babel/plugin-syntax-async-functions": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-async-generators": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-bigint": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-class-properties": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-class-static-block": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-dynamic-import": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-exponentiation-operator": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-export-extensions": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-export-namespace-from": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-import-meta": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-json-strings": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-logical-assignment-operators": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-module-string-names": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-nullish-coalescing-operator": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-numeric-separator": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-object-rest-spread": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-optional-catch-binding": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-optional-chaining": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-private-property-in-object": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-top-level-await": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-trailing-function-commas": [
"./lib/archived-libs.d.ts"
],
"@babel/preset-modules/lib/plugins/transform-async-arrows-in-class": [
"./lib/third-party-libs.d.ts"
],
"@babel/preset-modules/lib/plugins/transform-edge-default-parameters": [
"./lib/third-party-libs.d.ts"
],
"@babel/preset-modules/lib/plugins/transform-edge-function-name": [
"./lib/third-party-libs.d.ts"
],
"@babel/preset-modules/lib/plugins/transform-tagged-template-caching": [
"./lib/third-party-libs.d.ts"
],
"@babel/preset-modules/lib/plugins/transform-safari-block-shadowing": [
"./lib/third-party-libs.d.ts"
],
"@babel/preset-modules/lib/plugins/transform-safari-for-shadowing": [
"./lib/third-party-libs.d.ts"
],
"babel-plugin-polyfill-corejs2": [
"./lib/third-party-libs.d.ts"
],
"babel-plugin-polyfill-corejs3": [
"./lib/third-party-libs.d.ts"
],
"babel-plugin-polyfill-regenerator": [
"./lib/third-party-libs.d.ts"
],
"regenerator-transform": [
"./lib/third-party-libs.d.ts"
],
"babel-plugin-dynamic-import-node/utils": [
"./lib/babel-plugin-dynamic-import-node.d.ts"
],
"globals": [
"./node_modules/globals-BABEL_8_BREAKING-true"
],
"js-tokens": [
"./node_modules/js-tokens-BABEL_8_BREAKING-true"
],
"regexpu-core": [
"./lib/regexpu-core.d.ts"
],
"to-fast-properties": [
"./node_modules/to-fast-properties-BABEL_8_BREAKING-true"
],
"slash": [
"./node_modules/slash-BABEL_8_BREAKING-true"
],
"kexec": [
"./lib/kexec.d.ts"
]
}
}
}