-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.tsbuildinfo
More file actions
3840 lines (3840 loc) · 194 KB
/
tsconfig.tsbuildinfo
File metadata and controls
3840 lines (3840 loc) · 194 KB
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": "70ae6416528e68c2ee7b62892200d2ca631759943d4429f8b779b947ff1e124d",
"signature": "70ae6416528e68c2ee7b62892200d2ca631759943d4429f8b779b947ff1e124d",
"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.es2019.d.ts": {
"version": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
"signature": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
"affectsGlobalScope": false
},
"../../node_modules/typescript/lib/lib.es2020.d.ts": {
"version": "94b4108552f078722078d7c4a010ca4851063882f6c0c51a1468aa7a39aed4b3",
"signature": "94b4108552f078722078d7c4a010ca4851063882f6c0c51a1468aa7a39aed4b3",
"affectsGlobalScope": false
},
"../../node_modules/typescript/lib/lib.esnext.d.ts": {
"version": "2f8f379dedbdbd96a38a1e445cb3919853a1157a950fd977f85808db8d0f8a58",
"signature": "2f8f379dedbdbd96a38a1e445cb3919853a1157a950fd977f85808db8d0f8a58",
"affectsGlobalScope": false
},
"../../node_modules/typescript/lib/lib.dom.d.ts": {
"version": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
"signature": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.dom.iterable.d.ts": {
"version": "fb0c09b697dc42afa84d1587e3c994a2f554d2a45635e4f0618768d16a86b69a",
"signature": "fb0c09b697dc42afa84d1587e3c994a2f554d2a45635e4f0618768d16a86b69a",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2015.core.d.ts": {
"version": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
"signature": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
"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": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
"signature": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2015.promise.d.ts": {
"version": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
"signature": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
"version": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
"signature": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
"version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
"signature": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
"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": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
"signature": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
"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": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
"signature": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
"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.es2019.array.d.ts": {
"version": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
"signature": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2019.object.d.ts": {
"version": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
"signature": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2019.string.d.ts": {
"version": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
"signature": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2019.symbol.d.ts": {
"version": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
"signature": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
"version": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
"signature": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2020.promise.d.ts": {
"version": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
"signature": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2020.string.d.ts": {
"version": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
"signature": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": {
"version": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
"signature": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
"version": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
"signature": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.esnext.string.d.ts": {
"version": "fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe",
"signature": "fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.esnext.promise.d.ts": {
"version": "cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e",
"signature": "cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e",
"affectsGlobalScope": true
},
"../../node_modules/automerge/dist/index.d.ts": {
"version": "58c9b420d06d4a1252bc5b4851639978b67e580934d5b477da00fbc35651246c",
"signature": "58c9b420d06d4a1252bc5b4851639978b67e580934d5b477da00fbc35651246c",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/create-editor.d.ts": {
"version": "0c1503f920fc74def6465018a35c34213481829e6496f6b6d2261b467f378d6a",
"signature": "0c1503f920fc74def6465018a35c34213481829e6496f6b6d2261b467f378d6a",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/editor.d.ts": {
"version": "7fca3cd757f780ba1c645d298283ddf51846a9f9ee863912cce28c5fa9d22d7e",
"signature": "7fca3cd757f780ba1c645d298283ddf51846a9f9ee863912cce28c5fa9d22d7e",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/element.d.ts": {
"version": "242b909d85dbefbed6f8599c8d451a865c5666791be620fee5c9786cb7fc1c13",
"signature": "242b909d85dbefbed6f8599c8d451a865c5666791be620fee5c9786cb7fc1c13",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/location.d.ts": {
"version": "22f5545ab1033c4d2ac608a239de59dbc1f699d36755ebb9daaca12c5ab01656",
"signature": "22f5545ab1033c4d2ac608a239de59dbc1f699d36755ebb9daaca12c5ab01656",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/node.d.ts": {
"version": "085242d1d113a9ad188b1faa676866928b1e636ec37fc39bb1d34d37210d09c1",
"signature": "085242d1d113a9ad188b1faa676866928b1e636ec37fc39bb1d34d37210d09c1",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/operation.d.ts": {
"version": "e84d3dc9d05c1d4478616c98bbc6547c67d9934e8e2f70aeaeec2f3151fe3012",
"signature": "e84d3dc9d05c1d4478616c98bbc6547c67d9934e8e2f70aeaeec2f3151fe3012",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/path.d.ts": {
"version": "23195b18275c078c28351047fee044068f793e5dac86ae203966823d0179aec4",
"signature": "23195b18275c078c28351047fee044068f793e5dac86ae203966823d0179aec4",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/path-ref.d.ts": {
"version": "4bc9eb8928945ece0f9ba47c26b2ec98bde709e7c6f154943063f7351a4b9054",
"signature": "4bc9eb8928945ece0f9ba47c26b2ec98bde709e7c6f154943063f7351a4b9054",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/point.d.ts": {
"version": "a880de7da692bb0598a7b9699ae37b05058a2c3516bc0507050207feaf8f475a",
"signature": "a880de7da692bb0598a7b9699ae37b05058a2c3516bc0507050207feaf8f475a",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/point-ref.d.ts": {
"version": "0127434fef691a5bb85886913d268944657bfba76db482657b7a22aff4dd8b5d",
"signature": "0127434fef691a5bb85886913d268944657bfba76db482657b7a22aff4dd8b5d",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/range.d.ts": {
"version": "7439bf3165bee50ea18dcf852cc284b9fa34543bb73df7e11112cde3fb0072bb",
"signature": "7439bf3165bee50ea18dcf852cc284b9fa34543bb73df7e11112cde3fb0072bb",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/range-ref.d.ts": {
"version": "960383f50574523793817a43810418198f0f876a348ab5d48d3e5aa4ec6c7d49",
"signature": "960383f50574523793817a43810418198f0f876a348ab5d48d3e5aa4ec6c7d49",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/interfaces/text.d.ts": {
"version": "24388eab62c340211eafad35ea7066e405bd3efe7c761bbdf4542f9146477af8",
"signature": "24388eab62c340211eafad35ea7066e405bd3efe7c761bbdf4542f9146477af8",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/transforms/index.d.ts": {
"version": "5a25176b32b7b9e6fddf9256f6df1468ce23e1165a53944268219dd98911d877",
"signature": "5a25176b32b7b9e6fddf9256f6df1468ce23e1165a53944268219dd98911d877",
"affectsGlobalScope": false
},
"../../node_modules/slate/dist/index.d.ts": {
"version": "df1d39123003f128c52a03012aa32829487c48228bcdf681ad1e6fa22d9d2a1a",
"signature": "df1d39123003f128c52a03012aa32829487c48228bcdf681ad1e6fa22d9d2a1a",
"affectsGlobalScope": false
},
"../bridge/lib/model/index.d.ts": {
"version": "992609ba4d6ea4dcf2201aa241134b310a7ce0535bce741b3214bc3600854902",
"signature": "992609ba4d6ea4dcf2201aa241134b310a7ce0535bce741b3214bc3600854902",
"affectsGlobalScope": false
},
"../bridge/lib/apply/index.d.ts": {
"version": "9cb4bc41b0e4f81e29754413bd5784448951f0e109caf5e381a5e89318440515",
"signature": "9cb4bc41b0e4f81e29754413bd5784448951f0e109caf5e381a5e89318440515",
"affectsGlobalScope": false
},
"../bridge/lib/convert/index.d.ts": {
"version": "d6a00eb0b17c404f32922a771f4d2d6eb60c5e73872a8cf7a96afc497a0cd65d",
"signature": "d6a00eb0b17c404f32922a771f4d2d6eb60c5e73872a8cf7a96afc497a0cd65d",
"affectsGlobalScope": false
},
"../bridge/lib/utils/tosync.d.ts": {
"version": "9e7e84e33f73abba839b8806cf5edc4aab9dd8b5ca15acb703e354f198ea9485",
"signature": "9e7e84e33f73abba839b8806cf5edc4aab9dd8b5ca15acb703e354f198ea9485",
"affectsGlobalScope": false
},
"../bridge/lib/utils/hexgen.d.ts": {
"version": "566c77ec4ddd1af3d4ad2e44c017a726e7d7336ec5a6aa42265b2624eb984e3d",
"signature": "566c77ec4ddd1af3d4ad2e44c017a726e7d7336ec5a6aa42265b2624eb984e3d",
"affectsGlobalScope": false
},
"../bridge/lib/utils/testutils.d.ts": {
"version": "351e5a7397701112d025fba3a525190557810a9e9fdbd0854a778b6792e081ee",
"signature": "351e5a7397701112d025fba3a525190557810a9e9fdbd0854a778b6792e081ee",
"affectsGlobalScope": false
},
"../bridge/lib/utils/index.d.ts": {
"version": "9305e1e4f50afe9ba6f08f5753b5673eb46daad26758b6c35e42a01e35dd49b0",
"signature": "9305e1e4f50afe9ba6f08f5753b5673eb46daad26758b6c35e42a01e35dd49b0",
"affectsGlobalScope": false
},
"../bridge/lib/cursor/index.d.ts": {
"version": "1ee29dce268b3ea4242b07e071dbde58d2f66ead1e31a8ada5997e749bdce510",
"signature": "1ee29dce268b3ea4242b07e071dbde58d2f66ead1e31a8ada5997e749bdce510",
"affectsGlobalScope": false
},
"../bridge/lib/index.d.ts": {
"version": "910dae2c3a511fc9f9ed636df6f917c129a299307edce270a64c7d2034234b59",
"signature": "910dae2c3a511fc9f9ed636df6f917c129a299307edce270a64c7d2034234b59",
"affectsGlobalScope": false
},
"./src/automerge-editor.ts": {
"version": "f20c3398c2c64a9a533febb374ea4c5dff5438de4212b4f1a6e51cb71c86908e",
"signature": "837114a5ede72958dcd07e3a5750cf2a369f8240c53bd06406fb513e7bbdc01a",
"affectsGlobalScope": false
},
"../../node_modules/@types/react/global.d.ts": {
"version": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
"signature": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
"affectsGlobalScope": true
},
"../../node_modules/csstype/index.d.ts": {
"version": "cd4fba36eeb79a6e2ff14bbe1024cd83ae542c1bd1c2a02ed853ebc251974119",
"signature": "cd4fba36eeb79a6e2ff14bbe1024cd83ae542c1bd1c2a02ed853ebc251974119",
"affectsGlobalScope": false
},
"../../node_modules/@types/prop-types/index.d.ts": {
"version": "a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",
"signature": "a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",
"affectsGlobalScope": false
},
"../../node_modules/@types/react/index.d.ts": {
"version": "ff067b0cf109036f6b1af410dd4cb59cb1d28e750d05a26fca3da3632a0b2b38",
"signature": "ff067b0cf109036f6b1af410dd4cb59cb1d28e750d05a26fca3da3632a0b2b38",
"affectsGlobalScope": true
},
"./src/usecursor.ts": {
"version": "77fa8f4e014770675454bacd0994562501970432df77ba67fde59fc68fde4a70",
"signature": "36df635f8214455017caeaf3dd87ce1e8ea5d160f6df6eee590a214d2c4a91fc",
"affectsGlobalScope": false
},
"./src/withautomerge.ts": {
"version": "3683c4c6db3b49b02d3814afef91c81e02de2807159b4d1bbfc0e787d99ac06b",
"signature": "b8f54333e7bc492c9ad8bfca6154101edb0cc499952627dd6bdf1b261fd53dac",
"affectsGlobalScope": false
},
"./src/withautomergehistory.ts": {
"version": "c772ab1fbca8fa683d959f75477e9e659d2ecad37477d9fa9e20a2cc2caf52ab",
"signature": "77d42d03074992f6bec931f02a126bdcea2834f6cdef422f20e4e4f8ef9fff78",
"affectsGlobalScope": false
},
"../../node_modules/@types/socket.io-client/index.d.ts": {
"version": "829cee346cb86de54e7a633a42d0ea1f5b3408f2de26759b1084e6e9ffe9fbcc",
"signature": "829cee346cb86de54e7a633a42d0ea1f5b3408f2de26759b1084e6e9ffe9fbcc",
"affectsGlobalScope": true
},
"./src/withsocketio.ts": {
"version": "72b2c63d25770e2ed3de9330ff52f8f096b3633d7b790fe87c61ad64beb79602",
"signature": "7388534c4380e576c3812cd26d409b5d9b1b83b21de450267f0929df24adb2e6",
"affectsGlobalScope": false
},
"./src/withiocollaboration.ts": {
"version": "d1269a7d9ee1d741a79e8ec8ac26e62920253ef62b156cafd59843a5c4535c66",
"signature": "d13d3c405958ef11fa11c1c0da04b5bb81fa0934d124728e9fdb945c2bc51a54",
"affectsGlobalScope": false
},
"./src/index.ts": {
"version": "802c0e093ea57ba4856f6e7940e81461ea94ac85396f2af0ba465103383efa7e",
"signature": "815bbb69f5a1adcfbda94efdf03f2e2a3db3cf5dbea2166764d4a57ad4e738fd",
"affectsGlobalScope": false
},
"../../node_modules/@babel/types/lib/index.d.ts": {
"version": "7ee922c7a87439793beb93c017322c08ec832f3929d65ace7db85079c6247f2c",
"signature": "7ee922c7a87439793beb93c017322c08ec832f3929d65ace7db85079c6247f2c",
"affectsGlobalScope": false
},
"../../node_modules/@types/babel__generator/index.d.ts": {
"version": "b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e",
"signature": "b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e",
"affectsGlobalScope": false
},
"../../node_modules/@types/babel__traverse/index.d.ts": {
"version": "cc0e8c69a59c7e4e15bd28e1eebe9a660c47c202e298cb20a93285368051193f",
"signature": "cc0e8c69a59c7e4e15bd28e1eebe9a660c47c202e298cb20a93285368051193f",
"affectsGlobalScope": false
},
"../../node_modules/@babel/parser/typings/babel-parser.d.ts": {
"version": "fa7d1d20dd776b2dd40931cb3ae865dd624f38edd86f3407344b609e43def590",
"signature": "fa7d1d20dd776b2dd40931cb3ae865dd624f38edd86f3407344b609e43def590",
"affectsGlobalScope": false
},
"../../node_modules/@types/babel__template/index.d.ts": {
"version": "3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8",
"signature": "3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8",
"affectsGlobalScope": false
},
"../../node_modules/@types/babel__core/index.d.ts": {
"version": "ab3e92a5a46b6ded50c6b9e7de05739fa1de6df50e24a14706a5cc525300548b",
"signature": "ab3e92a5a46b6ded50c6b9e7de05739fa1de6df50e24a14706a5cc525300548b",
"affectsGlobalScope": false
},
"../../node_modules/@types/color-name/index.d.ts": {
"version": "f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",
"signature": "f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/globals.d.ts": {
"version": "2dd7dbacbd70cc156185235140b7b6682c002c1ea678dd87d7a20589d4555fc0",
"signature": "2dd7dbacbd70cc156185235140b7b6682c002c1ea678dd87d7a20589d4555fc0",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/async_hooks.d.ts": {
"version": "4ed9f71ddbb5753771ee391f64297078a88f7dfd1480646dcf08c31395778682",
"signature": "4ed9f71ddbb5753771ee391f64297078a88f7dfd1480646dcf08c31395778682",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/buffer.d.ts": {
"version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878",
"signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/child_process.d.ts": {
"version": "465150173a56b943b2f6d8918e35c89d8386ffd37aa466e486ca54db54d6cee7",
"signature": "465150173a56b943b2f6d8918e35c89d8386ffd37aa466e486ca54db54d6cee7",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/cluster.d.ts": {
"version": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
"signature": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/console.d.ts": {
"version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d",
"signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/constants.d.ts": {
"version": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
"signature": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/crypto.d.ts": {
"version": "d4dd0b19ee0338dd4f1603eacb41859b9d5371bfef2b2849cb870d6fd6602bcb",
"signature": "d4dd0b19ee0338dd4f1603eacb41859b9d5371bfef2b2849cb870d6fd6602bcb",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/dgram.d.ts": {
"version": "7ecfe97b43aa6c8b8f90caa599d5648bb559962e74e6f038f73a77320569dd78",
"signature": "7ecfe97b43aa6c8b8f90caa599d5648bb559962e74e6f038f73a77320569dd78",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/dns.d.ts": {
"version": "aad3237c3f99480041cad7ca04d64307c98933996f822342b7c0ee4a78553346",
"signature": "aad3237c3f99480041cad7ca04d64307c98933996f822342b7c0ee4a78553346",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/domain.d.ts": {
"version": "4d4c83f77ac21a72252785baa5328a5612b0b6598d512f68b8cb14f7966d059e",
"signature": "4d4c83f77ac21a72252785baa5328a5612b0b6598d512f68b8cb14f7966d059e",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/events.d.ts": {
"version": "eaa8136bb11fbea5bdaf29e06aa45a1969ddd39fbfb5fe58a01f00d7f1562cd9",
"signature": "eaa8136bb11fbea5bdaf29e06aa45a1969ddd39fbfb5fe58a01f00d7f1562cd9",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/fs.d.ts": {
"version": "e253cd3c7d10c4f600308d0528dd371d7e4165d8295b37a1f38d0ef6c0dfaf60",
"signature": "e253cd3c7d10c4f600308d0528dd371d7e4165d8295b37a1f38d0ef6c0dfaf60",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/fs/promises.d.ts": {
"version": "fb28748ff8d015f52e99daee4f454e57cec1a22141f1257c317f3630a15edeb7",
"signature": "fb28748ff8d015f52e99daee4f454e57cec1a22141f1257c317f3630a15edeb7",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/http.d.ts": {
"version": "9440dcf960685f7ec10856891a6cebb52a5ae8cef6a2e85daf9476dafd346cbe",
"signature": "9440dcf960685f7ec10856891a6cebb52a5ae8cef6a2e85daf9476dafd346cbe",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/http2.d.ts": {
"version": "5d9394b829cfd504b2fe17287aaad8ce1dcfb2a2183c962a90a85b96da2c1c90",
"signature": "5d9394b829cfd504b2fe17287aaad8ce1dcfb2a2183c962a90a85b96da2c1c90",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/https.d.ts": {
"version": "c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a",
"signature": "c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/inspector.d.ts": {
"version": "6c3857edaeeaaf43812f527830ebeece9266b6e8eb5271ab6d2f0008306c9947",
"signature": "6c3857edaeeaaf43812f527830ebeece9266b6e8eb5271ab6d2f0008306c9947",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/module.d.ts": {
"version": "bc6a77e750f4d34584e46b1405b771fb69a224197dd6bafe5b0392a29a70b665",
"signature": "bc6a77e750f4d34584e46b1405b771fb69a224197dd6bafe5b0392a29a70b665",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/net.d.ts": {
"version": "46cac76114704902baa535b30fb66a26aeaf9430f3b3ab44746e329f12e85498",
"signature": "46cac76114704902baa535b30fb66a26aeaf9430f3b3ab44746e329f12e85498",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/os.d.ts": {
"version": "ed4ae81196cccc10f297d228bca8d02e31058e6d723a3c5bc4be5fb3c61c6a34",
"signature": "ed4ae81196cccc10f297d228bca8d02e31058e6d723a3c5bc4be5fb3c61c6a34",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/path.d.ts": {
"version": "84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35",
"signature": "84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/perf_hooks.d.ts": {
"version": "0b6098fedb648cab8091cca2b022a5c729b6ef18da923852033f495907cb1a45",
"signature": "0b6098fedb648cab8091cca2b022a5c729b6ef18da923852033f495907cb1a45",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/process.d.ts": {
"version": "0e0d58f5e90c0a270dac052b9c5ad8ccdfc8271118c2105b361063218d528d6e",
"signature": "0e0d58f5e90c0a270dac052b9c5ad8ccdfc8271118c2105b361063218d528d6e",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/punycode.d.ts": {
"version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
"signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/querystring.d.ts": {
"version": "9f633ecf3e065ff82c19eccab35c8aa1d6d5d1a49af282dc29ef5a64cca34164",
"signature": "9f633ecf3e065ff82c19eccab35c8aa1d6d5d1a49af282dc29ef5a64cca34164",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/readline.d.ts": {
"version": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
"signature": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/repl.d.ts": {
"version": "dd3706b25d06fe23c73d16079e8c66ac775831ef419da00716bf2aee530a04a4",
"signature": "dd3706b25d06fe23c73d16079e8c66ac775831ef419da00716bf2aee530a04a4",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/stream.d.ts": {
"version": "406a63c7e94107394341e97dbdc3312a1ecea75571d067a69eaa213786d9f154",
"signature": "406a63c7e94107394341e97dbdc3312a1ecea75571d067a69eaa213786d9f154",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/string_decoder.d.ts": {
"version": "d67e08745494b000da9410c1ae2fdc9965fc6d593fe0f381a47491f75417d457",
"signature": "d67e08745494b000da9410c1ae2fdc9965fc6d593fe0f381a47491f75417d457",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/timers.d.ts": {
"version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
"signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/tls.d.ts": {
"version": "424bc64b2794d9280c1e1f4a3518ba9d285385a16d84753a6427bb469e582eca",
"signature": "424bc64b2794d9280c1e1f4a3518ba9d285385a16d84753a6427bb469e582eca",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/trace_events.d.ts": {
"version": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
"signature": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/tty.d.ts": {
"version": "3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748",
"signature": "3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/url.d.ts": {
"version": "826d48e49c905cedb906cbde6ccaf758827ff5867d4daa006b5a79e0fb489357",
"signature": "826d48e49c905cedb906cbde6ccaf758827ff5867d4daa006b5a79e0fb489357",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/util.d.ts": {
"version": "baa711b17f67390c60eac3c70a1391b23a8e3833cb723b2d7336d4817a22455c",
"signature": "baa711b17f67390c60eac3c70a1391b23a8e3833cb723b2d7336d4817a22455c",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/v8.d.ts": {
"version": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
"signature": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/vm.d.ts": {
"version": "e4abb8eaa8a7d78236be0f8342404aab076668d20590209e32fdeb924588531e",
"signature": "e4abb8eaa8a7d78236be0f8342404aab076668d20590209e32fdeb924588531e",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/worker_threads.d.ts": {
"version": "086bfc0710b044ce1586108ee56c6e1c0d9ca2d325c153bb026cbc850169f593",
"signature": "086bfc0710b044ce1586108ee56c6e1c0d9ca2d325c153bb026cbc850169f593",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/zlib.d.ts": {
"version": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
"signature": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/base.d.ts": {
"version": "b46af749e3574b83bccc0ec829322b15e834ae90b45760eebc75a189c28c0868",
"signature": "b46af749e3574b83bccc0ec829322b15e834ae90b45760eebc75a189c28c0868",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.2/fs.d.ts": {
"version": "12b2608d6074167c331c9c3c6994a57819f6ff934c7fd4527e23aabf56d4c8d1",
"signature": "12b2608d6074167c331c9c3c6994a57819f6ff934c7fd4527e23aabf56d4c8d1",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.2/util.d.ts": {
"version": "ffc1cd688606ad1ddb59a40e8f3defbde907af2a3402d1d9ddf69accb2903f07",
"signature": "ffc1cd688606ad1ddb59a40e8f3defbde907af2a3402d1d9ddf69accb2903f07",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.2/globals.d.ts": {
"version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1",
"signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/ts3.2/base.d.ts": {
"version": "4cef33b2997388559c39b2f98c37e8319ad61e30a1f0edc55c53913f2250bade",
"signature": "4cef33b2997388559c39b2f98c37e8319ad61e30a1f0edc55c53913f2250bade",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.5/globals.global.d.ts": {
"version": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
"signature": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/ts3.5/wasi.d.ts": {
"version": "0b3fef11ea6208c4cb3715c9aa108766ce98fc726bfba68cc23b25ce944ce9c0",
"signature": "0b3fef11ea6208c4cb3715c9aa108766ce98fc726bfba68cc23b25ce944ce9c0",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.5/base.d.ts": {
"version": "255dbc5a5acef2b83b47145042aa0127ebf7fe24cd5ce6afaaaf5c8fc2c5eb96",
"signature": "255dbc5a5acef2b83b47145042aa0127ebf7fe24cd5ce6afaaaf5c8fc2c5eb96",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.7/assert.d.ts": {
"version": "a8b842671d535d14f533fd8dbfacebceacf5195069d720425d572d5cc5ab3dc4",
"signature": "a8b842671d535d14f533fd8dbfacebceacf5195069d720425d572d5cc5ab3dc4",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.7/base.d.ts": {
"version": "9779312cffccce68e3ffbaa3a876381dc54a8240d9bdaa448f7eba222ec19392",
"signature": "9779312cffccce68e3ffbaa3a876381dc54a8240d9bdaa448f7eba222ec19392",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.7/index.d.ts": {
"version": "d522314e80ed71b57e3c2939d3c9594eaae63a4adf028559e6574f6b270b0fee",
"signature": "d522314e80ed71b57e3c2939d3c9594eaae63a4adf028559e6574f6b270b0fee",
"affectsGlobalScope": false
},
"../../node_modules/@types/engine.io/index.d.ts": {
"version": "2bc5a885dc91b4006192c477dfae4f2856e5809c6ffbf62cc242ac010f15ab51",
"signature": "2bc5a885dc91b4006192c477dfae4f2856e5809c6ffbf62cc242ac010f15ab51",
"affectsGlobalScope": false
},
"../../node_modules/@types/eslint-visitor-keys/index.d.ts": {
"version": "725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",
"signature": "725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",
"affectsGlobalScope": false
},
"../../node_modules/@types/esrever/index.d.ts": {
"version": "2846d38d136dc1db85dc7cb4010cda22711f03219816355b4f2978a62b842eae",
"signature": "2846d38d136dc1db85dc7cb4010cda22711f03219816355b4f2978a62b842eae",
"affectsGlobalScope": false
},
"../../node_modules/@types/faker/index.d.ts": {
"version": "7949f1133bcca7581df8fd7a9be3b4f407c4c80edbf21957ea00e7f6cbad0e02",
"signature": "7949f1133bcca7581df8fd7a9be3b4f407c4c80edbf21957ea00e7f6cbad0e02",
"affectsGlobalScope": true
},
"../../node_modules/@types/minimatch/index.d.ts": {
"version": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633",
"signature": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633",
"affectsGlobalScope": false
},
"../../node_modules/@types/glob/index.d.ts": {
"version": "64ef5112114bdd77304acb548f93777b263bbf57272776139425a58f68a10775",
"signature": "64ef5112114bdd77304acb548f93777b263bbf57272776139425a58f68a10775",
"affectsGlobalScope": false
},
"../../node_modules/@types/is-hotkey/index.d.ts": {
"version": "1aaf5242e6ed8b0839726cc2fb9d4d0a956e52e66674dfd02a9e6c2557594403",
"signature": "1aaf5242e6ed8b0839726cc2fb9d4d0a956e52e66674dfd02a9e6c2557594403",
"affectsGlobalScope": false
},
"../../node_modules/@types/istanbul-lib-coverage/index.d.ts": {
"version": "de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857",
"signature": "de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857",
"affectsGlobalScope": false
},
"../../node_modules/@types/istanbul-lib-report/index.d.ts": {
"version": "7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee",
"signature": "7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee",
"affectsGlobalScope": false
},
"../../node_modules/@types/istanbul-reports/index.d.ts": {
"version": "029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102",
"signature": "029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102",
"affectsGlobalScope": false
},
"../../node_modules/jest-diff/build/types.d.ts": {
"version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7",
"signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7",
"affectsGlobalScope": false
},
"../../node_modules/jest-diff/build/index.d.ts": {
"version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4",
"signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4",
"affectsGlobalScope": false
},
"../../node_modules/@types/jest/index.d.ts": {
"version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b",
"signature": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b",
"affectsGlobalScope": true
},
"../../node_modules/@types/json-schema/index.d.ts": {
"version": "ecdf947a5111318568ba99f2a87b8498382d8871207f1bc6271ff3b9536a2448",
"signature": "ecdf947a5111318568ba99f2a87b8498382d8871207f1bc6271ff3b9536a2448",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/common.d.ts": {
"version": "4025cf62742c5bb3d383c8a62342481622c87e3397ea5e7b7baab18b9efd5798",
"signature": "4025cf62742c5bb3d383c8a62342481622c87e3397ea5e7b7baab18b9efd5798",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/array.d.ts": {
"version": "f6a75f23e42dc475bdd7fefa8c527a3c5ed502ad371900abe9d138a9010ad80a",
"signature": "f6a75f23e42dc475bdd7fefa8c527a3c5ed502ad371900abe9d138a9010ad80a",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/collection.d.ts": {
"version": "0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8",
"signature": "0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/date.d.ts": {
"version": "187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42",
"signature": "187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/function.d.ts": {
"version": "035b95793288bf4457a2b80bfe9b7500a29324ad62adcf9991277198e8833096",
"signature": "035b95793288bf4457a2b80bfe9b7500a29324ad62adcf9991277198e8833096",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/lang.d.ts": {
"version": "f612468e9c3edff588905c4c4f512487a13ac32ffbd291fe07696268ab8c8dfa",
"signature": "f612468e9c3edff588905c4c4f512487a13ac32ffbd291fe07696268ab8c8dfa",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/math.d.ts": {
"version": "65648639567d214f62c1b21d200c852807e68bdb08311f95ab6f526ef5b98995",
"signature": "65648639567d214f62c1b21d200c852807e68bdb08311f95ab6f526ef5b98995",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/number.d.ts": {
"version": "00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a",
"signature": "00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/object.d.ts": {
"version": "7fc5a3d7cff296cea5c225911726a56283b663328709088fcc912d61f73682fc",
"signature": "7fc5a3d7cff296cea5c225911726a56283b663328709088fcc912d61f73682fc",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/seq.d.ts": {
"version": "3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd",
"signature": "3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/string.d.ts": {
"version": "e34f3f6159b1e23de9bb5521382795aaa5aaed6f53b4702e70a2ec45bc76ddb5",
"signature": "e34f3f6159b1e23de9bb5521382795aaa5aaed6f53b4702e70a2ec45bc76ddb5",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/common/util.d.ts": {
"version": "2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",
"signature": "2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",
"affectsGlobalScope": false
},
"../../node_modules/@types/lodash/ts3.1/index.d.ts": {
"version": "bbf144d4354e2aaa6439f32761f3ee798cc68d1600adab6e2a596f25269f106d",
"signature": "bbf144d4354e2aaa6439f32761f3ee798cc68d1600adab6e2a596f25269f106d",
"affectsGlobalScope": true
},
"../../node_modules/@types/minimist/index.d.ts": {
"version": "3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e",
"signature": "3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e",
"affectsGlobalScope": false
},
"../../node_modules/@types/normalize-package-data/index.d.ts": {
"version": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613",
"signature": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613",
"affectsGlobalScope": false
},
"../../node_modules/@types/parse-json/index.d.ts": {
"version": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
"signature": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
"affectsGlobalScope": false
},
"../../node_modules/@types/q/index.d.ts": {
"version": "f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad",
"signature": "f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad",
"affectsGlobalScope": false
},
"../../node_modules/@types/randomcolor/index.d.ts": {
"version": "9ba1c726508d9f2044961854c60d8f329e97c0bb57dd80c8a7d382d419971cb1",
"signature": "9ba1c726508d9f2044961854c60d8f329e97c0bb57dd80c8a7d382d419971cb1",
"affectsGlobalScope": false
},
"../../node_modules/@types/react-dom/index.d.ts": {
"version": "8483a29c17f7feb768a1f4333cf12ccf1e7341bd89dadcf407e012d5315228d0",
"signature": "8483a29c17f7feb768a1f4333cf12ccf1e7341bd89dadcf407e012d5315228d0",
"affectsGlobalScope": false
},
"../../node_modules/@types/socket.io/index.d.ts": {
"version": "5da61a50104ace8da85aed7e4fbf1258b34d8f6b6b5058b42cc4bfe257e86ba8",
"signature": "5da61a50104ace8da85aed7e4fbf1258b34d8f6b6b5058b42cc4bfe257e86ba8",
"affectsGlobalScope": false
},
"../../node_modules/@types/stack-utils/index.d.ts": {
"version": "41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49",
"signature": "41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49",
"affectsGlobalScope": false
},
"../../node_modules/@types/yargs-parser/index.d.ts": {
"version": "fdfbe321c556c39a2ecf791d537b999591d0849e971dd938d88f460fea0186f6",
"signature": "fdfbe321c556c39a2ecf791d537b999591d0849e971dd938d88f460fea0186f6",
"affectsGlobalScope": false
},
"../../node_modules/@types/yargs/index.d.ts": {
"version": "6055ac126cf1a6c818330d033eb3e99df5070a598359fe30c430f844dafac7ce",
"signature": "6055ac126cf1a6c818330d033eb3e99df5070a598359fe30c430f844dafac7ce",
"affectsGlobalScope": false
}
},
"options": {
"rootDir": "./src",
"baseUrl": "./src",
"lib": [
"lib.dom.d.ts",
"lib.dom.iterable.d.ts",
"lib.esnext.d.ts"
],
"allowSyntheticDefaultImports": true,
"declaration": true,
"skipLibCheck": true,
"declarationMap": true,
"esModuleInterop": true,
"jsx": 2,
"module": 99,
"moduleResolution": 2,
"sourceMap": true,
"strict": true,
"suppressImplicitAnyIndexErrors": true,
"target": 99,
"outDir": "./lib",
"composite": true,
"paths": {
"@slate-collaborative/bridge": [
"../../bridge"
]
},
"emitDeclarationOnly": true,
"configFilePath": "./tsconfig.json"
},
"referencedMap": {
"../../node_modules/@babel/parser/typings/babel-parser.d.ts": [
"../../node_modules/@babel/types/lib/index.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/util.d.ts"
],
"../../node_modules/@babel/types/lib/index.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/util.d.ts"
],
"../../node_modules/@types/babel__core/index.d.ts": [
"../../node_modules/@babel/parser/typings/babel-parser.d.ts",
"../../node_modules/@babel/types/lib/index.d.ts",
"../../node_modules/@types/babel__generator/index.d.ts",
"../../node_modules/@types/babel__template/index.d.ts",
"../../node_modules/@types/babel__traverse/index.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/util.d.ts"
],
"../../node_modules/@types/babel__generator/index.d.ts": [
"../../node_modules/@babel/types/lib/index.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/util.d.ts"
],
"../../node_modules/@types/babel__template/index.d.ts": [
"../../node_modules/@babel/parser/typings/babel-parser.d.ts",
"../../node_modules/@babel/types/lib/index.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/util.d.ts"
],
"../../node_modules/@types/babel__traverse/index.d.ts": [
"../../node_modules/@babel/types/lib/index.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/util.d.ts"
],
"../../node_modules/@types/color-name/index.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/util.d.ts"
],
"../../node_modules/@types/engine.io/index.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/net.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.7/index.d.ts",
"../../node_modules/@types/node/util.d.ts"
],
"../../node_modules/@types/eslint-visitor-keys/index.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/util.d.ts"
],
"../../node_modules/@types/esrever/index.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/util.d.ts"
],
"../../node_modules/@types/faker/index.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/util.d.ts"
],
"../../node_modules/@types/glob/index.d.ts": [
"../../node_modules/@types/minimatch/index.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/ts3.2/util.d.ts",
"../../node_modules/@types/node/ts3.7/index.d.ts",
"../../node_modules/@types/node/util.d.ts"
],
"../../node_modules/@types/is-hotkey/index.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/util.d.ts"
],
"../../node_modules/@types/istanbul-lib-coverage/index.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/util.d.ts"