tsconfig.tsbuildinfo
130 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
{
"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.webworker.d.ts": {
"version": "4396961c83faf0553f263e9cd17e9428d025c2d522cdde93e2f0f3b5c8d713b3",
"signature": "4396961c83faf0553f263e9cd17e9428d025c2d522cdde93e2f0f3b5c8d713b3",
"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.es2020.bigint.d.ts": {
"version": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
"signature": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
"affectsGlobalScope": true
},
"../../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
"version": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
"signature": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
"affectsGlobalScope": true
},
"../../infra/type-overrides.d.ts": {
"version": "d20887f4ff14c46bd3174af2b3c952103bbc02e5d191289246bf424fe30e66cc",
"signature": "d20887f4ff14c46bd3174af2b3c952103bbc02e5d191289246bf424fe30e66cc",
"affectsGlobalScope": true
},
"../workbox-core/_version.d.ts": {
"version": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"affectsGlobalScope": false
},
"../workbox-core/types.d.ts": {
"version": "73d4b9eedb4b74e4a8cd7e3397786bdedc51acffd40e97703d3a69e3a6740728",
"signature": "73d4b9eedb4b74e4a8cd7e3397786bdedc51acffd40e97703d3a69e3a6740728",
"affectsGlobalScope": false
},
"../workbox-core/_private/workboxerror.d.ts": {
"version": "f1c2a1ce3b67ce6a401ccec27d731f1c134e71c78585cb72a124eb5e1a43a345",
"signature": "f1c2a1ce3b67ce6a401ccec27d731f1c134e71c78585cb72a124eb5e1a43a345",
"affectsGlobalScope": false
},
"../workbox-core/_private/logger.d.ts": {
"version": "d763b9ef68a16f3896187af5b51b5a959b479218cc65c2930bcb440cbbf10728",
"signature": "d763b9ef68a16f3896187af5b51b5a959b479218cc65c2930bcb440cbbf10728",
"affectsGlobalScope": true
},
"../workbox-core/_private/assert.d.ts": {
"version": "c4223e70650aab009e6ee9e5eb310ff4114f0b3a4e3169e8800731b43f0b8079",
"signature": "c4223e70650aab009e6ee9e5eb310ff4114f0b3a4e3169e8800731b43f0b8079",
"affectsGlobalScope": false
},
"../workbox-core/_private/getfriendlyurl.d.ts": {
"version": "9fd40388bab591ded1f8c05b64fbfe3e342c6cd70d594d5238f42dd2186980ff",
"signature": "9fd40388bab591ded1f8c05b64fbfe3e342c6cd70d594d5238f42dd2186980ff",
"affectsGlobalScope": false
},
"../workbox-core/_private/dbwrapper.d.ts": {
"version": "7cf4845f8300c2fb3a80b2183cf61629bb45a7f5f64e3df6d500c03e5f92662c",
"signature": "7cf4845f8300c2fb3a80b2183cf61629bb45a7f5f64e3df6d500c03e5f92662c",
"affectsGlobalScope": false
},
"./src/_version.ts": {
"version": "4f250bed81d03c8e912e9d882224a3fdd8c22a803058432d69a4ef1daa29e279",
"signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"affectsGlobalScope": true
},
"./src/lib/storablerequest.ts": {
"version": "f109b68ec41af194b2c9e7163c6e15a7b8b915ef85cf81d3c3467f29c4599302",
"signature": "a9a1bcd9fdab9a29919b2480f7d624adfb74292f6fe7c4e676fe7408363821d8",
"affectsGlobalScope": false
},
"./src/lib/queuestore.ts": {
"version": "a17860ffee23aca2175d8a110dbf055ae322e4db0e53891463aaa66e6eb2bf33",
"signature": "6c3b286fab972a194bf6a0aa3242a47ede865aa52cfc6d87fecca575c45e41fe",
"affectsGlobalScope": false
},
"./src/queue.ts": {
"version": "c425f77b7e5b2ce849beecf1ab6d8ae970c9685590ae02e5410198558cbb1c09",
"signature": "695e75a59f5c44ac60da5d717a5d3092fae1e919e9abe346a731394431b9365c",
"affectsGlobalScope": false
},
"./src/backgroundsyncplugin.ts": {
"version": "f50a4383e64fb09c494ccb7c0ac4a0818299e53cf5f9723dee49d55f150eaedd",
"signature": "f915b3837455b734ccc458892e519c09949654c9da1e54b1a8fdf7c13bd11126",
"affectsGlobalScope": false
},
"./src/index.ts": {
"version": "a16a010dbd732f01a488568da12fd447055ab91eb627345059e9be28c33f4ddc",
"signature": "55af6d2bcce8ab2b6a9c7fb5cff89a7cf97daf447c58d95270fce7289e3993c3",
"affectsGlobalScope": false
},
"../../node_modules/@types/color-name/index.d.ts": {
"version": "f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",
"signature": "f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",
"affectsGlobalScope": false
},
"../../node_modules/@types/eslint-visitor-keys/index.d.ts": {
"version": "725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",
"signature": "725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",
"affectsGlobalScope": false
},
"../../node_modules/@types/estree/index.d.ts": {
"version": "89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b",
"signature": "89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/globals.d.ts": {
"version": "6fc83519155969f2457d2454908d68830a6f6480974914c024eaf4e3248a2fd1",
"signature": "6fc83519155969f2457d2454908d68830a6f6480974914c024eaf4e3248a2fd1",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/ts3.1/async_hooks.d.ts": {
"version": "93a45c42b3b0d24b09a0303b987407e22e13adab7d2e49f3bd7332ca30afcf82",
"signature": "93a45c42b3b0d24b09a0303b987407e22e13adab7d2e49f3bd7332ca30afcf82",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/buffer.d.ts": {
"version": "bc6a78961535181265845bf9b9e8a147ffd0ca275097ceb670a9b92afa825152",
"signature": "bc6a78961535181265845bf9b9e8a147ffd0ca275097ceb670a9b92afa825152",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/child_process.d.ts": {
"version": "714e21572208da98a16594de5e42ee54dbbebca7e69e956d2dac010564378c45",
"signature": "714e21572208da98a16594de5e42ee54dbbebca7e69e956d2dac010564378c45",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/cluster.d.ts": {
"version": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
"signature": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/console.d.ts": {
"version": "51851805d06a6878796c3a00ccf0839fe18111a38d1bae84964c269f16bcc2b7",
"signature": "51851805d06a6878796c3a00ccf0839fe18111a38d1bae84964c269f16bcc2b7",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/ts3.1/constants.d.ts": {
"version": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
"signature": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/crypto.d.ts": {
"version": "c5cc5f3a1a963e05947bb1c823d06c3758e0d352c9a97afddc3fd5a6d5c955cd",
"signature": "c5cc5f3a1a963e05947bb1c823d06c3758e0d352c9a97afddc3fd5a6d5c955cd",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/dgram.d.ts": {
"version": "7ecfe97b43aa6c8b8f90caa599d5648bb559962e74e6f038f73a77320569dd78",
"signature": "7ecfe97b43aa6c8b8f90caa599d5648bb559962e74e6f038f73a77320569dd78",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/dns.d.ts": {
"version": "7db7569fbb3e2b01ba8751c761cdd3f0debd104170d5665b7dc20a11630df3a9",
"signature": "7db7569fbb3e2b01ba8751c761cdd3f0debd104170d5665b7dc20a11630df3a9",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/domain.d.ts": {
"version": "cde4d7f6274468180fa39847b183aec22626e8212ff885d535c53f4cd7c225fd",
"signature": "cde4d7f6274468180fa39847b183aec22626e8212ff885d535c53f4cd7c225fd",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/ts3.1/events.d.ts": {
"version": "072b0ac82ae8fe05b0d4f2eadb7f6edd0ebd84175ecad2f9e09261290a86bcee",
"signature": "072b0ac82ae8fe05b0d4f2eadb7f6edd0ebd84175ecad2f9e09261290a86bcee",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/ts3.1/fs.d.ts": {
"version": "5a1eba6d050430241b27463e4917e1d30d3f5e242f47cab42619e4f7c5dea486",
"signature": "5a1eba6d050430241b27463e4917e1d30d3f5e242f47cab42619e4f7c5dea486",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/fs/promises.d.ts": {
"version": "fb28748ff8d015f52e99daee4f454e57cec1a22141f1257c317f3630a15edeb7",
"signature": "fb28748ff8d015f52e99daee4f454e57cec1a22141f1257c317f3630a15edeb7",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/http.d.ts": {
"version": "27534007150d3d80f12fe48dc815b32bf9b92a7de058b52bfc21a256e9d18966",
"signature": "27534007150d3d80f12fe48dc815b32bf9b92a7de058b52bfc21a256e9d18966",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/http2.d.ts": {
"version": "5d9394b829cfd504b2fe17287aaad8ce1dcfb2a2183c962a90a85b96da2c1c90",
"signature": "5d9394b829cfd504b2fe17287aaad8ce1dcfb2a2183c962a90a85b96da2c1c90",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/https.d.ts": {
"version": "c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a",
"signature": "c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/inspector.d.ts": {
"version": "6c3857edaeeaaf43812f527830ebeece9266b6e8eb5271ab6d2f0008306c9947",
"signature": "6c3857edaeeaaf43812f527830ebeece9266b6e8eb5271ab6d2f0008306c9947",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/module.d.ts": {
"version": "bc6a77e750f4d34584e46b1405b771fb69a224197dd6bafe5b0392a29a70b665",
"signature": "bc6a77e750f4d34584e46b1405b771fb69a224197dd6bafe5b0392a29a70b665",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/net.d.ts": {
"version": "46cac76114704902baa535b30fb66a26aeaf9430f3b3ab44746e329f12e85498",
"signature": "46cac76114704902baa535b30fb66a26aeaf9430f3b3ab44746e329f12e85498",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/os.d.ts": {
"version": "ed4ae81196cccc10f297d228bca8d02e31058e6d723a3c5bc4be5fb3c61c6a34",
"signature": "ed4ae81196cccc10f297d228bca8d02e31058e6d723a3c5bc4be5fb3c61c6a34",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/path.d.ts": {
"version": "84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35",
"signature": "84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/perf_hooks.d.ts": {
"version": "0b6098fedb648cab8091cca2b022a5c729b6ef18da923852033f495907cb1a45",
"signature": "0b6098fedb648cab8091cca2b022a5c729b6ef18da923852033f495907cb1a45",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/process.d.ts": {
"version": "3b421841e978ea425f634dcef9093890a6f2c245e49164101e970acd534972a8",
"signature": "3b421841e978ea425f634dcef9093890a6f2c245e49164101e970acd534972a8",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/ts3.1/punycode.d.ts": {
"version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
"signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/querystring.d.ts": {
"version": "884560fda6c3868f925f022adc3a1289fe6507bbb45adb10fa1bbcc73a941bb0",
"signature": "884560fda6c3868f925f022adc3a1289fe6507bbb45adb10fa1bbcc73a941bb0",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/readline.d.ts": {
"version": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
"signature": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/repl.d.ts": {
"version": "dd3706b25d06fe23c73d16079e8c66ac775831ef419da00716bf2aee530a04a4",
"signature": "dd3706b25d06fe23c73d16079e8c66ac775831ef419da00716bf2aee530a04a4",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/stream.d.ts": {
"version": "1298327149e93a60c24a3b5db6048f7cc8fd4e3259e91d05fc44306a04b1b873",
"signature": "1298327149e93a60c24a3b5db6048f7cc8fd4e3259e91d05fc44306a04b1b873",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/string_decoder.d.ts": {
"version": "d67e08745494b000da9410c1ae2fdc9965fc6d593fe0f381a47491f75417d457",
"signature": "d67e08745494b000da9410c1ae2fdc9965fc6d593fe0f381a47491f75417d457",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/timers.d.ts": {
"version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
"signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/tls.d.ts": {
"version": "3181290a158e54a78c1a57c41791ec1cbdc860ae565916daa1bf4e425b7edac7",
"signature": "3181290a158e54a78c1a57c41791ec1cbdc860ae565916daa1bf4e425b7edac7",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/trace_events.d.ts": {
"version": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
"signature": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/tty.d.ts": {
"version": "3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748",
"signature": "3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/url.d.ts": {
"version": "826d48e49c905cedb906cbde6ccaf758827ff5867d4daa006b5a79e0fb489357",
"signature": "826d48e49c905cedb906cbde6ccaf758827ff5867d4daa006b5a79e0fb489357",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/util.d.ts": {
"version": "baa711b17f67390c60eac3c70a1391b23a8e3833cb723b2d7336d4817a22455c",
"signature": "baa711b17f67390c60eac3c70a1391b23a8e3833cb723b2d7336d4817a22455c",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/v8.d.ts": {
"version": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
"signature": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/vm.d.ts": {
"version": "a1136cf18dbe1b9b600c65538fd48609a1a4772d115a0c1d775839fe6544487c",
"signature": "a1136cf18dbe1b9b600c65538fd48609a1a4772d115a0c1d775839fe6544487c",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/worker_threads.d.ts": {
"version": "e8482f41c6e001657302dcb3a1ba30359a0983574caee9405ef863cb9eac3b95",
"signature": "e8482f41c6e001657302dcb3a1ba30359a0983574caee9405ef863cb9eac3b95",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/zlib.d.ts": {
"version": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
"signature": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.1/base.d.ts": {
"version": "328c57762da32e49f410588955f8d1daf9f2a5cf59437fbcd197119a2590e15f",
"signature": "328c57762da32e49f410588955f8d1daf9f2a5cf59437fbcd197119a2590e15f",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.4/fs.d.ts": {
"version": "df9091bc09522870e0fc29f5c0f747841916962d05b0f96a02c79c6860b28755",
"signature": "df9091bc09522870e0fc29f5c0f747841916962d05b0f96a02c79c6860b28755",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.4/process.d.ts": {
"version": "397810d9057c5e8848c7a483993ead84a6504a7900bd2a29d715ce09dbb912ff",
"signature": "397810d9057c5e8848c7a483993ead84a6504a7900bd2a29d715ce09dbb912ff",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/ts3.4/util.d.ts": {
"version": "e27cf5991f16fd25dffb7136376cd417974540e984a4b1e0b26aa52c92aed7ae",
"signature": "e27cf5991f16fd25dffb7136376cd417974540e984a4b1e0b26aa52c92aed7ae",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.4/globals.d.ts": {
"version": "4dc1f3918747b7960d67ed631526b9f2cde9f3dad49c092b177a2b16dc4f7c9f",
"signature": "4dc1f3918747b7960d67ed631526b9f2cde9f3dad49c092b177a2b16dc4f7c9f",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/ts3.4/base.d.ts": {
"version": "333327fe52a97f3940539513b0e3b47e1e6df97cd9132975a496bbd1ada22026",
"signature": "333327fe52a97f3940539513b0e3b47e1e6df97cd9132975a496bbd1ada22026",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.6/globals.global.d.ts": {
"version": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
"signature": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
"affectsGlobalScope": true
},
"../../node_modules/@types/node/ts3.6/wasi.d.ts": {
"version": "0b3fef11ea6208c4cb3715c9aa108766ce98fc726bfba68cc23b25ce944ce9c0",
"signature": "0b3fef11ea6208c4cb3715c9aa108766ce98fc726bfba68cc23b25ce944ce9c0",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/ts3.6/base.d.ts": {
"version": "947affd97f392fae63e91ce355c1ada75ef2290ed8353f37d3c7138b9bf811fc",
"signature": "947affd97f392fae63e91ce355c1ada75ef2290ed8353f37d3c7138b9bf811fc",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/assert.d.ts": {
"version": "a8b842671d535d14f533fd8dbfacebceacf5195069d720425d572d5cc5ab3dc4",
"signature": "a8b842671d535d14f533fd8dbfacebceacf5195069d720425d572d5cc5ab3dc4",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/base.d.ts": {
"version": "d20072cb51d8baad944bedd935a25c7f10c29744e9a648d2c72c215337356077",
"signature": "d20072cb51d8baad944bedd935a25c7f10c29744e9a648d2c72c215337356077",
"affectsGlobalScope": false
},
"../../node_modules/@types/node/index.d.ts": {
"version": "98a637a0675858025e5be25c133dcdc10a0640a25e7cd610a512389b1676bc30",
"signature": "98a637a0675858025e5be25c133dcdc10a0640a25e7cd610a512389b1676bc30",
"affectsGlobalScope": false
},
"../../node_modules/@types/minimatch/index.d.ts": {
"version": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633",
"signature": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633",
"affectsGlobalScope": false
},
"../../node_modules/@types/glob/index.d.ts": {
"version": "393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0",
"signature": "393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0",
"affectsGlobalScope": false
},
"../../node_modules/@types/json-schema/index.d.ts": {
"version": "b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024",
"signature": "b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024",
"affectsGlobalScope": false
},
"../../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/resolve/index.d.ts": {
"version": "2880728492d6a6baa55411d14cc42fa55714a24b1d1d27ff9a8a610abd47c761",
"signature": "2880728492d6a6baa55411d14cc42fa55714a24b1d1d27ff9a8a610abd47c761",
"affectsGlobalScope": false
},
"../../node_modules/@types/yauzl/index.d.ts": {
"version": "3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26",
"signature": "3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26",
"affectsGlobalScope": false
}
},
"options": {
"composite": true,
"declaration": true,
"lib": [
"lib.es2017.d.ts",
"lib.webworker.d.ts"
],
"module": 99,
"moduleResolution": 2,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"strict": true,
"target": 99,
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"outDir": "./",
"rootDir": "./src",
"configFilePath": "./tsconfig.json"
},
"referencedMap": {
"../../infra/type-overrides.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/color-name/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/eslint-visitor-keys/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/estree/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/glob/index.d.ts": [
"../../node_modules/@types/minimatch/index.d.ts",
"../../node_modules/@types/node/index.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/json-schema/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/minimatch/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/minimist/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/assert.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/base.d.ts": [
"../../node_modules/@types/node/assert.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../../node_modules/@types/node/ts3.6/base.d.ts"
],
"../../node_modules/@types/node/index.d.ts": [
"../../node_modules/@types/node/base.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/async_hooks.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/base.d.ts": [
"../../node_modules/@types/node/ts3.1/async_hooks.d.ts",
"../../node_modules/@types/node/ts3.1/buffer.d.ts",
"../../node_modules/@types/node/ts3.1/child_process.d.ts",
"../../node_modules/@types/node/ts3.1/cluster.d.ts",
"../../node_modules/@types/node/ts3.1/console.d.ts",
"../../node_modules/@types/node/ts3.1/constants.d.ts",
"../../node_modules/@types/node/ts3.1/crypto.d.ts",
"../../node_modules/@types/node/ts3.1/dgram.d.ts",
"../../node_modules/@types/node/ts3.1/dns.d.ts",
"../../node_modules/@types/node/ts3.1/domain.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/fs/promises.d.ts",
"../../node_modules/@types/node/ts3.1/globals.d.ts",
"../../node_modules/@types/node/ts3.1/http.d.ts",
"../../node_modules/@types/node/ts3.1/http2.d.ts",
"../../node_modules/@types/node/ts3.1/https.d.ts",
"../../node_modules/@types/node/ts3.1/inspector.d.ts",
"../../node_modules/@types/node/ts3.1/module.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/os.d.ts",
"../../node_modules/@types/node/ts3.1/path.d.ts",
"../../node_modules/@types/node/ts3.1/perf_hooks.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/punycode.d.ts",
"../../node_modules/@types/node/ts3.1/querystring.d.ts",
"../../node_modules/@types/node/ts3.1/readline.d.ts",
"../../node_modules/@types/node/ts3.1/repl.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/string_decoder.d.ts",
"../../node_modules/@types/node/ts3.1/timers.d.ts",
"../../node_modules/@types/node/ts3.1/tls.d.ts",
"../../node_modules/@types/node/ts3.1/trace_events.d.ts",
"../../node_modules/@types/node/ts3.1/tty.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.1/v8.d.ts",
"../../node_modules/@types/node/ts3.1/vm.d.ts",
"../../node_modules/@types/node/ts3.1/worker_threads.d.ts",
"../../node_modules/@types/node/ts3.1/zlib.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/buffer.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/child_process.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/cluster.d.ts": [
"../../node_modules/@types/node/ts3.1/child_process.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/console.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/constants.d.ts": [
"../../node_modules/@types/node/ts3.1/crypto.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/os.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/crypto.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/dgram.d.ts": [
"../../node_modules/@types/node/ts3.1/dns.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/dns.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/domain.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/events.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/fs.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs/promises.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/fs/promises.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/globals.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/http.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/http2.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/http.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/tls.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/https.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/http.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/tls.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/inspector.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/module.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/net.d.ts": [
"../../node_modules/@types/node/ts3.1/dns.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/os.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/path.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/perf_hooks.d.ts": [
"../../node_modules/@types/node/ts3.1/async_hooks.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/process.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/tty.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/punycode.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/querystring.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/readline.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/repl.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/readline.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.1/vm.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/stream.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/string_decoder.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/timers.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/tls.d.ts": [
"../../node_modules/@types/node/ts3.1/crypto.d.ts",
"../../node_modules/@types/node/ts3.1/dns.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/trace_events.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/tty.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/url.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/querystring.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/util.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/v8.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/vm.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/worker_threads.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.1/vm.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/zlib.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.4/base.d.ts": [
"../../node_modules/@types/node/ts3.1/base.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/globals.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.4/fs.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.4/globals.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/globals.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.4/process.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.4/util.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts"
],
"../../node_modules/@types/node/ts3.6/base.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/base.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../../node_modules/@types/node/ts3.6/globals.global.d.ts",
"../../node_modules/@types/node/ts3.6/wasi.d.ts"
],
"../../node_modules/@types/node/ts3.6/globals.global.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.6/wasi.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/normalize-package-data/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/resolve/index.d.ts": [
"../../node_modules/@types/node/index.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/yauzl/index.d.ts": [
"../../node_modules/@types/node/index.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.core.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2016.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.object.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.string.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es5.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.webworker.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"./src/_version.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"./src/backgroundsyncplugin.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../workbox-core/types.d.ts",
"./src/queue.ts"
],
"./src/index.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"./src/backgroundsyncplugin.ts",
"./src/queue.ts"
],
"./src/lib/queuestore.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../workbox-core/_private/assert.d.ts",
"../workbox-core/_private/dbwrapper.d.ts",
"./src/lib/storablerequest.ts"
],
"./src/lib/storablerequest.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../workbox-core/_private/assert.d.ts"
],
"./src/queue.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../workbox-core/_private/assert.d.ts",
"../workbox-core/_private/getfriendlyurl.d.ts",
"../workbox-core/_private/logger.d.ts",
"../workbox-core/_private/workboxerror.d.ts",
"./src/lib/queuestore.ts",
"./src/lib/storablerequest.ts"
],
"../workbox-core/_private/assert.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../workbox-core/_private/workboxerror.d.ts"
],
"../workbox-core/_private/dbwrapper.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../workbox-core/_private/getfriendlyurl.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../workbox-core/_private/logger.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../workbox-core/_private/workboxerror.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../workbox-core/_version.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../workbox-core/types.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
]
},
"exportedModulesMap": {
"../../infra/type-overrides.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/color-name/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/eslint-visitor-keys/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/estree/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/glob/index.d.ts": [
"../../node_modules/@types/minimatch/index.d.ts",
"../../node_modules/@types/node/index.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/json-schema/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/minimatch/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/minimist/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/assert.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/base.d.ts": [
"../../node_modules/@types/node/assert.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../../node_modules/@types/node/ts3.6/base.d.ts"
],
"../../node_modules/@types/node/index.d.ts": [
"../../node_modules/@types/node/base.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/async_hooks.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/base.d.ts": [
"../../node_modules/@types/node/ts3.1/async_hooks.d.ts",
"../../node_modules/@types/node/ts3.1/buffer.d.ts",
"../../node_modules/@types/node/ts3.1/child_process.d.ts",
"../../node_modules/@types/node/ts3.1/cluster.d.ts",
"../../node_modules/@types/node/ts3.1/console.d.ts",
"../../node_modules/@types/node/ts3.1/constants.d.ts",
"../../node_modules/@types/node/ts3.1/crypto.d.ts",
"../../node_modules/@types/node/ts3.1/dgram.d.ts",
"../../node_modules/@types/node/ts3.1/dns.d.ts",
"../../node_modules/@types/node/ts3.1/domain.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/fs/promises.d.ts",
"../../node_modules/@types/node/ts3.1/globals.d.ts",
"../../node_modules/@types/node/ts3.1/http.d.ts",
"../../node_modules/@types/node/ts3.1/http2.d.ts",
"../../node_modules/@types/node/ts3.1/https.d.ts",
"../../node_modules/@types/node/ts3.1/inspector.d.ts",
"../../node_modules/@types/node/ts3.1/module.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/os.d.ts",
"../../node_modules/@types/node/ts3.1/path.d.ts",
"../../node_modules/@types/node/ts3.1/perf_hooks.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/punycode.d.ts",
"../../node_modules/@types/node/ts3.1/querystring.d.ts",
"../../node_modules/@types/node/ts3.1/readline.d.ts",
"../../node_modules/@types/node/ts3.1/repl.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/string_decoder.d.ts",
"../../node_modules/@types/node/ts3.1/timers.d.ts",
"../../node_modules/@types/node/ts3.1/tls.d.ts",
"../../node_modules/@types/node/ts3.1/trace_events.d.ts",
"../../node_modules/@types/node/ts3.1/tty.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.1/v8.d.ts",
"../../node_modules/@types/node/ts3.1/vm.d.ts",
"../../node_modules/@types/node/ts3.1/worker_threads.d.ts",
"../../node_modules/@types/node/ts3.1/zlib.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/buffer.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/child_process.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/cluster.d.ts": [
"../../node_modules/@types/node/ts3.1/child_process.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/console.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/constants.d.ts": [
"../../node_modules/@types/node/ts3.1/crypto.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/os.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/crypto.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/dgram.d.ts": [
"../../node_modules/@types/node/ts3.1/dns.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/dns.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/domain.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/events.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/fs.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs/promises.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/fs/promises.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/globals.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/http.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/http2.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/http.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/tls.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/https.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/http.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/tls.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/inspector.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/module.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/net.d.ts": [
"../../node_modules/@types/node/ts3.1/dns.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/os.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/path.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/perf_hooks.d.ts": [
"../../node_modules/@types/node/ts3.1/async_hooks.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/process.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/tty.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/punycode.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/querystring.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/readline.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/repl.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/readline.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.1/vm.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/stream.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/string_decoder.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/timers.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/tls.d.ts": [
"../../node_modules/@types/node/ts3.1/crypto.d.ts",
"../../node_modules/@types/node/ts3.1/dns.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/trace_events.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/tty.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/url.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/querystring.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/util.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/v8.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/vm.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/worker_threads.d.ts": [
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.1/vm.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.1/zlib.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.4/base.d.ts": [
"../../node_modules/@types/node/ts3.1/base.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/globals.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.4/fs.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.4/globals.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/globals.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.4/process.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.4/util.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts"
],
"../../node_modules/@types/node/ts3.6/base.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/base.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../../node_modules/@types/node/ts3.6/globals.global.d.ts",
"../../node_modules/@types/node/ts3.6/wasi.d.ts"
],
"../../node_modules/@types/node/ts3.6/globals.global.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/node/ts3.6/wasi.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/normalize-package-data/index.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/resolve/index.d.ts": [
"../../node_modules/@types/node/index.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/@types/yauzl/index.d.ts": [
"../../node_modules/@types/node/index.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.core.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2016.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.object.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.string.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.es5.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../../node_modules/typescript/lib/lib.webworker.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"./src/backgroundsyncplugin.ts": [
"../workbox-core/types.d.ts",
"./src/queue.ts"
],
"./src/index.ts": [
"./src/backgroundsyncplugin.ts",
"./src/queue.ts"
],
"./src/lib/queuestore.ts": [
"./src/lib/storablerequest.ts"
],
"../workbox-core/_private/assert.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../workbox-core/_private/workboxerror.d.ts"
],
"../workbox-core/_private/dbwrapper.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../workbox-core/_private/getfriendlyurl.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../workbox-core/_private/logger.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../workbox-core/_private/workboxerror.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../workbox-core/_version.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
],
"../workbox-core/types.d.ts": [
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts"
]
},
"semanticDiagnosticsPerFile": [
"../../infra/type-overrides.d.ts",
"../../node_modules/@types/color-name/index.d.ts",
"../../node_modules/@types/eslint-visitor-keys/index.d.ts",
"../../node_modules/@types/estree/index.d.ts",
"../../node_modules/@types/glob/index.d.ts",
"../../node_modules/@types/json-schema/index.d.ts",
"../../node_modules/@types/minimatch/index.d.ts",
"../../node_modules/@types/minimist/index.d.ts",
"../../node_modules/@types/node/assert.d.ts",
"../../node_modules/@types/node/base.d.ts",
"../../node_modules/@types/node/index.d.ts",
"../../node_modules/@types/node/ts3.1/async_hooks.d.ts",
"../../node_modules/@types/node/ts3.1/base.d.ts",
"../../node_modules/@types/node/ts3.1/buffer.d.ts",
"../../node_modules/@types/node/ts3.1/child_process.d.ts",
"../../node_modules/@types/node/ts3.1/cluster.d.ts",
"../../node_modules/@types/node/ts3.1/console.d.ts",
"../../node_modules/@types/node/ts3.1/constants.d.ts",
"../../node_modules/@types/node/ts3.1/crypto.d.ts",
"../../node_modules/@types/node/ts3.1/dgram.d.ts",
"../../node_modules/@types/node/ts3.1/dns.d.ts",
"../../node_modules/@types/node/ts3.1/domain.d.ts",
"../../node_modules/@types/node/ts3.1/events.d.ts",
"../../node_modules/@types/node/ts3.1/fs.d.ts",
"../../node_modules/@types/node/ts3.1/fs/promises.d.ts",
"../../node_modules/@types/node/ts3.1/globals.d.ts",
"../../node_modules/@types/node/ts3.1/http.d.ts",
"../../node_modules/@types/node/ts3.1/http2.d.ts",
"../../node_modules/@types/node/ts3.1/https.d.ts",
"../../node_modules/@types/node/ts3.1/inspector.d.ts",
"../../node_modules/@types/node/ts3.1/module.d.ts",
"../../node_modules/@types/node/ts3.1/net.d.ts",
"../../node_modules/@types/node/ts3.1/os.d.ts",
"../../node_modules/@types/node/ts3.1/path.d.ts",
"../../node_modules/@types/node/ts3.1/perf_hooks.d.ts",
"../../node_modules/@types/node/ts3.1/process.d.ts",
"../../node_modules/@types/node/ts3.1/punycode.d.ts",
"../../node_modules/@types/node/ts3.1/querystring.d.ts",
"../../node_modules/@types/node/ts3.1/readline.d.ts",
"../../node_modules/@types/node/ts3.1/repl.d.ts",
"../../node_modules/@types/node/ts3.1/stream.d.ts",
"../../node_modules/@types/node/ts3.1/string_decoder.d.ts",
"../../node_modules/@types/node/ts3.1/timers.d.ts",
"../../node_modules/@types/node/ts3.1/tls.d.ts",
"../../node_modules/@types/node/ts3.1/trace_events.d.ts",
"../../node_modules/@types/node/ts3.1/tty.d.ts",
"../../node_modules/@types/node/ts3.1/url.d.ts",
"../../node_modules/@types/node/ts3.1/util.d.ts",
"../../node_modules/@types/node/ts3.1/v8.d.ts",
"../../node_modules/@types/node/ts3.1/vm.d.ts",
"../../node_modules/@types/node/ts3.1/worker_threads.d.ts",
"../../node_modules/@types/node/ts3.1/zlib.d.ts",
"../../node_modules/@types/node/ts3.4/base.d.ts",
"../../node_modules/@types/node/ts3.4/fs.d.ts",
"../../node_modules/@types/node/ts3.4/globals.d.ts",
"../../node_modules/@types/node/ts3.4/process.d.ts",
"../../node_modules/@types/node/ts3.4/util.d.ts",
"../../node_modules/@types/node/ts3.6/base.d.ts",
"../../node_modules/@types/node/ts3.6/globals.global.d.ts",
"../../node_modules/@types/node/ts3.6/wasi.d.ts",
"../../node_modules/@types/normalize-package-data/index.d.ts",
"../../node_modules/@types/resolve/index.d.ts",
"../../node_modules/@types/yauzl/index.d.ts",
"../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
"../../node_modules/typescript/lib/lib.es2015.core.d.ts",
"../../node_modules/typescript/lib/lib.es2015.d.ts",
"../../node_modules/typescript/lib/lib.es2015.generator.d.ts",
"../../node_modules/typescript/lib/lib.es2015.iterable.d.ts",
"../../node_modules/typescript/lib/lib.es2015.promise.d.ts",
"../../node_modules/typescript/lib/lib.es2015.proxy.d.ts",
"../../node_modules/typescript/lib/lib.es2015.reflect.d.ts",
"../../node_modules/typescript/lib/lib.es2015.symbol.d.ts",
"../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
"../../node_modules/typescript/lib/lib.es2016.array.include.d.ts",
"../../node_modules/typescript/lib/lib.es2016.d.ts",
"../../node_modules/typescript/lib/lib.es2017.d.ts",
"../../node_modules/typescript/lib/lib.es2017.intl.d.ts",
"../../node_modules/typescript/lib/lib.es2017.object.d.ts",
"../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts",
"../../node_modules/typescript/lib/lib.es2017.string.d.ts",
"../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts",
"../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts",
"../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts",
"../../node_modules/typescript/lib/lib.es2018.d.ts",
"../../node_modules/typescript/lib/lib.es2018.intl.d.ts",
"../../node_modules/typescript/lib/lib.es2018.promise.d.ts",
"../../node_modules/typescript/lib/lib.es2018.regexp.d.ts",
"../../node_modules/typescript/lib/lib.es2020.bigint.d.ts",
"../../node_modules/typescript/lib/lib.es5.d.ts",
"../../node_modules/typescript/lib/lib.esnext.intl.d.ts",
"../../node_modules/typescript/lib/lib.webworker.d.ts",
"./src/_version.ts",
"./src/backgroundsyncplugin.ts",
"./src/index.ts",
"./src/lib/queuestore.ts",
"./src/lib/storablerequest.ts",
"./src/queue.ts",
"../workbox-core/_private/assert.d.ts",
"../workbox-core/_private/dbwrapper.d.ts",
"../workbox-core/_private/getfriendlyurl.d.ts",
"../workbox-core/_private/logger.d.ts",
"../workbox-core/_private/workboxerror.d.ts",
"../workbox-core/_version.d.ts",
"../workbox-core/types.d.ts"
]
},
"version": "3.9.7"
}