-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.tsbuildinfo
1027 lines (1027 loc) · 47.4 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": "b3584bc5798ed422ce2516df360ffa9cf2d80b5eae852867db9ba3743145f895",
"signature": "b3584bc5798ed422ce2516df360ffa9cf2d80b5eae852867db9ba3743145f895",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.d.ts": {
"version": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
"signature": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.es2016.d.ts": {
"version": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
"signature": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.es2017.d.ts": {
"version": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
"signature": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.es2018.d.ts": {
"version": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
"signature": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.dom.d.ts": {
"version": "feeeb1dd8a80fb76be42b0426e8f3ffa9bdef3c2f3c12c147e7660b1c5ba8b3b",
"signature": "feeeb1dd8a80fb76be42b0426e8f3ffa9bdef3c2f3c12c147e7660b1c5ba8b3b",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.dom.iterable.d.ts": {
"version": "d42f4141bd9ce82b4e2902f26acb00c183e321be19a38bbc0e76a922c1724c94",
"signature": "d42f4141bd9ce82b4e2902f26acb00c183e321be19a38bbc0e76a922c1724c94",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.webworker.importscripts.d.ts": {
"version": "7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481",
"signature": "7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.scripthost.d.ts": {
"version": "097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd",
"signature": "097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.core.d.ts": {
"version": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
"signature": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.collection.d.ts": {
"version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
"signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.generator.d.ts": {
"version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
"signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
"version": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a",
"signature": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.promise.d.ts": {
"version": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c",
"signature": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
"version": "810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357",
"signature": "810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
"version": "62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6",
"signature": "62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
"version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
"signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
"version": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551",
"signature": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
"version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
"signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.object.d.ts": {
"version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
"signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
"version": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98",
"signature": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.string.d.ts": {
"version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
"signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.intl.d.ts": {
"version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
"signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
"version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
"signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
"version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
"signature": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
"version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
"signature": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2018.intl.d.ts": {
"version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
"signature": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2018.promise.d.ts": {
"version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
"signature": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
"version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
"signature": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
"version": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09",
"signature": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.esnext.intl.d.ts": {
"version": "506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e",
"signature": "506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.full.d.ts": {
"version": "d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed",
"signature": "d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed",
"affectsGlobalScope": false
},
"./node_modules/@types/node/globals.d.ts": {
"version": "25b4a0c4fab47c373ee49df4c239826ee3430019fc0c1b5e59edc3e398b7468d",
"signature": "25b4a0c4fab47c373ee49df4c239826ee3430019fc0c1b5e59edc3e398b7468d",
"affectsGlobalScope": true
},
"./node_modules/@types/node/async_hooks.d.ts": {
"version": "d20f08527645f62facb2d66c2b7bd31ea964b59c897d00bddb1efe8c13890b72",
"signature": "d20f08527645f62facb2d66c2b7bd31ea964b59c897d00bddb1efe8c13890b72",
"affectsGlobalScope": false
},
"./node_modules/@types/node/buffer.d.ts": {
"version": "5726b5ce952dc5beaeb08d5f64236632501568a54a390363d2339ba1dc5393b1",
"signature": "5726b5ce952dc5beaeb08d5f64236632501568a54a390363d2339ba1dc5393b1",
"affectsGlobalScope": false
},
"./node_modules/@types/node/child_process.d.ts": {
"version": "674bedbfd2004e233e2a266a3d2286e524f0d58787a98522d834d6ccda1d215a",
"signature": "674bedbfd2004e233e2a266a3d2286e524f0d58787a98522d834d6ccda1d215a",
"affectsGlobalScope": false
},
"./node_modules/@types/node/cluster.d.ts": {
"version": "714637d594e1a38a075091fe464ca91c6abc0b154784b4287f6883200e28ccef",
"signature": "714637d594e1a38a075091fe464ca91c6abc0b154784b4287f6883200e28ccef",
"affectsGlobalScope": false
},
"./node_modules/@types/node/console.d.ts": {
"version": "23edba5f47d3409810c563fe8034ae2c59e718e1ef8570f4152ccdde1915a096",
"signature": "23edba5f47d3409810c563fe8034ae2c59e718e1ef8570f4152ccdde1915a096",
"affectsGlobalScope": true
},
"./node_modules/@types/node/constants.d.ts": {
"version": "0e9c55f894ca2d9cf63b5b0d43a8cec1772dd560233fd16275bc7a485eb82f83",
"signature": "0e9c55f894ca2d9cf63b5b0d43a8cec1772dd560233fd16275bc7a485eb82f83",
"affectsGlobalScope": false
},
"./node_modules/@types/node/crypto.d.ts": {
"version": "d53b352a01645c470a0d8c31bf290ba791fc28ade0ce187a4a50f5c2f826f75e",
"signature": "d53b352a01645c470a0d8c31bf290ba791fc28ade0ce187a4a50f5c2f826f75e",
"affectsGlobalScope": false
},
"./node_modules/@types/node/dgram.d.ts": {
"version": "5f0a09de75bd965c21dc6d73671ba88830272f9ed62897bb0aa9754b369b1eed",
"signature": "5f0a09de75bd965c21dc6d73671ba88830272f9ed62897bb0aa9754b369b1eed",
"affectsGlobalScope": false
},
"./node_modules/@types/node/dns.d.ts": {
"version": "2b34e7fcba9e1f24e7f54ba5c8be5a8895b0b8b444ccf6548e04acdee0899317",
"signature": "2b34e7fcba9e1f24e7f54ba5c8be5a8895b0b8b444ccf6548e04acdee0899317",
"affectsGlobalScope": false
},
"./node_modules/@types/node/domain.d.ts": {
"version": "06d2be99c3dd2ff52114d02ee443ba486ab482423df1941d3c97d6a92e924d70",
"signature": "06d2be99c3dd2ff52114d02ee443ba486ab482423df1941d3c97d6a92e924d70",
"affectsGlobalScope": true
},
"./node_modules/@types/node/events.d.ts": {
"version": "bfd4f140c07091b5e8a963c89e6fa3f44b6cfcbc11471b465cf63e2d020ad0eb",
"signature": "bfd4f140c07091b5e8a963c89e6fa3f44b6cfcbc11471b465cf63e2d020ad0eb",
"affectsGlobalScope": true
},
"./node_modules/@types/node/fs.d.ts": {
"version": "a106a0bea088b70879ac88ff606dc253c0cc474ea05ad3a282b8bfb1091ae576",
"signature": "a106a0bea088b70879ac88ff606dc253c0cc474ea05ad3a282b8bfb1091ae576",
"affectsGlobalScope": false
},
"./node_modules/@types/node/fs/promises.d.ts": {
"version": "c98ce957db9eebd75f53edda3f6893e05ab2d2283b5667b18e31bcdb6427ed10",
"signature": "c98ce957db9eebd75f53edda3f6893e05ab2d2283b5667b18e31bcdb6427ed10",
"affectsGlobalScope": false
},
"./node_modules/@types/node/http.d.ts": {
"version": "1f08bd8305d4a789a68f71ab622156dfff993aa51a2aa58b9ccf166cc6f9fcf7",
"signature": "1f08bd8305d4a789a68f71ab622156dfff993aa51a2aa58b9ccf166cc6f9fcf7",
"affectsGlobalScope": false
},
"./node_modules/@types/node/http2.d.ts": {
"version": "9aff68f1b847b846d3d50a58c9f8f99389bedd0258d1b1c201f11b97ecfd36f8",
"signature": "9aff68f1b847b846d3d50a58c9f8f99389bedd0258d1b1c201f11b97ecfd36f8",
"affectsGlobalScope": false
},
"./node_modules/@types/node/https.d.ts": {
"version": "1978992206803f5761e99e893d93b25abc818c5fe619674fdf2ae02b29f641ba",
"signature": "1978992206803f5761e99e893d93b25abc818c5fe619674fdf2ae02b29f641ba",
"affectsGlobalScope": false
},
"./node_modules/@types/node/inspector.d.ts": {
"version": "05fbe81f09fc455a2c343d2458d2b3c600c90b92b22926be765ee79326be9466",
"signature": "05fbe81f09fc455a2c343d2458d2b3c600c90b92b22926be765ee79326be9466",
"affectsGlobalScope": false
},
"./node_modules/@types/node/module.d.ts": {
"version": "8e7d6dae9e19bbe47600dcfd4418db85b30ae7351474ea0aad5e628f9845d340",
"signature": "8e7d6dae9e19bbe47600dcfd4418db85b30ae7351474ea0aad5e628f9845d340",
"affectsGlobalScope": false
},
"./node_modules/@types/node/net.d.ts": {
"version": "f20ea392f7f27feb7a90e5a24319a4e365b07bf83c39a547711fe7ff9df68657",
"signature": "f20ea392f7f27feb7a90e5a24319a4e365b07bf83c39a547711fe7ff9df68657",
"affectsGlobalScope": false
},
"./node_modules/@types/node/os.d.ts": {
"version": "32542c4660ecda892a333a533feedba31738ee538ef6a78eb73af647137bc3fc",
"signature": "32542c4660ecda892a333a533feedba31738ee538ef6a78eb73af647137bc3fc",
"affectsGlobalScope": false
},
"./node_modules/@types/node/path.d.ts": {
"version": "0ecacea5047d1a7d350e7049dbd22f26435be5e8736a81a56afec5b3264db1ca",
"signature": "0ecacea5047d1a7d350e7049dbd22f26435be5e8736a81a56afec5b3264db1ca",
"affectsGlobalScope": false
},
"./node_modules/@types/node/perf_hooks.d.ts": {
"version": "ffcb4ebde21f83370ed402583888b28651d2eb7f05bfec9482eb46d82adedd7f",
"signature": "ffcb4ebde21f83370ed402583888b28651d2eb7f05bfec9482eb46d82adedd7f",
"affectsGlobalScope": false
},
"./node_modules/@types/node/process.d.ts": {
"version": "06c004006016a51c4d1855527a523562c329dc44c473931c65f10373281f730e",
"signature": "06c004006016a51c4d1855527a523562c329dc44c473931c65f10373281f730e",
"affectsGlobalScope": true
},
"./node_modules/@types/node/punycode.d.ts": {
"version": "a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8",
"signature": "a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8",
"affectsGlobalScope": false
},
"./node_modules/@types/node/querystring.d.ts": {
"version": "f4a3fc4efc6944e7b7bd4ccfa45e0df68b6359808e6cf9d061f04fd964a7b2d3",
"signature": "f4a3fc4efc6944e7b7bd4ccfa45e0df68b6359808e6cf9d061f04fd964a7b2d3",
"affectsGlobalScope": false
},
"./node_modules/@types/node/readline.d.ts": {
"version": "73cad675aead7a2c05cf934e7e700c61d84b2037ac1d576c3f751199b25331da",
"signature": "73cad675aead7a2c05cf934e7e700c61d84b2037ac1d576c3f751199b25331da",
"affectsGlobalScope": false
},
"./node_modules/@types/node/repl.d.ts": {
"version": "8c3137ba3583ec18484429ec1c8eff89efdc42730542f157b38b102fdccc0c71",
"signature": "8c3137ba3583ec18484429ec1c8eff89efdc42730542f157b38b102fdccc0c71",
"affectsGlobalScope": false
},
"./node_modules/@types/node/stream.d.ts": {
"version": "d84300d886b45a198c346158e4ff7ae361cc7bc1c3deab44afb3db7de56b5d25",
"signature": "d84300d886b45a198c346158e4ff7ae361cc7bc1c3deab44afb3db7de56b5d25",
"affectsGlobalScope": false
},
"./node_modules/@types/node/string_decoder.d.ts": {
"version": "94ca7beec4e274d32362b54e0133152f7b4be9487db7b005070c03880b6363aa",
"signature": "94ca7beec4e274d32362b54e0133152f7b4be9487db7b005070c03880b6363aa",
"affectsGlobalScope": false
},
"./node_modules/@types/node/timers.d.ts": {
"version": "2d713cbcbd5bcc38d91546eaeea7bb1c8686dc4a2995a28556d957b1b9de11d9",
"signature": "2d713cbcbd5bcc38d91546eaeea7bb1c8686dc4a2995a28556d957b1b9de11d9",
"affectsGlobalScope": false
},
"./node_modules/@types/node/tls.d.ts": {
"version": "bbf21f210782db4193359010a4710786add43e3b50aa42fc0d371f45b4e4d8d3",
"signature": "bbf21f210782db4193359010a4710786add43e3b50aa42fc0d371f45b4e4d8d3",
"affectsGlobalScope": false
},
"./node_modules/@types/node/trace_events.d.ts": {
"version": "0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a",
"signature": "0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a",
"affectsGlobalScope": false
},
"./node_modules/@types/node/tty.d.ts": {
"version": "3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837",
"signature": "3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837",
"affectsGlobalScope": false
},
"./node_modules/@types/node/url.d.ts": {
"version": "631e96db896d645f7132c488ad34a16d71fd2be9f44696f8c98289ee1c8cbfa9",
"signature": "631e96db896d645f7132c488ad34a16d71fd2be9f44696f8c98289ee1c8cbfa9",
"affectsGlobalScope": false
},
"./node_modules/@types/node/util.d.ts": {
"version": "2c77230d381cba81eb6f87cda2fbfff6c0427c6546c2e2590110effff37c58f7",
"signature": "2c77230d381cba81eb6f87cda2fbfff6c0427c6546c2e2590110effff37c58f7",
"affectsGlobalScope": false
},
"./node_modules/@types/node/v8.d.ts": {
"version": "da86ee9a2f09a4583db1d5e37815894967e1f694ad9f3c25e84e0e4d40411e14",
"signature": "da86ee9a2f09a4583db1d5e37815894967e1f694ad9f3c25e84e0e4d40411e14",
"affectsGlobalScope": false
},
"./node_modules/@types/node/vm.d.ts": {
"version": "141a943e5690105898a67537a470f70b56d0e183441b56051d929e902376b7b2",
"signature": "141a943e5690105898a67537a470f70b56d0e183441b56051d929e902376b7b2",
"affectsGlobalScope": false
},
"./node_modules/@types/node/worker_threads.d.ts": {
"version": "ddc086b1adac44e2fccf55422da1e90fa970e659d77f99712422a421564b4877",
"signature": "ddc086b1adac44e2fccf55422da1e90fa970e659d77f99712422a421564b4877",
"affectsGlobalScope": false
},
"./node_modules/@types/node/zlib.d.ts": {
"version": "515ef1d99036ff0dafa5bf738e02222edea94e0d97a0aa0ff277ac5e96b57977",
"signature": "515ef1d99036ff0dafa5bf738e02222edea94e0d97a0aa0ff277ac5e96b57977",
"affectsGlobalScope": false
},
"./node_modules/@types/node/globals.global.d.ts": {
"version": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
"signature": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
"affectsGlobalScope": true
},
"./node_modules/@types/node/wasi.d.ts": {
"version": "780058f4a804c8bdcdd2f60e7af64b2bc57d149c1586ee3db732a84d659a50bf",
"signature": "780058f4a804c8bdcdd2f60e7af64b2bc57d149c1586ee3db732a84d659a50bf",
"affectsGlobalScope": false
},
"./node_modules/@types/node/ts3.6/base.d.ts": {
"version": "ae68a04912ee5a0f589276f9ec60b095f8c40d48128a4575b3fdd7d93806931c",
"signature": "ae68a04912ee5a0f589276f9ec60b095f8c40d48128a4575b3fdd7d93806931c",
"affectsGlobalScope": false
},
"./node_modules/@types/node/assert.d.ts": {
"version": "19d580a3b42ad5caeaee266ae958260e23f2df0549ee201c886c8bd7a4f01d4e",
"signature": "19d580a3b42ad5caeaee266ae958260e23f2df0549ee201c886c8bd7a4f01d4e",
"affectsGlobalScope": false
},
"./node_modules/@types/node/base.d.ts": {
"version": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b",
"signature": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b",
"affectsGlobalScope": false
},
"./node_modules/@types/node/index.d.ts": {
"version": "9c4c395e927045b324877acdc4bfb95f128f36bc9f073266a2f0342495075a4f",
"signature": "9c4c395e927045b324877acdc4bfb95f128f36bc9f073266a2f0342495075a4f",
"affectsGlobalScope": false
},
"./node_modules/@types/range-parser/index.d.ts": {
"version": "4e88b833be14c7f384e0dcd57bb30acd799e8e34d212635d693e41a75a71164b",
"signature": "4e88b833be14c7f384e0dcd57bb30acd799e8e34d212635d693e41a75a71164b",
"affectsGlobalScope": false
},
"./node_modules/@types/qs/index.d.ts": {
"version": "98437d5a640b67c41534f0de2dcb64c75433dcdff54ff8f8432e613663619a2e",
"signature": "98437d5a640b67c41534f0de2dcb64c75433dcdff54ff8f8432e613663619a2e",
"affectsGlobalScope": false
},
"./node_modules/@types/express-serve-static-core/index.d.ts": {
"version": "e41a1ce538d71d5a3389b7fc2e39c15a4972f0d4cb14bf2fe8cda8c361150028",
"signature": "e41a1ce538d71d5a3389b7fc2e39c15a4972f0d4cb14bf2fe8cda8c361150028",
"affectsGlobalScope": true
},
"./node_modules/@types/mime/index.d.ts": {
"version": "84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86",
"signature": "84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86",
"affectsGlobalScope": false
},
"./node_modules/@types/serve-static/index.d.ts": {
"version": "3b02517f9be71f255eadab9892406055d069167891f1e1ea16c96c4ff1ddda01",
"signature": "3b02517f9be71f255eadab9892406055d069167891f1e1ea16c96c4ff1ddda01",
"affectsGlobalScope": false
},
"./node_modules/@types/connect/index.d.ts": {
"version": "81c14b89fa607b86dd726e2e3e91360cf8155ce97468404324d404a5bd65b2eb",
"signature": "81c14b89fa607b86dd726e2e3e91360cf8155ce97468404324d404a5bd65b2eb",
"affectsGlobalScope": false
},
"./node_modules/@types/body-parser/index.d.ts": {
"version": "ebddbd167c2fabd0151f50e5df94ca6d845149c47521280d8867afe3429dd078",
"signature": "ebddbd167c2fabd0151f50e5df94ca6d845149c47521280d8867afe3429dd078",
"affectsGlobalScope": false
},
"./node_modules/@types/express/index.d.ts": {
"version": "3b05c396564e51753e921e1cc4aae1cf7cd9be53c891cf2e81fa29f11c0bd373",
"signature": "3b05c396564e51753e921e1cc4aae1cf7cd9be53c891cf2e81fa29f11c0bd373",
"affectsGlobalScope": false
},
"./node_modules/axios/index.d.ts": {
"version": "0d892f035dbee4534f0ba096407136877595ca592f67ec9bb8a5c912b9c967e8",
"signature": "0d892f035dbee4534f0ba096407136877595ca592f67ec9bb8a5c912b9c967e8",
"affectsGlobalScope": false
},
"./node_modules/moment/moment.d.ts": {
"version": "d62fa6fe33566fa743b3d6715a1a2fe46e937ba9d2ba158563c5744315d438a7",
"signature": "d62fa6fe33566fa743b3d6715a1a2fe46e937ba9d2ba158563c5744315d438a7",
"affectsGlobalScope": false
},
"./src/services/medium/apis.ts": {
"version": "a0ead18ed18d2e5c92a8dd307be285ddc0fa6de83d5b9764e6f35f9836c703f1",
"signature": "675bb95e3141e7a7d27038d13edafce51c7dcd178c430c966a656a7ad25eec36",
"affectsGlobalScope": false
},
"./src/utils/svgtemplates.ts": {
"version": "34c6608f6efcce08b24b936b43deca80844ae3fff1b2982881b137c5d1723c0f",
"signature": "7781e838e938887a9c826faa801f11a5c3ba9ec2ef711207a2fe41b542f0c886",
"affectsGlobalScope": false
},
"./src/services/medium/router.ts": {
"version": "a836151d2337af1956f1f3d5fecc755828adf7ab9b0c69a554722a6b0cd6048f",
"signature": "03fb69bf2b0724865e61d10d94477b537295a225cf21f21e828e0677faf7ef56",
"affectsGlobalScope": false
},
"./src/api/index.ts": {
"version": "6c07982b98a60c32c800c190f7603ec0e0aac6d15204c9ddd819be7697379bc4",
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
"affectsGlobalScope": false
},
"./utils/svgtemplates.d.ts": {
"version": "7781e838e938887a9c826faa801f11a5c3ba9ec2ef711207a2fe41b542f0c886",
"signature": "7781e838e938887a9c826faa801f11a5c3ba9ec2ef711207a2fe41b542f0c886",
"affectsGlobalScope": false
}
},
"options": {
"esModuleInterop": true,
"module": 1,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": 4,
"sourceMap": true,
"outDir": "./",
"baseUrl": "./",
"incremental": true,
"watch": true,
"configFilePath": "./tsconfig.json"
},
"referencedMap": {
"./node_modules/@types/body-parser/index.d.ts": [
"./node_modules/@types/connect/index.d.ts",
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/index.d.ts"
],
"./node_modules/@types/connect/index.d.ts": [
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/index.d.ts"
],
"./node_modules/@types/express-serve-static-core/index.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/index.d.ts",
"./node_modules/@types/qs/index.d.ts",
"./node_modules/@types/range-parser/index.d.ts"
],
"./node_modules/@types/express/index.d.ts": [
"./node_modules/@types/body-parser/index.d.ts",
"./node_modules/@types/express-serve-static-core/index.d.ts",
"./node_modules/@types/qs/index.d.ts",
"./node_modules/@types/serve-static/index.d.ts"
],
"./node_modules/@types/node/assert.d.ts": [
"./node_modules/@types/node/assert.d.ts"
],
"./node_modules/@types/node/async_hooks.d.ts": [
"./node_modules/@types/node/async_hooks.d.ts"
],
"./node_modules/@types/node/base.d.ts": [
"./node_modules/@types/node/assert.d.ts",
"./node_modules/@types/node/ts3.6/base.d.ts"
],
"./node_modules/@types/node/buffer.d.ts": [
"./node_modules/@types/node/buffer.d.ts"
],
"./node_modules/@types/node/child_process.d.ts": [
"./node_modules/@types/node/child_process.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/cluster.d.ts": [
"./node_modules/@types/node/child_process.d.ts",
"./node_modules/@types/node/cluster.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/net.d.ts"
],
"./node_modules/@types/node/console.d.ts": [
"./node_modules/@types/node/util.d.ts"
],
"./node_modules/@types/node/constants.d.ts": [
"./node_modules/@types/node/constants.d.ts",
"./node_modules/@types/node/crypto.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/os.d.ts"
],
"./node_modules/@types/node/crypto.d.ts": [
"./node_modules/@types/node/crypto.d.ts",
"./node_modules/@types/node/stream.d.ts"
],
"./node_modules/@types/node/dgram.d.ts": [
"./node_modules/@types/node/dgram.d.ts",
"./node_modules/@types/node/dns.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/net.d.ts"
],
"./node_modules/@types/node/dns.d.ts": [
"./node_modules/@types/node/dns.d.ts"
],
"./node_modules/@types/node/domain.d.ts": [
"./node_modules/@types/node/domain.d.ts",
"./node_modules/@types/node/events.d.ts"
],
"./node_modules/@types/node/events.d.ts": [
"./node_modules/@types/node/events.d.ts"
],
"./node_modules/@types/node/fs.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/fs/promises.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/url.d.ts"
],
"./node_modules/@types/node/fs/promises.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/fs/promises.d.ts"
],
"./node_modules/@types/node/http.d.ts": [
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/url.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/http.d.ts",
"./node_modules/@types/node/http2.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/https.d.ts": [
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/https.d.ts",
"./node_modules/@types/node/tls.d.ts",
"./node_modules/@types/node/url.d.ts"
],
"./node_modules/@types/node/index.d.ts": [
"./node_modules/@types/node/base.d.ts"
],
"./node_modules/@types/node/inspector.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/inspector.d.ts"
],
"./node_modules/@types/node/module.d.ts": [
"./node_modules/@types/node/module.d.ts",
"./node_modules/@types/node/url.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/net.d.ts",
"./node_modules/@types/node/stream.d.ts"
],
"./node_modules/@types/node/os.d.ts": [
"./node_modules/@types/node/os.d.ts"
],
"./node_modules/@types/node/path.d.ts": [
"./node_modules/@types/node/path.d.ts"
],
"./node_modules/@types/node/perf_hooks.d.ts": [
"./node_modules/@types/node/async_hooks.d.ts",
"./node_modules/@types/node/perf_hooks.d.ts"
],
"./node_modules/@types/node/process.d.ts": [
"./node_modules/@types/node/tty.d.ts"
],
"./node_modules/@types/node/punycode.d.ts": [
"./node_modules/@types/node/punycode.d.ts"
],
"./node_modules/@types/node/querystring.d.ts": [
"./node_modules/@types/node/querystring.d.ts"
],
"./node_modules/@types/node/readline.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/readline.d.ts"
],
"./node_modules/@types/node/repl.d.ts": [
"./node_modules/@types/node/readline.d.ts",
"./node_modules/@types/node/repl.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/vm.d.ts"
],
"./node_modules/@types/node/stream.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/stream.d.ts"
],
"./node_modules/@types/node/string_decoder.d.ts": [
"./node_modules/@types/node/string_decoder.d.ts"
],
"./node_modules/@types/node/timers.d.ts": [
"./node_modules/@types/node/timers.d.ts"
],
"./node_modules/@types/node/tls.d.ts": [
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/tls.d.ts"
],
"./node_modules/@types/node/trace_events.d.ts": [
"./node_modules/@types/node/trace_events.d.ts"
],
"./node_modules/@types/node/ts3.6/base.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/fs/promises.d.ts",
"./node_modules/@types/node/globals.d.ts",
"./node_modules/@types/node/globals.global.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/wasi.d.ts",
"./node_modules/@types/node/worker_threads.d.ts",
"./node_modules/@types/node/zlib.d.ts"
],
"./node_modules/@types/node/tty.d.ts": [
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/tty.d.ts"
],
"./node_modules/@types/node/url.d.ts": [
"./node_modules/@types/node/querystring.d.ts",
"./node_modules/@types/node/url.d.ts"
],
"./node_modules/@types/node/util.d.ts": [
"./node_modules/@types/node/util.d.ts"
],
"./node_modules/@types/node/v8.d.ts": [
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/v8.d.ts"
],
"./node_modules/@types/node/vm.d.ts": [
"./node_modules/@types/node/vm.d.ts"
],
"./node_modules/@types/node/wasi.d.ts": [
"./node_modules/@types/node/wasi.d.ts"
],
"./node_modules/@types/node/worker_threads.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/fs/promises.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/url.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/stream.d.ts",
"./node_modules/@types/node/zlib.d.ts"
],
"./node_modules/@types/serve-static/index.d.ts": [
"./node_modules/@types/mime/index.d.ts",
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/index.d.ts"
],
"./src/api/index.ts": [
"./node_modules/@types/express/index.d.ts",
"./src/services/medium/router.ts"
],
"./src/services/medium/apis.ts": [
"./node_modules/axios/index.d.ts",
"./node_modules/moment/moment.d.ts"
],
"./src/services/medium/router.ts": [
"./node_modules/@types/express/index.d.ts",
"./src/services/medium/apis.ts",
"./src/utils/svgtemplates.ts"
],
"./src/utils/svgtemplates.ts": [
"./src/services/medium/apis.ts"
]
},
"exportedModulesMap": {
"./node_modules/@types/body-parser/index.d.ts": [
"./node_modules/@types/connect/index.d.ts",
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/index.d.ts"
],
"./node_modules/@types/connect/index.d.ts": [
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/index.d.ts"
],
"./node_modules/@types/express-serve-static-core/index.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/index.d.ts",
"./node_modules/@types/qs/index.d.ts",
"./node_modules/@types/range-parser/index.d.ts"
],
"./node_modules/@types/express/index.d.ts": [
"./node_modules/@types/body-parser/index.d.ts",
"./node_modules/@types/express-serve-static-core/index.d.ts",
"./node_modules/@types/qs/index.d.ts",
"./node_modules/@types/serve-static/index.d.ts"
],
"./node_modules/@types/node/assert.d.ts": [
"./node_modules/@types/node/assert.d.ts"
],
"./node_modules/@types/node/async_hooks.d.ts": [
"./node_modules/@types/node/async_hooks.d.ts"
],
"./node_modules/@types/node/base.d.ts": [
"./node_modules/@types/node/assert.d.ts",
"./node_modules/@types/node/ts3.6/base.d.ts"
],
"./node_modules/@types/node/buffer.d.ts": [
"./node_modules/@types/node/buffer.d.ts"
],
"./node_modules/@types/node/child_process.d.ts": [
"./node_modules/@types/node/child_process.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/cluster.d.ts": [
"./node_modules/@types/node/child_process.d.ts",
"./node_modules/@types/node/cluster.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/net.d.ts"
],
"./node_modules/@types/node/console.d.ts": [
"./node_modules/@types/node/util.d.ts"
],
"./node_modules/@types/node/constants.d.ts": [
"./node_modules/@types/node/constants.d.ts",
"./node_modules/@types/node/crypto.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/os.d.ts"
],
"./node_modules/@types/node/crypto.d.ts": [
"./node_modules/@types/node/crypto.d.ts",
"./node_modules/@types/node/stream.d.ts"
],
"./node_modules/@types/node/dgram.d.ts": [
"./node_modules/@types/node/dgram.d.ts",
"./node_modules/@types/node/dns.d.ts",
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/net.d.ts"
],
"./node_modules/@types/node/dns.d.ts": [
"./node_modules/@types/node/dns.d.ts"
],
"./node_modules/@types/node/domain.d.ts": [
"./node_modules/@types/node/domain.d.ts",
"./node_modules/@types/node/events.d.ts"
],
"./node_modules/@types/node/events.d.ts": [
"./node_modules/@types/node/events.d.ts"
],
"./node_modules/@types/node/fs.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/fs/promises.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/url.d.ts"
],
"./node_modules/@types/node/fs/promises.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/@types/node/fs/promises.d.ts"
],
"./node_modules/@types/node/http.d.ts": [
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/url.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/http.d.ts",
"./node_modules/@types/node/http2.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/https.d.ts": [
"./node_modules/@types/node/http.d.ts",
"./node_modules/@types/node/https.d.ts",
"./node_modules/@types/node/tls.d.ts",
"./node_modules/@types/node/url.d.ts"
],
"./node_modules/@types/node/index.d.ts": [
"./node_modules/@types/node/base.d.ts"
],
"./node_modules/@types/node/inspector.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/inspector.d.ts"
],
"./node_modules/@types/node/module.d.ts": [
"./node_modules/@types/node/module.d.ts",
"./node_modules/@types/node/url.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/net.d.ts",
"./node_modules/@types/node/stream.d.ts"
],
"./node_modules/@types/node/os.d.ts": [
"./node_modules/@types/node/os.d.ts"
],
"./node_modules/@types/node/path.d.ts": [
"./node_modules/@types/node/path.d.ts"
],
"./node_modules/@types/node/perf_hooks.d.ts": [
"./node_modules/@types/node/async_hooks.d.ts",
"./node_modules/@types/node/perf_hooks.d.ts"
],
"./node_modules/@types/node/process.d.ts": [
"./node_modules/@types/node/tty.d.ts"
],
"./node_modules/@types/node/punycode.d.ts": [
"./node_modules/@types/node/punycode.d.ts"
],
"./node_modules/@types/node/querystring.d.ts": [
"./node_modules/@types/node/querystring.d.ts"
],
"./node_modules/@types/node/readline.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/readline.d.ts"
],
"./node_modules/@types/node/repl.d.ts": [
"./node_modules/@types/node/readline.d.ts",
"./node_modules/@types/node/repl.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/vm.d.ts"
],
"./node_modules/@types/node/stream.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/stream.d.ts"
],
"./node_modules/@types/node/string_decoder.d.ts": [
"./node_modules/@types/node/string_decoder.d.ts"
],
"./node_modules/@types/node/timers.d.ts": [
"./node_modules/@types/node/timers.d.ts"
],
"./node_modules/@types/node/tls.d.ts": [
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/tls.d.ts"
],
"./node_modules/@types/node/trace_events.d.ts": [
"./node_modules/@types/node/trace_events.d.ts"
],
"./node_modules/@types/node/ts3.6/base.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/fs/promises.d.ts",
"./node_modules/@types/node/globals.d.ts",
"./node_modules/@types/node/globals.global.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/wasi.d.ts",
"./node_modules/@types/node/worker_threads.d.ts",
"./node_modules/@types/node/zlib.d.ts"
],
"./node_modules/@types/node/tty.d.ts": [
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/tty.d.ts"
],
"./node_modules/@types/node/url.d.ts": [
"./node_modules/@types/node/querystring.d.ts",
"./node_modules/@types/node/url.d.ts"
],
"./node_modules/@types/node/util.d.ts": [
"./node_modules/@types/node/util.d.ts"
],
"./node_modules/@types/node/v8.d.ts": [
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/v8.d.ts"
],
"./node_modules/@types/node/vm.d.ts": [
"./node_modules/@types/node/vm.d.ts"
],
"./node_modules/@types/node/wasi.d.ts": [
"./node_modules/@types/node/wasi.d.ts"
],
"./node_modules/@types/node/worker_threads.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/fs/promises.d.ts",
"./node_modules/@types/node/stream.d.ts",