-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.tsbuildinfo
1713 lines (1713 loc) · 65.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": "9622e8bd7cc72a7dab819a8011ecbf81d443638082e5cb99ecf2e75ff56ffc9d",
"signature": "9622e8bd7cc72a7dab819a8011ecbf81d443638082e5cb99ecf2e75ff56ffc9d",
"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": "e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",
"signature": "e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.esnext.d.ts": {
"version": "fc7a21dd3ee27fd0a9ff1c46534efcd9c3cec51a445b479bb326d871c0aa8302",
"signature": "fc7a21dd3ee27fd0a9ff1c46534efcd9c3cec51a445b479bb326d871c0aa8302",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.dom.d.ts": {
"version": "abadddbf660adeec27e9a56584907d52fa1d6e1e1dc49f639a921baa951b7a84",
"signature": "abadddbf660adeec27e9a56584907d52fa1d6e1e1dc49f639a921baa951b7a84",
"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": "7207e317a2cb07a177e7d963ab7b8c0e85dde7f9ddb50351f830239bf597569e",
"signature": "7207e317a2cb07a177e7d963ab7b8c0e85dde7f9ddb50351f830239bf597569e",
"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": "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.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": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09",
"signature": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2020.promise.d.ts": {
"version": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
"signature": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts": {
"version": "e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40",
"signature": "e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40",
"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.es2020.intl.d.ts": {
"version": "31e8df2398e328077079c17ea4f1664bad0a34adf8b0608837e504e310e329a1",
"signature": "31e8df2398e328077079c17ea4f1664bad0a34adf8b0608837e504e310e329a1",
"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/typescript/lib/lib.esnext.weakref.d.ts": {
"version": "1e61418f41d404e744b6536af9f8c6f6674dd4d54c12335cd0c4f7eded69cf3f",
"signature": "1e61418f41d404e744b6536af9f8c6f6674dd4d54c12335cd0c4f7eded69cf3f",
"affectsGlobalScope": true
},
"./src/constants.ts": {
"version": "3dd4985cbd80b028667dac418dbaf288ce8a37da45efc0bfedd76d2182f8efd1",
"signature": "b5649fddca731d8105bd9c138b54eeb76dc21a20ac3762a2dd0839456accc8e1",
"affectsGlobalScope": false
},
"./node_modules/gl-matrix/index.d.ts": {
"version": "3d3bfd3a50c4f61b236ff2dfc27d6c13181c44743b0dea4e482a0426dbfb80c6",
"signature": "3d3bfd3a50c4f61b236ff2dfc27d6c13181c44743b0dea4e482a0426dbfb80c6",
"affectsGlobalScope": false
},
"./node_modules/@types/ndarray/index.d.ts": {
"version": "a944dcb306326c8c1373ef95d7ab5ada52bb4ed2adb960452f173c7346ab5e2a",
"signature": "a944dcb306326c8c1373ef95d7ab5ada52bb4ed2adb960452f173c7346ab5e2a",
"affectsGlobalScope": false
},
"./src/types.ts": {
"version": "f7f1a957f17812ff5d39bae2d41fb3c91ddb87bdb72e4466f8b3648b0335c8cc",
"signature": "c341a637c50a1bbe9e55f524438480b4fc5a0bf9b3abaa4a106a5ba6277d3b68",
"affectsGlobalScope": false
},
"./src/creators/universe.ts": {
"version": "c035bc81a9988224b42bdd71c4757d2f4705f313ab50570cd0c82c0c23559f0c",
"signature": "9833aa21ac8553e154d35ba404884fdda96c5fb683373072d6f5c6643da37393",
"affectsGlobalScope": false
},
"./src/renderer/camera.ts": {
"version": "0ee1222f4307583cc3f5135118b41423033c9a60a06c74929073299ff5b78299",
"signature": "174f1b9636a5a4a5b6574af89ec5a1fe93273627440db0b79329bddab9140227",
"affectsGlobalScope": false
},
"./src/renderer/gl.ts": {
"version": "983473acf15324d2fefa1ef646d3c1efbd6f52916b803dfb31032daa02fc8f61",
"signature": "d2a9740f6c699551354b77c28bc944eef67ffed53c5022b4988c7d290ea305a9",
"affectsGlobalScope": false
},
"./src/shaders/types.ts": {
"version": "5737b599d54ea6ae45378b677f705bca4bb1a024ee9ee7a45902f09e3c567c89",
"signature": "3dfcca71a6ddd96ff938c4bdd3b8eb7aecc37ea21b5597a1d087d40770c67636",
"affectsGlobalScope": false
},
"./src/shaders/fragment.shader.ts": {
"version": "c176207cd0025bc7aa5ed167709c3379887f27791d1ade5b069aa1b8cab0efaa",
"signature": "1a15a35167bb9c0bf1d963be582d72f1da78eff8ba495a5f5849d7ed4fd9b1c6",
"affectsGlobalScope": false
},
"./src/shaders/vertex.shader.ts": {
"version": "b4c7e9d704175e71870e9db431d17232ca45896077c6ede88ea87e592efe6d03",
"signature": "662303bda0a3d7394600e308ed4e9b2a85e5c49321cb126a045cb8844ad9556b",
"affectsGlobalScope": false
},
"./src/shaders/index.ts": {
"version": "e0cfb005db6217cd423e50876b0cf9d7f99bf76b7f9a7ee6a2e70e25b9238096",
"signature": "5e38a33fd6660fdbe96820616962a1c8e9bad59ca04fb3057dd7871812da7589",
"affectsGlobalScope": false
},
"./src/renderer/frustum.ts": {
"version": "e1a278cb46cca6958bb4c64dc9953aad3713b338bb53c8886c8505a5a2f56cab",
"signature": "2ef010f444d78e7564618344b637e367568cc9bebf8eb556ae2f70a7ad180935",
"affectsGlobalScope": false
},
"./node_modules/@types/async/index.d.ts": {
"version": "7a2705abe20ffc02e3d967eb9e75e1a428e477491a91f80c3fe2c34a412033d3",
"signature": "7a2705abe20ffc02e3d967eb9e75e1a428e477491a91f80c3fe2c34a412033d3",
"affectsGlobalScope": false
},
"./src/creators/vao.ts": {
"version": "4c8a40a5e23693feeb96266cb02f7d5cc49e4a3797ab8f89a89376ed0be8c28c",
"signature": "3ec5fbdba6912755b1a2f26b93a079578fda92f468969437704f00717aa786a5",
"affectsGlobalScope": false
},
"./src/creators/planet.ts": {
"version": "6fbf0d667e9eb09a424d00fad2c2fc8769303ccebfbac1508567731b9bb326a3",
"signature": "d927297fe4b678f835ac68c1c082aac317fab9309e5ab0f5c0ef89e3acc69b49",
"affectsGlobalScope": false
},
"./src/textures/index.ts": {
"version": "a31115f110f248391beb538b3b75908f02055e1aad0cb55e7794bc55d8f2855f",
"signature": "fc0e6909e6832566cafe33ae8be940acc2205f3a1229c200f36dd96ee68f91ff",
"affectsGlobalScope": false
},
"./src/renderer/chunk.ts": {
"version": "bc0ba6ad8b0e7938bd3ad568be88174aac2e0e6faa4461a1e276564d13f538a7",
"signature": "371e6a40690a7a1485172ba41164454f149cb1c750227bec06358fdf36a86a48",
"affectsGlobalScope": false
},
"./src/renderer/planet.ts": {
"version": "30227c8b390ee6b575247f36fa4a82328ba221ec5c60663f876572e26a8bae21",
"signature": "3b76a4993a880a2d41e1c5b2f04283786098148e416b1f3edcf7358c6c2f5ace",
"affectsGlobalScope": false
},
"./src/renderer/universe.ts": {
"version": "ac1b7ac7d3ef4b5705a47728f74e6d1a0d4db7180b9c0cdc476ab3c324d0683f",
"signature": "f39076890111f8904d652e559c9b53f3ca5132bf445a6c0652a4fb714b42b26b",
"affectsGlobalScope": false
},
"./src/renderer/render.ts": {
"version": "e2b25001abaf0ecc09e13fd23d49f059a187629dfd3b775e2e1a487952f5a5b6",
"signature": "30c29ef3cad81de2b5b9ef494a8cc475052670306a68ca85ecde45b5baab8856",
"affectsGlobalScope": false
},
"./src/index.tsx": {
"version": "bfadf2d0d72a0e8d23e2e9a8325a48058964ed0c8387cd65ba9b94fd644909ac",
"signature": "30c8b87ce47017bbcad32063277d8feba619cbe06db1ddd62b6167697e6f4981",
"affectsGlobalScope": false
},
"./src/textures/atlas.ts": {
"version": "e1b2b75939542e14726c3bf6225bd8faf92e53efe81c8b3761f77b4cc5e94473",
"signature": "c3de1026970aee612913e0a91935764147b046c4972260aeb790f6af119cd035",
"affectsGlobalScope": false
},
"./src/creators/block.ts": {
"version": "da58f8aec1e27b6ede1c12a7ca489fae3e4f144e8a8fb89070b094529a4410f8",
"signature": "3b15795c4ec6bf85704cf5022edd11af894ec5061b06e070e3706724b724c72a",
"affectsGlobalScope": false
},
"./src/creators/chunk.ts": {
"version": "e1f6013462ad7fea3c37be25f6f0c3d8200b8a2b66acde89be4b136bef7c9de2",
"signature": "8005c1b30b95bd09c37d062efcb8aa43cbbf4030d25608c8915cdf23272ee1bd",
"affectsGlobalScope": false
},
"./src/utils/rand.ts": {
"version": "ea917337623e19f224df438bc470eb31861512547435afbff68faed315387edc",
"signature": "fcd58b4ca675e8f33ba22df0b63bfbc24320461818c8d07d4e9cd4e6324f1d44",
"affectsGlobalScope": false
},
"./src/textures/getrandomtexture.ts": {
"version": "e74f1c02ed9d88ecfc4593161e59464e495f88d70173e67cbbd49371ad51f7e4",
"signature": "966d08c12ce22af328cae059e7c1af61658e045107c4888cc8438f6918eedda7",
"affectsGlobalScope": false
},
"./src/workers/planet.worker.ts": {
"version": "3b6c172239cebe028a74e4368aeb76892bf8e8919ad85b95105ff7c0bb347186",
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
"affectsGlobalScope": false
},
"./node_modules/@types/node/globals.d.ts": {
"version": "215d8d9a2c480fd460127edc048d68d9931d3b27f95132253a6e71975f060bb1",
"signature": "215d8d9a2c480fd460127edc048d68d9931d3b27f95132253a6e71975f060bb1",
"affectsGlobalScope": true
},
"./node_modules/@types/node/async_hooks.d.ts": {
"version": "c438b413e94ff76dfa20ae005f33a1c84f2480d1d66e0fd687501020d0de9b50",
"signature": "c438b413e94ff76dfa20ae005f33a1c84f2480d1d66e0fd687501020d0de9b50",
"affectsGlobalScope": false
},
"./node_modules/@types/node/buffer.d.ts": {
"version": "bc6a78961535181265845bf9b9e8a147ffd0ca275097ceb670a9b92afa825152",
"signature": "bc6a78961535181265845bf9b9e8a147ffd0ca275097ceb670a9b92afa825152",
"affectsGlobalScope": false
},
"./node_modules/@types/node/child_process.d.ts": {
"version": "a4b5411d87995b9fb847f491f4388b38f829d8ab39be3e2fd65a3e40709f29a8",
"signature": "a4b5411d87995b9fb847f491f4388b38f829d8ab39be3e2fd65a3e40709f29a8",
"affectsGlobalScope": false
},
"./node_modules/@types/node/cluster.d.ts": {
"version": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
"signature": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
"affectsGlobalScope": false
},
"./node_modules/@types/node/console.d.ts": {
"version": "eb5197aade83cb0e360ac407289c53a8009e8fdae7939892a0240d30444496b6",
"signature": "eb5197aade83cb0e360ac407289c53a8009e8fdae7939892a0240d30444496b6",
"affectsGlobalScope": true
},
"./node_modules/@types/node/constants.d.ts": {
"version": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
"signature": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
"affectsGlobalScope": false
},
"./node_modules/@types/node/crypto.d.ts": {
"version": "3d9c3ccc05ebc6e288bef007bcc47a2fc0dce748ea634093ef0732b9be743805",
"signature": "3d9c3ccc05ebc6e288bef007bcc47a2fc0dce748ea634093ef0732b9be743805",
"affectsGlobalScope": false
},
"./node_modules/@types/node/dgram.d.ts": {
"version": "7e050b767ed10c7ffbc01f314defbf420bf0b5d54ce666e1c87507c035dfc191",
"signature": "7e050b767ed10c7ffbc01f314defbf420bf0b5d54ce666e1c87507c035dfc191",
"affectsGlobalScope": false
},
"./node_modules/@types/node/dns.d.ts": {
"version": "d6bc4b879a18de0a1ba065b9a1c6888c67d98f3fe4886584459cdaa9e211a5f7",
"signature": "d6bc4b879a18de0a1ba065b9a1c6888c67d98f3fe4886584459cdaa9e211a5f7",
"affectsGlobalScope": false
},
"./node_modules/@types/node/domain.d.ts": {
"version": "cde4d7f6274468180fa39847b183aec22626e8212ff885d535c53f4cd7c225fd",
"signature": "cde4d7f6274468180fa39847b183aec22626e8212ff885d535c53f4cd7c225fd",
"affectsGlobalScope": true
},
"./node_modules/@types/node/events.d.ts": {
"version": "365e8358843a23944be84b810b1f774ea0223adfccc085f30fd7f4c13dc8a09f",
"signature": "365e8358843a23944be84b810b1f774ea0223adfccc085f30fd7f4c13dc8a09f",
"affectsGlobalScope": true
},
"./node_modules/@types/node/fs.d.ts": {
"version": "80b94a222a5e83289583833de76f8b3a5962ec4c3803690e20c875a2776ddfdc",
"signature": "80b94a222a5e83289583833de76f8b3a5962ec4c3803690e20c875a2776ddfdc",
"affectsGlobalScope": false
},
"./node_modules/@types/node/fs/promises.d.ts": {
"version": "05b5679a897598ebe556ee93415b3af1f456e674ea82e4d7afcd716bfe43aa98",
"signature": "05b5679a897598ebe556ee93415b3af1f456e674ea82e4d7afcd716bfe43aa98",
"affectsGlobalScope": false
},
"./node_modules/@types/node/http.d.ts": {
"version": "f2f8a385694fd71a421616cbaca477a539f30f4098f11261b1d188d72dc3478a",
"signature": "f2f8a385694fd71a421616cbaca477a539f30f4098f11261b1d188d72dc3478a",
"affectsGlobalScope": false
},
"./node_modules/@types/node/http2.d.ts": {
"version": "f15f1f1104aaf47d25124de81949375416e3f8ee704e3d221bea339e35421edb",
"signature": "f15f1f1104aaf47d25124de81949375416e3f8ee704e3d221bea339e35421edb",
"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": "5345d90ffb42ef6a15807f494b38b818f668f5fd6e5086586497ea0125334cd4",
"signature": "5345d90ffb42ef6a15807f494b38b818f668f5fd6e5086586497ea0125334cd4",
"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": "4982d94cb6427263c8839d8d6324a8bbe129e931deb61a7380f8fad17ba2cfc0",
"signature": "4982d94cb6427263c8839d8d6324a8bbe129e931deb61a7380f8fad17ba2cfc0",
"affectsGlobalScope": false
},
"./node_modules/@types/node/process.d.ts": {
"version": "ae4bc1dd4d9de7bbea6ce419db45af82a81358e6014c9e1235b5d252e06f8ab8",
"signature": "ae4bc1dd4d9de7bbea6ce419db45af82a81358e6014c9e1235b5d252e06f8ab8",
"affectsGlobalScope": true
},
"./node_modules/@types/node/punycode.d.ts": {
"version": "3f6a1fd73c9dc3bd7f4b79bc075297ca6527904df69b0f2c2c94e4c4c7d9a32c",
"signature": "3f6a1fd73c9dc3bd7f4b79bc075297ca6527904df69b0f2c2c94e4c4c7d9a32c",
"affectsGlobalScope": false
},
"./node_modules/@types/node/querystring.d.ts": {
"version": "884560fda6c3868f925f022adc3a1289fe6507bbb45adb10fa1bbcc73a941bb0",
"signature": "884560fda6c3868f925f022adc3a1289fe6507bbb45adb10fa1bbcc73a941bb0",
"affectsGlobalScope": false
},
"./node_modules/@types/node/readline.d.ts": {
"version": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
"signature": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
"affectsGlobalScope": false
},
"./node_modules/@types/node/repl.d.ts": {
"version": "acbed967a379b3e9f73237ba9473f8b337eeea14b7dc64d445430b5d695751da",
"signature": "acbed967a379b3e9f73237ba9473f8b337eeea14b7dc64d445430b5d695751da",
"affectsGlobalScope": false
},
"./node_modules/@types/node/stream.d.ts": {
"version": "272a46cc8f494677af587d17939e61e7db2b1925633e4da0c186ba17f6732521",
"signature": "272a46cc8f494677af587d17939e61e7db2b1925633e4da0c186ba17f6732521",
"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": "c52eb62e3388a01b966c57bd14ca0ee9d5f6e656d6a18f6ce6b7cdece63734a3",
"signature": "c52eb62e3388a01b966c57bd14ca0ee9d5f6e656d6a18f6ce6b7cdece63734a3",
"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": "4001971b90f18161f7bd46d68150d32a5da47e3f177956a267a2b29a2771896a",
"signature": "4001971b90f18161f7bd46d68150d32a5da47e3f177956a267a2b29a2771896a",
"affectsGlobalScope": false
},
"./node_modules/@types/node/util.d.ts": {
"version": "f28704c27e1bd58068052f5407541a3306f0ffc77f068e2891f46527a4569e25",
"signature": "f28704c27e1bd58068052f5407541a3306f0ffc77f068e2891f46527a4569e25",
"affectsGlobalScope": false
},
"./node_modules/@types/node/v8.d.ts": {
"version": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
"signature": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
"affectsGlobalScope": false
},
"./node_modules/@types/node/vm.d.ts": {
"version": "baf0b82ffc5d2616f44a6fb1f81e8d798545bebf0c30f5d8b003a1dba1acfb3f",
"signature": "baf0b82ffc5d2616f44a6fb1f81e8d798545bebf0c30f5d8b003a1dba1acfb3f",
"affectsGlobalScope": false
},
"./node_modules/@types/node/worker_threads.d.ts": {
"version": "c6a5b34f1e725019445754f1e733585f113e0dced75f137bd3c4af5853d3f6ab",
"signature": "c6a5b34f1e725019445754f1e733585f113e0dced75f137bd3c4af5853d3f6ab",
"affectsGlobalScope": false
},
"./node_modules/@types/node/zlib.d.ts": {
"version": "15fbe50526244954eb2f933546bca6cdcf0db16c9428d099b3b386c1db5799ab",
"signature": "15fbe50526244954eb2f933546bca6cdcf0db16c9428d099b3b386c1db5799ab",
"affectsGlobalScope": false
},
"./node_modules/@types/node/ts3.4/base.d.ts": {
"version": "d44028ae0127eb3e9fcfa5f55a8b81d64775ce15aca1020fe25c511bbb055834",
"signature": "d44028ae0127eb3e9fcfa5f55a8b81d64775ce15aca1020fe25c511bbb055834",
"affectsGlobalScope": false
},
"./node_modules/@types/node/globals.global.d.ts": {
"version": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
"signature": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
"affectsGlobalScope": true
},
"./node_modules/@types/node/wasi.d.ts": {
"version": "4e0a4d84b15692ea8669fe4f3d05a4f204567906b1347da7a58b75f45bae48d3",
"signature": "4e0a4d84b15692ea8669fe4f3d05a4f204567906b1347da7a58b75f45bae48d3",
"affectsGlobalScope": false
},
"./node_modules/@types/node/ts3.6/base.d.ts": {
"version": "ad1ae5ae98eceb9af99061e83e867b9897d267aebc8f3b938c9424deabadf4bb",
"signature": "ad1ae5ae98eceb9af99061e83e867b9897d267aebc8f3b938c9424deabadf4bb",
"affectsGlobalScope": false
},
"./node_modules/@types/node/assert.d.ts": {
"version": "b3593bd345ebea5e4d0a894c03251a3774b34df3d6db57075c18e089a599ba76",
"signature": "b3593bd345ebea5e4d0a894c03251a3774b34df3d6db57075c18e089a599ba76",
"affectsGlobalScope": false
},
"./node_modules/@types/node/base.d.ts": {
"version": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b",
"signature": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b",
"affectsGlobalScope": false
},
"./node_modules/@types/node/index.d.ts": {
"version": "744e6430bafc6f39f66c4fc1e6a0d8c9551260ffd1782aa7e3f5166ac6aa1f86",
"signature": "744e6430bafc6f39f66c4fc1e6a0d8c9551260ffd1782aa7e3f5166ac6aa1f86",
"affectsGlobalScope": false
}
},
"options": {
"sourceMap": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"target": 99,
"module": 99,
"moduleResolution": 2,
"lib": [
"lib.esnext.d.ts",
"lib.dom.d.ts"
],
"jsx": 2,
"allowJs": true,
"baseUrl": "./",
"incremental": true,
"isolatedModules": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"checkJs": false,
"strict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"typeRoots": [
"./node_modules/@types"
],
"types": [
"node"
],
"noEmit": true,
"watch": true,
"configFilePath": "./tsconfig.json"
},
"referencedMap": {
"./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/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/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/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/stream.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/domain.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/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/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/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/events.d.ts",
"./node_modules/@types/node/http.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/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/stream.d.ts"
],
"./node_modules/@types/node/perf_hooks.d.ts": [
"./node_modules/@types/node/async_hooks.d.ts"
],
"./node_modules/@types/node/process.d.ts": [
"./node_modules/@types/node/tty.d.ts"
],
"./node_modules/@types/node/readline.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/stream.d.ts"
],
"./node_modules/@types/node/repl.d.ts": [
"./node_modules/@types/node/readline.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/tls.d.ts": [
"./node_modules/@types/node/crypto.d.ts",
"./node_modules/@types/node/dns.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/stream.d.ts"
],
"./node_modules/@types/node/ts3.4/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/http.d.ts",
"./node_modules/@types/node/http2.d.ts",
"./node_modules/@types/node/https.d.ts",
"./node_modules/@types/node/inspector.d.ts",
"./node_modules/@types/node/module.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/os.d.ts",
"./node_modules/@types/node/path.d.ts",
"./node_modules/@types/node/perf_hooks.d.ts",
"./node_modules/@types/node/process.d.ts",
"./node_modules/@types/node/punycode.d.ts",
"./node_modules/@types/node/querystring.d.ts",
"./node_modules/@types/node/readline.d.ts",
"./node_modules/@types/node/repl.d.ts",
"./node_modules/@types/node/stream.d.ts",
"./node_modules/@types/node/string_decoder.d.ts",
"./node_modules/@types/node/timers.d.ts",
"./node_modules/@types/node/tls.d.ts",
"./node_modules/@types/node/trace_events.d.ts",
"./node_modules/@types/node/tty.d.ts",
"./node_modules/@types/node/url.d.ts",
"./node_modules/@types/node/util.d.ts",
"./node_modules/@types/node/v8.d.ts",
"./node_modules/@types/node/vm.d.ts",
"./node_modules/@types/node/worker_threads.d.ts",
"./node_modules/@types/node/zlib.d.ts"
],
"./node_modules/@types/node/ts3.6/base.d.ts": [
"./node_modules/@types/node/globals.global.d.ts",
"./node_modules/@types/node/ts3.4/base.d.ts",
"./node_modules/@types/node/wasi.d.ts"
],
"./node_modules/@types/node/tty.d.ts": [
"./node_modules/@types/node/net.d.ts"
],
"./node_modules/@types/node/url.d.ts": [
"./node_modules/@types/node/querystring.d.ts"
],
"./node_modules/@types/node/v8.d.ts": [
"./node_modules/@types/node/stream.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/zlib.d.ts": [
"./node_modules/@types/node/stream.d.ts"
],
"./src/creators/block.ts": [
"./src/constants.ts",
"./src/textures/atlas.ts"
],
"./src/creators/chunk.ts": [
"./node_modules/@types/ndarray/index.d.ts",
"./src/constants.ts",
"./src/creators/block.ts",
"./src/types.ts"
],
"./src/creators/planet.ts": [
"./node_modules/@types/async/index.d.ts",
"./src/creators/vao.ts",
"./src/renderer/camera.ts",
"./src/types.ts"
],
"./src/creators/universe.ts": [
"./node_modules/gl-matrix/index.d.ts",
"./src/constants.ts",
"./src/types.ts"
],
"./src/creators/vao.ts": [
"./src/shaders/index.ts"
],
"./src/index.tsx": [
"./src/creators/universe.ts",
"./src/renderer/camera.ts",
"./src/renderer/gl.ts",
"./src/renderer/render.ts",
"./src/shaders/index.ts",
"./src/textures/index.ts"
],
"./src/renderer/camera.ts": [
"./node_modules/gl-matrix/index.d.ts",
"./src/constants.ts"
],
"./src/renderer/chunk.ts": [
"./src/shaders/index.ts",
"./src/textures/index.ts",
"./src/types.ts"
],
"./src/renderer/frustum.ts": [
"./node_modules/gl-matrix/index.d.ts",
"./src/constants.ts",
"./src/types.ts"
],
"./src/renderer/planet.ts": [
"./node_modules/gl-matrix/index.d.ts",
"./src/renderer/chunk.ts",
"./src/renderer/frustum.ts",
"./src/types.ts"
],
"./src/renderer/render.ts": [
"./src/renderer/camera.ts",
"./src/renderer/frustum.ts",
"./src/renderer/universe.ts",
"./src/shaders/index.ts",
"./src/types.ts"
],
"./src/renderer/universe.ts": [
"./node_modules/gl-matrix/index.d.ts",
"./src/creators/planet.ts",
"./src/creators/universe.ts",
"./src/renderer/planet.ts",
"./src/types.ts"
],
"./src/shaders/fragment.shader.ts": [
"./src/shaders/types.ts"
],
"./src/shaders/index.ts": [
"./src/shaders/fragment.shader.ts",
"./src/shaders/types.ts",
"./src/shaders/vertex.shader.ts"
],
"./src/shaders/vertex.shader.ts": [
"./src/shaders/types.ts"
],
"./src/textures/atlas.ts": [
"./src/constants.ts"
],
"./src/textures/getrandomtexture.ts": [
"./src/constants.ts",
"./src/utils/rand.ts"
],
"./src/textures/index.ts": [
"./src/constants.ts"
],
"./src/types.ts": [
"./node_modules/@types/ndarray/index.d.ts"
],
"./src/workers/planet.worker.ts": [
"./node_modules/@types/async/index.d.ts",
"./node_modules/@types/ndarray/index.d.ts",
"./node_modules/gl-matrix/index.d.ts",
"./src/constants.ts",
"./src/creators/chunk.ts",
"./src/textures/getrandomtexture.ts",
"./src/types.ts"
]
},
"exportedModulesMap": {
"./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/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/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/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/stream.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/domain.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/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/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/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/events.d.ts",
"./node_modules/@types/node/http.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/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/stream.d.ts"
],
"./node_modules/@types/node/perf_hooks.d.ts": [
"./node_modules/@types/node/async_hooks.d.ts"
],
"./node_modules/@types/node/process.d.ts": [
"./node_modules/@types/node/tty.d.ts"
],
"./node_modules/@types/node/readline.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/@types/node/stream.d.ts"
],
"./node_modules/@types/node/repl.d.ts": [
"./node_modules/@types/node/readline.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/tls.d.ts": [
"./node_modules/@types/node/crypto.d.ts",
"./node_modules/@types/node/dns.d.ts",
"./node_modules/@types/node/net.d.ts",
"./node_modules/@types/node/stream.d.ts"
],