-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.tsbuildinfo
2576 lines (2576 loc) · 105 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": "c9a1f03d6ba0fe3c871eb0dd81622e78fbb61ade70878b34d48a341a690c59e9",
"signature": "c9a1f03d6ba0fe3c871eb0dd81622e78fbb61ade70878b34d48a341a690c59e9",
"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": "666172ccd045546f9b6d099744da9b822357e393c9fe67c34d3f44eabdf15723",
"signature": "666172ccd045546f9b6d099744da9b822357e393c9fe67c34d3f44eabdf15723",
"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": "38130cdd16bd2318b9362f9d60dd9670f7e38708bb6131cf11fc78a41b2c34a0",
"signature": "38130cdd16bd2318b9362f9d60dd9670f7e38708bb6131cf11fc78a41b2c34a0",
"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": "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": "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": "b5e4c2d67aa844ed503b29cd4ca2ede1a229ac7fe874613b2c996fa9c581a25f",
"signature": "b5e4c2d67aa844ed503b29cd4ca2ede1a229ac7fe874613b2c996fa9c581a25f",
"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.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": "905b020308ed3bd9cd2457f5a4def1844620d48020cec405cafb4e86b3194af1",
"signature": "905b020308ed3bd9cd2457f5a4def1844620d48020cec405cafb4e86b3194af1",
"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/@types/node/globals.d.ts": {
"version": "1332704d6761c94b85753fc3cadc36109f53e5d92fad137ac3de18083febedf3",
"signature": "1332704d6761c94b85753fc3cadc36109f53e5d92fad137ac3de18083febedf3",
"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": "987249e7b75023387c5fd9dc2f959ee777cb8989b7900f5a9eb4a67d290f2cba",
"signature": "987249e7b75023387c5fd9dc2f959ee777cb8989b7900f5a9eb4a67d290f2cba",
"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": "c5ecc351d5eaa36dc682b4c398b57a9d37c108857b71a09464a06e0185831ac2",
"signature": "c5ecc351d5eaa36dc682b4c398b57a9d37c108857b71a09464a06e0185831ac2",
"affectsGlobalScope": false
},
"./node_modules/@types/node/dgram.d.ts": {
"version": "7e050b767ed10c7ffbc01f314defbf420bf0b5d54ce666e1c87507c035dfc191",
"signature": "7e050b767ed10c7ffbc01f314defbf420bf0b5d54ce666e1c87507c035dfc191",
"affectsGlobalScope": false
},
"./node_modules/@types/node/dns.d.ts": {
"version": "7db7569fbb3e2b01ba8751c761cdd3f0debd104170d5665b7dc20a11630df3a9",
"signature": "7db7569fbb3e2b01ba8751c761cdd3f0debd104170d5665b7dc20a11630df3a9",
"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": "f87f95c015900102a5c0edcdebb17596de1382510e6cc17ab79f375d3505bb12",
"signature": "f87f95c015900102a5c0edcdebb17596de1382510e6cc17ab79f375d3505bb12",
"affectsGlobalScope": false
},
"./node_modules/@types/node/fs/promises.d.ts": {
"version": "05b5679a897598ebe556ee93415b3af1f456e674ea82e4d7afcd716bfe43aa98",
"signature": "05b5679a897598ebe556ee93415b3af1f456e674ea82e4d7afcd716bfe43aa98",
"affectsGlobalScope": false
},
"./node_modules/@types/node/http.d.ts": {
"version": "35fe02b2c10616cc7ac3db9c15778df7ed9c99276889efdd9be31f342841cfcd",
"signature": "35fe02b2c10616cc7ac3db9c15778df7ed9c99276889efdd9be31f342841cfcd",
"affectsGlobalScope": false
},
"./node_modules/@types/node/http2.d.ts": {
"version": "1c3fe66943f587685aa4a42f664f794655da1767401d2f85910177dac78aa45d",
"signature": "1c3fe66943f587685aa4a42f664f794655da1767401d2f85910177dac78aa45d",
"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": "8de97668870cfb20fc9d355d2ef379e897bdd8a98c889c7d8a6de40ee408ad52",
"signature": "8de97668870cfb20fc9d355d2ef379e897bdd8a98c889c7d8a6de40ee408ad52",
"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": "e64979f6084c279bf8cd58dbc9203567f68f1ed19a8ad91351f078f03323ddf6",
"signature": "e64979f6084c279bf8cd58dbc9203567f68f1ed19a8ad91351f078f03323ddf6",
"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": "a0545ca910ec6b318b8e1d63813c980c3be44824cf217b6477a56fbe9c7927d5",
"signature": "a0545ca910ec6b318b8e1d63813c980c3be44824cf217b6477a56fbe9c7927d5",
"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": "80ffc1786a5dab91b4aa59a72720f02f25df8b7c76b593e04d5e381aec284ccb",
"signature": "80ffc1786a5dab91b4aa59a72720f02f25df8b7c76b593e04d5e381aec284ccb",
"affectsGlobalScope": false
},
"./node_modules/@types/node/util.d.ts": {
"version": "5ef157fbb39494a581bd24f21b60488fe248d452c479738b5e41b48720ea69b8",
"signature": "5ef157fbb39494a581bd24f21b60488fe248d452c479738b5e41b48720ea69b8",
"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": "d0c575d48d6dad75648017ff18762eb97f9398cc9486541b3070e79ce12719e6",
"signature": "d0c575d48d6dad75648017ff18762eb97f9398cc9486541b3070e79ce12719e6",
"affectsGlobalScope": false
},
"./node_modules/@types/node/base.d.ts": {
"version": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b",
"signature": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b",
"affectsGlobalScope": false
},
"./node_modules/@types/node/index.d.ts": {
"version": "5825520e2099309182c6e2a2b3061b060d42a098c58f67d1754880a7e2cce99a",
"signature": "5825520e2099309182c6e2a2b3061b060d42a098c58f67d1754880a7e2cce99a",
"affectsGlobalScope": false
},
"./node_modules/@types/react/global.d.ts": {
"version": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
"signature": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
"affectsGlobalScope": true
},
"./node_modules/csstype/index.d.ts": {
"version": "c89da57b29cf0a695fe46e6ab8cd7d64edb15a6708ae2352e30d79a3936ccc5c",
"signature": "c89da57b29cf0a695fe46e6ab8cd7d64edb15a6708ae2352e30d79a3936ccc5c",
"affectsGlobalScope": false
},
"./node_modules/@types/prop-types/index.d.ts": {
"version": "a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",
"signature": "a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",
"affectsGlobalScope": false
},
"./node_modules/@types/react/index.d.ts": {
"version": "bc0442bf081aef1f744186372dc384f891ebdf7f3985a13788b7a7f65d353465",
"signature": "bc0442bf081aef1f744186372dc384f891ebdf7f3985a13788b7a7f65d353465",
"affectsGlobalScope": true
},
"./node_modules/next/dist/next-server/server/get-page-files.d.ts": {
"version": "714bc11c4ece2d28d6b70207fcefce4651c138cc77ce0b8147a6bab25c66b67a",
"signature": "714bc11c4ece2d28d6b70207fcefce4651c138cc77ce0b8147a6bab25c66b67a",
"affectsGlobalScope": false
},
"./node_modules/next/dist/next-server/server/load-components.d.ts": {
"version": "0e02cfb5ba166da0f788bc1d2703a935cc6a68b1fd044cadef8de743784748f6",
"signature": "0e02cfb5ba166da0f788bc1d2703a935cc6a68b1fd044cadef8de743784748f6",
"affectsGlobalScope": false
},
"./node_modules/next/dist/client/page-loader.d.ts": {
"version": "5522cfafd8b8e39c3d41f966e3261247010b76d03f552adbe272f93bc7de93c2",
"signature": "5522cfafd8b8e39c3d41f966e3261247010b76d03f552adbe272f93bc7de93c2",
"affectsGlobalScope": false
},
"./node_modules/next/dist/next-server/lib/mitt.d.ts": {
"version": "6e1b354578c8ed8a5432ac004e6a6bebb340ceed54e127c4f5e75696842bded1",
"signature": "6e1b354578c8ed8a5432ac004e6a6bebb340ceed54e127c4f5e75696842bded1",
"affectsGlobalScope": false
},
"./node_modules/next/dist/next-server/lib/router/router.d.ts": {
"version": "8cfce687be71056f3a47988a86dd5b4276e02bf1b792f72b25286295046ec642",
"signature": "8cfce687be71056f3a47988a86dd5b4276e02bf1b792f72b25286295046ec642",
"affectsGlobalScope": false
},
"./node_modules/@next/env/types/index.d.ts": {
"version": "764f5b39a73fd6371e5a118ee037b685cec4ff2fc3579225eb57d0f82a38ab18",
"signature": "764f5b39a73fd6371e5a118ee037b685cec4ff2fc3579225eb57d0f82a38ab18",
"affectsGlobalScope": false
},
"./node_modules/next/dist/next-server/lib/utils.d.ts": {
"version": "9c4a6063875f3cb0f4a1c4be82ba293f38e33887f18b4b9ea0eb70391d875120",
"signature": "9c4a6063875f3cb0f4a1c4be82ba293f38e33887f18b4b9ea0eb70391d875120",
"affectsGlobalScope": false
},
"./node_modules/next/dist/next-server/server/router.d.ts": {
"version": "64d9615b2dd4016da795b4519a4f138c9477cd6d6b3e6ddf420528f8a5d47a70",
"signature": "64d9615b2dd4016da795b4519a4f138c9477cd6d6b3e6ddf420528f8a5d47a70",
"affectsGlobalScope": false
},
"./node_modules/next/dist/next-server/server/api-utils.d.ts": {
"version": "5ca017b9ca9a62f86c5d293b5d5d25716b236f774961f4e40bce53803872bf1e",
"signature": "5ca017b9ca9a62f86c5d293b5d5d25716b236f774961f4e40bce53803872bf1e",
"affectsGlobalScope": false
},
"./node_modules/next/dist/build/index.d.ts": {
"version": "af7682f5bb8cbc4954b3e9dc48f878ae7bc6853779681c467fa3aea37b399f67",
"signature": "af7682f5bb8cbc4954b3e9dc48f878ae7bc6853779681c467fa3aea37b399f67",
"affectsGlobalScope": false
},
"./node_modules/next/dist/lib/load-custom-routes.d.ts": {
"version": "4af6e3753d6275718085ff7251cb8e59f483ecaa05d9031662554152612e31cb",
"signature": "4af6e3753d6275718085ff7251cb8e59f483ecaa05d9031662554152612e31cb",
"affectsGlobalScope": false
},
"./node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts": {
"version": "83f475dbe94405f3720fb3b25c5e2465bb1fc8d6389ac7cea6d453360045f4e3",
"signature": "83f475dbe94405f3720fb3b25c5e2465bb1fc8d6389ac7cea6d453360045f4e3",
"affectsGlobalScope": false
},
"./node_modules/next/dist/next-server/server/font-utils.d.ts": {
"version": "dd1b2492877b4d5b42fc2724d18d9805248efc5648be6ebea3c70b8bbff0a804",
"signature": "dd1b2492877b4d5b42fc2724d18d9805248efc5648be6ebea3c70b8bbff0a804",
"affectsGlobalScope": false
},
"./node_modules/next/dist/next-server/server/next-server.d.ts": {
"version": "fd77df2b8f042a64c9c0e47b22e49d0b8e6567d38b3f10e97ed92184637d67cd",
"signature": "fd77df2b8f042a64c9c0e47b22e49d0b8e6567d38b3f10e97ed92184637d67cd",
"affectsGlobalScope": false
},
"./node_modules/next/dist/server/next.d.ts": {
"version": "5c9ea728d70fb206084479992cf49f3a54f23a58ff7b386d7e03341237f2ba71",
"signature": "5c9ea728d70fb206084479992cf49f3a54f23a58ff7b386d7e03341237f2ba71",
"affectsGlobalScope": false
},
"./node_modules/next/types/index.d.ts": {
"version": "5c7f8bf8b4bee192852d91e6aff6e3c43c12fe2b9b9b5a49f406e894a176c336",
"signature": "5c7f8bf8b4bee192852d91e6aff6e3c43c12fe2b9b9b5a49f406e894a176c336",
"affectsGlobalScope": false
},
"./node_modules/next/types/global.d.ts": {
"version": "af0040a31d9a72880965d28bd64acda764060af13cd474832942afbddd25fa50",
"signature": "af0040a31d9a72880965d28bd64acda764060af13cd474832942afbddd25fa50",
"affectsGlobalScope": true
},
"./next-env.d.ts": {
"version": "c9cf352eb722001c1c1588fa5e614d057336610e2caf61012d3439e5a0842a8d",
"signature": "c9cf352eb722001c1c1588fa5e614d057336610e2caf61012d3439e5a0842a8d",
"affectsGlobalScope": false
},
"./types.ts": {
"version": "b82b2544bbf12265f3b6cba77fae7ce6324f16ccb289e1ab95c02c571ee5427f",
"signature": "ac733ce84aeeba0d859c424c8cd98175276454ad5c3769b4f539153b104ce6f3",
"affectsGlobalScope": false
},
"./lib/api.ts": {
"version": "ce8c210dd209abd381b8d967a44bb8bb3f72d2516771ea96d51570089a148ce1",
"signature": "fa91c817fc3bcd69a22b2302b420f8de006a10bbdbcea7dce4da24d5d075b031",
"affectsGlobalScope": false
},
"./node_modules/next/dist/client/link.d.ts": {
"version": "74587d651c85f1cc2690e5ddca3458c34d7674bea2e0ef43e2c0cd5cc354cabe",
"signature": "74587d651c85f1cc2690e5ddca3458c34d7674bea2e0ef43e2c0cd5cc354cabe",
"affectsGlobalScope": false
},
"./node_modules/next/link.d.ts": {
"version": "25488ec0923fa0fd699444ad2456ce5e8b8ae66f4681f3c27da4d15dc26e28b9",
"signature": "25488ec0923fa0fd699444ad2456ce5e8b8ae66f4681f3c27da4d15dc26e28b9",
"affectsGlobalScope": false
},
"./components/cover-image.tsx": {
"version": "e1bf69c8bcb8a8104083fabb12994deb7904dd833f128ef81e3febcf5721b937",
"signature": "2b33ee4a9f070865229b41f39a1e17ac635014231cc41366deea6224e51cd18d",
"affectsGlobalScope": false
},
"./node_modules/date-fns/typings.d.ts": {
"version": "b44ccf907564571b6044083a8afb2c22b6f3422dc61c58ff8b75d2736e673239",
"signature": "b44ccf907564571b6044083a8afb2c22b6f3422dc61c58ff8b75d2736e673239",
"affectsGlobalScope": true
},
"./components/date.tsx": {
"version": "d8b80aa2d32f4acb874be3d392e39cffbae099e644abe4b4038a9a026df997c7",
"signature": "9fab4e6807419174fe9d1ddcd72fe6c9d8ee90057aa2aa3ec9089d742b1bbd27",
"affectsGlobalScope": false
},
"./components/header.tsx": {
"version": "8a5feef646f242ed2905064315a2053c1a9930372766cec24ada7122e61deb35",
"signature": "33e3073c5bff5d162abf1f4427a6719f44b88cede9af47fcd806ec47ca478a76",
"affectsGlobalScope": false
},
"./components/hero-post.tsx": {
"version": "738d16bd3d4b276a95780b35b5c5871a4fc46910c32659e610a7eda05f999588",
"signature": "5daa21ddbe1647ae3d279b67f0f429fd89cdf6ba8f5ee7208e6a89ce6233cf64",
"affectsGlobalScope": false
},
"./lib/constants.js": {
"version": "62c5e953c107f818bc9a82f2ab0ac60c396a5cc8fec4d3f9e1ba08d65e248b04",
"signature": "8b8043647a52743aa8ce2bf091166aeca97b46bb5a6dc22de603ab691b3d12f1",
"affectsGlobalScope": false
},
"./components/_footer.js": {
"version": "72e45673ba92672c7a5ea1c795aee1db84f043f347068ce1306cfa674a7c3734",
"signature": "7c00a16c7d124c41b8e854fff6c802abffd557331c43f9f7e5d10575d2036d8a",
"affectsGlobalScope": false
},
"./node_modules/next/dist/next-server/lib/head.d.ts": {
"version": "290ec1a014c3c8b26a8b789a61426c41035574efac7e96562f5d7388747c5f32",
"signature": "290ec1a014c3c8b26a8b789a61426c41035574efac7e96562f5d7388747c5f32",
"affectsGlobalScope": false
},
"./node_modules/next/head.d.ts": {
"version": "d37d571aa706edfc60f426239c6973414ab78c194f851d43f036b0d935125687",
"signature": "d37d571aa706edfc60f426239c6973414ab78c194f851d43f036b0d935125687",
"affectsGlobalScope": false
},
"./components/meta.tsx": {
"version": "65e9ff7ce15541191d951c41861edf340506e3f1feb4f7e369e08917780b39b2",
"signature": "c80e5aeb72e66f22ba02604e41af96ed340498b37f2eefb055a3b40b41b3e7ac",
"affectsGlobalScope": false
},
"./components/layout.tsx": {
"version": "ab564711ee386c70a937e69e49eb21d2e0aad35a3cfa667ebb8ed34d47699d76",
"signature": "e0e8a3eebed242e8778f04275d7ee03d9ee03571215e9d1c19f62838d29fc340",
"affectsGlobalScope": false
},
"./components/post-body.tsx": {
"version": "ce3abf4135637588fa93e29e772c3223f7e0be1868cec533ea77a3ab908e7cdc",
"signature": "ab316a6418b087cb63c8da4799c363688803729c44bbd2539ebc3189d9ecdd0e",
"affectsGlobalScope": false
},
"./components/post-title.tsx": {
"version": "cd69980c6fb6a3d73dac1e8895bbfabb5c4a5f937d52d7ecb8432f500bccf614",
"signature": "d1962ac81f8cacbf0541be138590747d424b44b54c2ef13c60e7e6b8f4f7c9dd",
"affectsGlobalScope": false
},
"./components/_categories.js": {
"version": "870be6d4f01e26e0df74207282d723bfe5ee47f7731afaefbc910bec17befd6b",
"signature": "dbe51ad3bba6270cd7194679b3f61ce993763da497566f2c6c73229d2cefb441",
"affectsGlobalScope": false
},
"./components/post-header.tsx": {
"version": "7348b7f36d62504de3a32ff1bc6ff235d99816b44e3b32eff2295a202fcab039",
"signature": "efdd014f0e7d51f3d1059670c7219b06abca50335563843d1499e42d2aa7dd77",
"affectsGlobalScope": false
},
"./components/post-preview.tsx": {
"version": "2eb337400df34ba4660af9152a162457f6ed7926d3213a65a36ed7944642932e",
"signature": "2ba287c616c133588d4522711acf4ec39b64566f314ec8d0e692627a13e3c1ae",
"affectsGlobalScope": false
},
"./components/section-separator.tsx": {
"version": "eb99dc47d285ed96040e17953b75ac151c444fa0e48a8842a2d7076a53a29d48",
"signature": "c1b9256cffb1685b94e75eac856c7be9fff5aa601659598cc868204c0d1d7cf2",
"affectsGlobalScope": false
},
"./components/more-stories.js": {
"version": "0e3181cc5a14d44ec492dcc8215a34ed747e3fb080e84f2f2320c3a0b8e7c30b",
"signature": "e0f3f776ae1b22c56a8bc38089fc430694169149adadac4387450c73862e6824",
"affectsGlobalScope": false
},
"./pages/index.tsx": {
"version": "ce82bea98fd287ea873e9187ed1ab53cb4ca657c1217f9bee02b8d8fe9fe963b",
"signature": "cebca496c10e0ed68a63a07fa71e2d0c26a1f447ab28915e9d028d1a248f6bfc",
"affectsGlobalScope": false
},
"./node_modules/next/dist/client/with-router.d.ts": {
"version": "b40b28dd06ed7a612b4125e4dfde7f60aef46f132c19f6d514a572cefd637fb1",
"signature": "b40b28dd06ed7a612b4125e4dfde7f60aef46f132c19f6d514a572cefd637fb1",
"affectsGlobalScope": false
},
"./node_modules/next/dist/client/router.d.ts": {
"version": "e87947a0dc30994516e89047dd18586d4a306de132f50dde57298aac76a840e7",
"signature": "e87947a0dc30994516e89047dd18586d4a306de132f50dde57298aac76a840e7",
"affectsGlobalScope": false
},
"./node_modules/next/router.d.ts": {
"version": "2d7d2d542a30602ad869c89e497ffc1d45ebee0352f3806833bb1a73f88a26a7",
"signature": "2d7d2d542a30602ad869c89e497ffc1d45ebee0352f3806833bb1a73f88a26a7",
"affectsGlobalScope": false
},
"./node_modules/next/dist/pages/_error.d.ts": {
"version": "3f05ccd0508cded648c082db36def274a2d1ca88d193b464302abccc8ccc8958",
"signature": "3f05ccd0508cded648c082db36def274a2d1ca88d193b464302abccc8ccc8958",
"affectsGlobalScope": false
},
"./node_modules/next/error.d.ts": {
"version": "4a8ffe4be72d7be4cfcfc7671c9bb839a445e006e878119faecc9dcdfdded730",
"signature": "4a8ffe4be72d7be4cfcfc7671c9bb839a445e006e878119faecc9dcdfdded730",
"affectsGlobalScope": false
},
"./pages/posts/[slug].tsx": {
"version": "f4a5e2662c8d5dc68212881ab43a446c5305704b0d02e565635dc68b648cfd44",
"signature": "2c4e7097c75437ebe912175fdc5f86c7c3e98df881b1bcec3888d130339e8de0",
"affectsGlobalScope": false
},
"./styles/theme.tsx": {
"version": "2cacb5d8cc36bdc7576524cbc707545cd606f27379e82cc5e2bda928130e86b9",
"signature": "00c5dfcd48820b9e703704fd58158f53af60b8f463335968f8ef734515705c90",
"affectsGlobalScope": false
},
"./node_modules/@types/json-schema/index.d.ts": {
"version": "b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024",
"signature": "b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024",
"affectsGlobalScope": false
},
"./node_modules/@types/parse-json/index.d.ts": {
"version": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
"signature": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
"affectsGlobalScope": false
}
},
"options": {
"baseUrl": "./",
"downlevelIteration": true,
"lib": [
"lib.esnext.d.ts",
"lib.dom.d.ts",
"lib.dom.iterable.d.ts"
],
"module": 99,
"target": 99,
"sourceMap": true,
"allowJs": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": 1,
"moduleResolution": 2,
"forceConsistentCasingInFileNames": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"noEmit": true,
"incremental": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"configFilePath": "./tsconfig.json"
},
"referencedMap": {
"./components/_categories.js": [
"./node_modules/date-fns/typings.d.ts"
],
"./components/_footer.js": [
"./lib/constants.js",
"./node_modules/date-fns/typings.d.ts"
],
"./components/cover-image.tsx": [
"./node_modules/@types/react/index.d.ts",
"./node_modules/date-fns/typings.d.ts",
"./node_modules/next/link.d.ts",
"./types.ts"
],
"./components/date.tsx": [
"./node_modules/date-fns/typings.d.ts"
],
"./components/header.tsx": [
"./node_modules/date-fns/typings.d.ts",
"./node_modules/next/link.d.ts"
],
"./components/hero-post.tsx": [
"./components/cover-image.tsx",
"./components/date.tsx",
"./node_modules/date-fns/typings.d.ts",
"./node_modules/next/link.d.ts",
"./types.ts"
],
"./components/layout.tsx": [
"./components/_footer.js",
"./components/meta.tsx",
"./node_modules/@types/react/index.d.ts",
"./node_modules/date-fns/typings.d.ts"
],
"./components/meta.tsx": [
"./node_modules/date-fns/typings.d.ts",
"./node_modules/next/head.d.ts"
],
"./components/more-stories.js": [
"./components/post-preview.tsx",
"./node_modules/date-fns/typings.d.ts"
],
"./components/post-body.tsx": [
"./node_modules/date-fns/typings.d.ts"
],
"./components/post-header.tsx": [
"./components/_categories.js",
"./components/cover-image.tsx",
"./components/date.tsx",
"./components/post-title.tsx",
"./node_modules/date-fns/typings.d.ts",
"./types.ts"
],
"./components/post-preview.tsx": [
"./components/cover-image.tsx",
"./components/date.tsx",
"./node_modules/date-fns/typings.d.ts",
"./node_modules/next/link.d.ts",
"./types.ts"
],
"./components/post-title.tsx": [
"./node_modules/date-fns/typings.d.ts"
],
"./components/section-separator.tsx": [
"./node_modules/date-fns/typings.d.ts"
],
"./lib/api.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./lib/constants.js": [
"./node_modules/date-fns/typings.d.ts"
],
"./next-env.d.ts": [
"./node_modules/date-fns/typings.d.ts",
"./node_modules/next/types/global.d.ts",
"./node_modules/next/types/index.d.ts"
],
"./node_modules/@next/env/types/index.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/json-schema/index.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/assert.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/async_hooks.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/base.d.ts": [
"./node_modules/@types/node/assert.d.ts",
"./node_modules/@types/node/ts3.6/base.d.ts",
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/buffer.d.ts": [
"./node_modules/date-fns/typings.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/date-fns/typings.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/date-fns/typings.d.ts"
],
"./node_modules/@types/node/console.d.ts": [
"./node_modules/@types/node/util.d.ts",
"./node_modules/date-fns/typings.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/date-fns/typings.d.ts"
],
"./node_modules/@types/node/crypto.d.ts": [
"./node_modules/@types/node/stream.d.ts",
"./node_modules/date-fns/typings.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/date-fns/typings.d.ts"
],
"./node_modules/@types/node/dns.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/domain.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/events.d.ts": [
"./node_modules/date-fns/typings.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/date-fns/typings.d.ts"
],
"./node_modules/@types/node/fs/promises.d.ts": [
"./node_modules/@types/node/fs.d.ts",
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/globals.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/globals.global.d.ts": [
"./node_modules/date-fns/typings.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/date-fns/typings.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/date-fns/typings.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/date-fns/typings.d.ts"
],
"./node_modules/@types/node/index.d.ts": [
"./node_modules/@types/node/base.d.ts",
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/inspector.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/module.d.ts": [
"./node_modules/@types/node/url.d.ts",
"./node_modules/date-fns/typings.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/date-fns/typings.d.ts"
],
"./node_modules/@types/node/os.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/path.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/perf_hooks.d.ts": [
"./node_modules/@types/node/async_hooks.d.ts",
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/process.d.ts": [
"./node_modules/@types/node/tty.d.ts",
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/punycode.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/querystring.d.ts": [
"./node_modules/date-fns/typings.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/date-fns/typings.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/date-fns/typings.d.ts"
],
"./node_modules/@types/node/stream.d.ts": [
"./node_modules/@types/node/events.d.ts",
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/string_decoder.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],
"./node_modules/@types/node/timers.d.ts": [
"./node_modules/date-fns/typings.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/date-fns/typings.d.ts"
],
"./node_modules/@types/node/trace_events.d.ts": [
"./node_modules/date-fns/typings.d.ts"
],