-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.tsbuildinfo
1477 lines (1477 loc) · 69 KB
/
tsconfig.tsbuildinfo
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
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"program": {
"fileInfos": {
"./node_modules/typescript/lib/lib.es5.d.ts": {
"version": "b42eddba1a53c9d27279cfe7fc0416c10a81489826ad47e39013b9d340fc0cc7",
"signature": "b42eddba1a53c9d27279cfe7fc0416c10a81489826ad47e39013b9d340fc0cc7"
},
"./node_modules/typescript/lib/lib.es2015.d.ts": {
"version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96",
"signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96"
},
"./node_modules/typescript/lib/lib.es2016.d.ts": {
"version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1",
"signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1"
},
"./node_modules/typescript/lib/lib.es2017.d.ts": {
"version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743",
"signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743"
},
"./node_modules/typescript/lib/lib.es2018.d.ts": {
"version": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091",
"signature": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091"
},
"./node_modules/typescript/lib/lib.es2015.core.d.ts": {
"version": "734ddc145e147fbcd55f07d034f50ccff1086f5a880107665ec326fb368876f6",
"signature": "734ddc145e147fbcd55f07d034f50ccff1086f5a880107665ec326fb368876f6"
},
"./node_modules/typescript/lib/lib.es2015.collection.d.ts": {
"version": "4a0862a21f4700de873db3b916f70e41570e2f558da77d2087c9490f5a0615d8",
"signature": "4a0862a21f4700de873db3b916f70e41570e2f558da77d2087c9490f5a0615d8"
},
"./node_modules/typescript/lib/lib.es2015.generator.d.ts": {
"version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122",
"signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122"
},
"./node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
"version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210",
"signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210"
},
"./node_modules/typescript/lib/lib.es2015.promise.d.ts": {
"version": "d4deaafbb18680e3143e8b471acd650ed6f72a408a33137f0a0dd104fbe7f8ca",
"signature": "d4deaafbb18680e3143e8b471acd650ed6f72a408a33137f0a0dd104fbe7f8ca"
},
"./node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
"version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe",
"signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe"
},
"./node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
"version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976",
"signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976"
},
"./node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
"version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230",
"signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230"
},
"./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
"version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303",
"signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303"
},
"./node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
"version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0",
"signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0"
},
"./node_modules/typescript/lib/lib.es2017.object.d.ts": {
"version": "c2d60b2e558d44384e4704b00e6b3d154334721a911f094d3133c35f0917b408",
"signature": "c2d60b2e558d44384e4704b00e6b3d154334721a911f094d3133c35f0917b408"
},
"./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
"version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f",
"signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f"
},
"./node_modules/typescript/lib/lib.es2017.string.d.ts": {
"version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c",
"signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c"
},
"./node_modules/typescript/lib/lib.es2017.intl.d.ts": {
"version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6",
"signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6"
},
"./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
"version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46",
"signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46"
},
"./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
"version": "2958de3d25bfb0b5cdace0244e11c9637e5988920b99024db705a720ce6348e7",
"signature": "2958de3d25bfb0b5cdace0244e11c9637e5988920b99024db705a720ce6348e7"
},
"./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
"version": "85085a0783532dc04b66894748dc4a49983b2fbccb0679b81356947021d7a215",
"signature": "85085a0783532dc04b66894748dc4a49983b2fbccb0679b81356947021d7a215"
},
"./node_modules/typescript/lib/lib.es2018.intl.d.ts": {
"version": "5494f46d3a8a0329d13ddc37f8759d5288760febb51c92336608d1c06bb18d29",
"signature": "5494f46d3a8a0329d13ddc37f8759d5288760febb51c92336608d1c06bb18d29"
},
"./node_modules/typescript/lib/lib.es2018.promise.d.ts": {
"version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62",
"signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62"
},
"./node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
"version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8",
"signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8"
},
"./node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
"version": "0c9ea8c2028047f39a3f66752682604f543c08be8806258c3d95c93e75a43255",
"signature": "0c9ea8c2028047f39a3f66752682604f543c08be8806258c3d95c93e75a43255"
},
"./node_modules/typescript/lib/lib.esnext.intl.d.ts": {
"version": "1377923021927244ea19433873b997ad8585533b0a56d5de29cda497f7842756",
"signature": "1377923021927244ea19433873b997ad8585533b0a56d5de29cda497f7842756"
},
"./src/app.ts": {
"version": "d77ec5d84fb5fbc8189754b54e939bcd95b968832daaba8f642d7d48f5ee85ea",
"signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
},
"./src/vmtrace/vmtrace.ts": {
"version": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
},
"./node_modules/@types/node/globals.d.ts": {
"version": "b27742236b2f00cf88316d766b6db203307d6523fd5a92f390ec6526901309dd",
"signature": "b27742236b2f00cf88316d766b6db203307d6523fd5a92f390ec6526901309dd"
},
"./node_modules/@types/node/assert.d.ts": {
"version": "021b431b8f3869ebb9798b939ddbe637e341afa76d547fb507f3b1ece06a22cb",
"signature": "021b431b8f3869ebb9798b939ddbe637e341afa76d547fb507f3b1ece06a22cb"
},
"./node_modules/@types/node/async_hooks.d.ts": {
"version": "96e547b51f95ee76bdb25731c92420fa6f93b59c3f38f23d505be36e2de394ee",
"signature": "96e547b51f95ee76bdb25731c92420fa6f93b59c3f38f23d505be36e2de394ee"
},
"./node_modules/@types/node/buffer.d.ts": {
"version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878",
"signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878"
},
"./node_modules/@types/node/child_process.d.ts": {
"version": "1a188fb2574b32f9be13a8d112abea25914032ee51b66bfa6fc3241c81e5394f",
"signature": "1a188fb2574b32f9be13a8d112abea25914032ee51b66bfa6fc3241c81e5394f"
},
"./node_modules/@types/node/cluster.d.ts": {
"version": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
"signature": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803"
},
"./node_modules/@types/node/console.d.ts": {
"version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d",
"signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d"
},
"./node_modules/@types/node/constants.d.ts": {
"version": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
"signature": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720"
},
"./node_modules/@types/node/crypto.d.ts": {
"version": "d56c93b6bf66e602869e926ddc8b1b4630d1ff397909291767d18d4ffc22d33f",
"signature": "d56c93b6bf66e602869e926ddc8b1b4630d1ff397909291767d18d4ffc22d33f"
},
"./node_modules/@types/node/dgram.d.ts": {
"version": "7ecfe97b43aa6c8b8f90caa599d5648bb559962e74e6f038f73a77320569dd78",
"signature": "7ecfe97b43aa6c8b8f90caa599d5648bb559962e74e6f038f73a77320569dd78"
},
"./node_modules/@types/node/dns.d.ts": {
"version": "aad3237c3f99480041cad7ca04d64307c98933996f822342b7c0ee4a78553346",
"signature": "aad3237c3f99480041cad7ca04d64307c98933996f822342b7c0ee4a78553346"
},
"./node_modules/@types/node/domain.d.ts": {
"version": "4d4c83f77ac21a72252785baa5328a5612b0b6598d512f68b8cb14f7966d059e",
"signature": "4d4c83f77ac21a72252785baa5328a5612b0b6598d512f68b8cb14f7966d059e"
},
"./node_modules/@types/node/events.d.ts": {
"version": "5ffa4219ee64e130980a4231392cbc628544df137ccf650ae8d76e0a1744fd2b",
"signature": "5ffa4219ee64e130980a4231392cbc628544df137ccf650ae8d76e0a1744fd2b"
},
"./node_modules/@types/node/fs.d.ts": {
"version": "e1a12c7e7951b9762cfbcc43c72eb5611120967706a7c3142ad303c6b7ee767f",
"signature": "e1a12c7e7951b9762cfbcc43c72eb5611120967706a7c3142ad303c6b7ee767f"
},
"./node_modules/@types/node/http.d.ts": {
"version": "b5fd0a137bd6d0afe291d465e99c7469b082b66b3ee89273b3b22801b6c2948e",
"signature": "b5fd0a137bd6d0afe291d465e99c7469b082b66b3ee89273b3b22801b6c2948e"
},
"./node_modules/@types/node/http2.d.ts": {
"version": "873da589b78a1f1fa7d623483bd2c2730a02e0852259fb8fdcfe5221ac51d18a",
"signature": "873da589b78a1f1fa7d623483bd2c2730a02e0852259fb8fdcfe5221ac51d18a"
},
"./node_modules/@types/node/https.d.ts": {
"version": "c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a",
"signature": "c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a"
},
"./node_modules/@types/node/inspector.d.ts": {
"version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c",
"signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c"
},
"./node_modules/@types/node/module.d.ts": {
"version": "a376e245f494b58365a4391a2568e6dd9da372c3453f4732eb6e15ebb9038451",
"signature": "a376e245f494b58365a4391a2568e6dd9da372c3453f4732eb6e15ebb9038451"
},
"./node_modules/@types/node/net.d.ts": {
"version": "ffe8912b7c45288810c870b768190c6c097459930a587dd6ef0d900a5529a811",
"signature": "ffe8912b7c45288810c870b768190c6c097459930a587dd6ef0d900a5529a811"
},
"./node_modules/@types/node/os.d.ts": {
"version": "f53678bdb9f25445c8cdf021f2b003b74fd638e69bb1959dde8e370e8cc1e4fa",
"signature": "f53678bdb9f25445c8cdf021f2b003b74fd638e69bb1959dde8e370e8cc1e4fa"
},
"./node_modules/@types/node/path.d.ts": {
"version": "84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35",
"signature": "84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35"
},
"./node_modules/@types/node/perf_hooks.d.ts": {
"version": "0b6098fedb648cab8091cca2b022a5c729b6ef18da923852033f495907cb1a45",
"signature": "0b6098fedb648cab8091cca2b022a5c729b6ef18da923852033f495907cb1a45"
},
"./node_modules/@types/node/process.d.ts": {
"version": "0e0d58f5e90c0a270dac052b9c5ad8ccdfc8271118c2105b361063218d528d6e",
"signature": "0e0d58f5e90c0a270dac052b9c5ad8ccdfc8271118c2105b361063218d528d6e"
},
"./node_modules/@types/node/punycode.d.ts": {
"version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
"signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1"
},
"./node_modules/@types/node/querystring.d.ts": {
"version": "9f633ecf3e065ff82c19eccab35c8aa1d6d5d1a49af282dc29ef5a64cca34164",
"signature": "9f633ecf3e065ff82c19eccab35c8aa1d6d5d1a49af282dc29ef5a64cca34164"
},
"./node_modules/@types/node/readline.d.ts": {
"version": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
"signature": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9"
},
"./node_modules/@types/node/repl.d.ts": {
"version": "dd3706b25d06fe23c73d16079e8c66ac775831ef419da00716bf2aee530a04a4",
"signature": "dd3706b25d06fe23c73d16079e8c66ac775831ef419da00716bf2aee530a04a4"
},
"./node_modules/@types/node/stream.d.ts": {
"version": "d74b8e644da7415e3757a17a42b7f284597b577e3c87b80f4b3ba0cc2db1184f",
"signature": "d74b8e644da7415e3757a17a42b7f284597b577e3c87b80f4b3ba0cc2db1184f"
},
"./node_modules/@types/node/string_decoder.d.ts": {
"version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432",
"signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432"
},
"./node_modules/@types/node/timers.d.ts": {
"version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
"signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9"
},
"./node_modules/@types/node/tls.d.ts": {
"version": "424bc64b2794d9280c1e1f4a3518ba9d285385a16d84753a6427bb469e582eca",
"signature": "424bc64b2794d9280c1e1f4a3518ba9d285385a16d84753a6427bb469e582eca"
},
"./node_modules/@types/node/trace_events.d.ts": {
"version": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
"signature": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638"
},
"./node_modules/@types/node/tty.d.ts": {
"version": "3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748",
"signature": "3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748"
},
"./node_modules/@types/node/url.d.ts": {
"version": "826d48e49c905cedb906cbde6ccaf758827ff5867d4daa006b5a79e0fb489357",
"signature": "826d48e49c905cedb906cbde6ccaf758827ff5867d4daa006b5a79e0fb489357"
},
"./node_modules/@types/node/util.d.ts": {
"version": "893d1b5dd98f1c01a0ec4122dfd7f774e0fa1560e1aa19e509c96ed543c6244e",
"signature": "893d1b5dd98f1c01a0ec4122dfd7f774e0fa1560e1aa19e509c96ed543c6244e"
},
"./node_modules/@types/node/v8.d.ts": {
"version": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
"signature": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953"
},
"./node_modules/@types/node/vm.d.ts": {
"version": "e4abb8eaa8a7d78236be0f8342404aab076668d20590209e32fdeb924588531e",
"signature": "e4abb8eaa8a7d78236be0f8342404aab076668d20590209e32fdeb924588531e"
},
"./node_modules/@types/node/worker_threads.d.ts": {
"version": "1b4db6ed54916341a48bb81cfd9f910999b3bcd6b71c6a4c7416532a6908775d",
"signature": "1b4db6ed54916341a48bb81cfd9f910999b3bcd6b71c6a4c7416532a6908775d"
},
"./node_modules/@types/node/zlib.d.ts": {
"version": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
"signature": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8"
},
"./node_modules/@types/node/base.d.ts": {
"version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce",
"signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce"
},
"./node_modules/@types/node/ts3.2/fs.d.ts": {
"version": "12b2608d6074167c331c9c3c6994a57819f6ff934c7fd4527e23aabf56d4c8d1",
"signature": "12b2608d6074167c331c9c3c6994a57819f6ff934c7fd4527e23aabf56d4c8d1"
},
"./node_modules/@types/node/ts3.2/util.d.ts": {
"version": "ffc1cd688606ad1ddb59a40e8f3defbde907af2a3402d1d9ddf69accb2903f07",
"signature": "ffc1cd688606ad1ddb59a40e8f3defbde907af2a3402d1d9ddf69accb2903f07"
},
"./node_modules/@types/node/ts3.2/globals.d.ts": {
"version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1",
"signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1"
},
"./node_modules/@types/node/ts3.2/index.d.ts": {
"version": "6e19418b881b57998d218487d41d85534c7fa5ab329bbc72afe571e7683d774a",
"signature": "6e19418b881b57998d218487d41d85534c7fa5ab329bbc72afe571e7683d774a"
},
"./node_modules/@types/bn.js/index.d.ts": {
"version": "bc6dd50ac2fc9a7ca6488811b116bd0ddd606338db0bb97852c8fcf757e2d7f5",
"signature": "bc6dd50ac2fc9a7ca6488811b116bd0ddd606338db0bb97852c8fcf757e2d7f5"
}
},
"options": {
"target": 1,
"module": 1,
"lib": [
"lib.es2015.d.ts"
],
"allowJs": true,
"outDir": "./build",
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"configFilePath": "./tsconfig.json"
},
"referencedMap": {
"./node_modules/typescript/lib/lib.es5.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2016.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2018.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.core.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.collection.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.generator.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.promise.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.object.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.string.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.intl.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2018.intl.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2018.promise.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.esnext.intl.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./src/app.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./src/vmtrace/vmtrace.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/globals.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/assert.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/async_hooks.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/buffer.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/child_process.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/cluster.d.ts": [
"./node_modules/@types/node/child_process.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/console.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/constants.d.ts": [
"./node_modules/@types/node/os.d.ts",
"./node_modules/@types/node/crypto.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/crypto.d.ts": [
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/dgram.d.ts": [
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/dns.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/dns.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/domain.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/events.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/fs.d.ts": [
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/url.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/http.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/url.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/http2.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/tls.d.ts",
"./node_modules/@types/node/url.d.ts",
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/https.d.ts": [
"./node_modules/@types/node/tls.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/url.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/inspector.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/module.d.ts": [
"./node_modules/@types/node/url.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/net.d.ts": [
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/dns.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/os.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/path.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/perf_hooks.d.ts": [
"./node_modules/@types/node/async_hooks.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/process.d.ts": [
"./node_modules/@types/node/tty.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/punycode.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/querystring.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/readline.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/repl.d.ts": [
"./node_modules/@types/node/readline.d.ts",
"./node_modules/@types/node/vm.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/stream.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/string_decoder.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/timers.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/tls.d.ts": [
"./node_modules/@types/node/crypto.d.ts",
"./node_modules/@types/node/dns.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/trace_events.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/tty.d.ts": [
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/url.d.ts": [
"./node_modules/@types/node/querystring.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/util.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/v8.d.ts": [
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/vm.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/worker_threads.d.ts": [
"./node_modules/@types/node/vm.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/url.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/zlib.d.ts": [
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/base.d.ts": [
"./node_modules/@types/node/globals.d.ts",
"./node_modules/@types/node/assert.d.ts",
"./node_modules/@types/node/async_hooks.d.ts",
"./node_modules/@types/node/buffer.d.ts",
"./node_modules/@types/node/child_process.d.ts",
"./node_modules/@types/node/cluster.d.ts",
"./node_modules/@types/node/console.d.ts",
"./node_modules/@types/node/constants.d.ts",
"./node_modules/@types/node/crypto.d.ts",
"./node_modules/@types/node/dgram.d.ts",
"./node_modules/@types/node/dns.d.ts",
"./node_modules/@types/node/domain.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/http2.d.ts",
"./node_modules/@types/node/https.d.ts",
"./node_modules/@types/node/inspector.d.ts",
"./node_modules/@types/node/module.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/os.d.ts",
"./node_modules/@types/node/path.d.ts",
"./node_modules/@types/node/perf_hooks.d.ts",
"./node_modules/@types/node/process.d.ts",
"./node_modules/@types/node/punycode.d.ts",
"./node_modules/@types/node/querystring.d.ts",
"./node_modules/@types/node/readline.d.ts",
"./node_modules/@types/node/repl.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/string_decoder.d.ts",
"./node_modules/@types/node/timers.d.ts",
"./node_modules/@types/node/tls.d.ts",
"./node_modules/@types/node/trace_events.d.ts",
"./node_modules/@types/node/tty.d.ts",
"./node_modules/@types/node/url.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/v8.d.ts",
"./node_modules/@types/node/vm.d.ts",
"./node_modules/@types/node/worker_threads.d.ts",
"./node_modules/@types/node/zlib.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/ts3.2/fs.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/ts3.2/util.d.ts": [
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts"
],
"./node_modules/@types/node/ts3.2/globals.d.ts": [
"./node_modules/@types/node/globals.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/@types/node/ts3.2/index.d.ts": [
"./node_modules/@types/node/base.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts",
"./node_modules/@types/node/ts3.2/globals.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/util.d.ts"
],
"./node_modules/@types/bn.js/index.d.ts": [
"./node_modules/@types/node/ts3.2/index.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
]
},
"exportedModulesMap": {
"./node_modules/typescript/lib/lib.es5.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2016.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2018.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.core.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.collection.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.generator.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.promise.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.object.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.string.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.intl.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/ts3.2/fs.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/ts3.2/util.d.ts"
],
"./node_modules/typescript/lib/lib.es2018.intl.d.ts": [
"./node_modules/@types/node/fs.d.ts",