@docusaurus/utils 2.0.0-beta.15d451942 → 2.0.0-beta.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. package/README.md +1 -1
  2. package/lib/constants.d.ts +68 -0
  3. package/lib/constants.d.ts.map +1 -0
  4. package/lib/constants.js +71 -0
  5. package/lib/constants.js.map +1 -0
  6. package/lib/dataFileUtils.d.ts +60 -0
  7. package/lib/dataFileUtils.d.ts.map +1 -0
  8. package/lib/dataFileUtils.js +91 -0
  9. package/lib/dataFileUtils.js.map +1 -0
  10. package/lib/emitUtils.d.ts +35 -0
  11. package/lib/emitUtils.d.ts.map +1 -0
  12. package/lib/emitUtils.js +107 -0
  13. package/lib/emitUtils.js.map +1 -0
  14. package/lib/gitUtils.d.ts +66 -0
  15. package/lib/gitUtils.d.ts.map +1 -0
  16. package/lib/gitUtils.js +66 -0
  17. package/lib/gitUtils.js.map +1 -0
  18. package/lib/globUtils.d.ts +39 -0
  19. package/lib/globUtils.d.ts.map +1 -0
  20. package/lib/globUtils.js +66 -0
  21. package/lib/globUtils.js.map +1 -0
  22. package/lib/hashUtils.d.ts +17 -0
  23. package/lib/hashUtils.d.ts.map +1 -0
  24. package/lib/hashUtils.js +42 -0
  25. package/lib/hashUtils.js.map +1 -0
  26. package/lib/i18nUtils.d.ts +28 -0
  27. package/lib/i18nUtils.d.ts.map +1 -0
  28. package/lib/i18nUtils.js +49 -0
  29. package/lib/i18nUtils.js.map +1 -0
  30. package/lib/index.d.ts +16 -82
  31. package/lib/index.d.ts.map +1 -0
  32. package/lib/index.js +89 -411
  33. package/lib/index.js.map +1 -0
  34. package/lib/jsUtils.d.ts +45 -0
  35. package/lib/jsUtils.d.ts.map +1 -0
  36. package/lib/jsUtils.js +94 -0
  37. package/lib/jsUtils.js.map +1 -0
  38. package/lib/markdownLinks.d.ts +49 -5
  39. package/lib/markdownLinks.d.ts.map +1 -0
  40. package/lib/markdownLinks.js +48 -13
  41. package/lib/markdownLinks.js.map +1 -0
  42. package/lib/markdownUtils.d.ts +112 -0
  43. package/lib/markdownUtils.d.ts.map +1 -0
  44. package/lib/markdownUtils.js +271 -0
  45. package/lib/markdownUtils.js.map +1 -0
  46. package/lib/pathUtils.d.ts +52 -0
  47. package/lib/pathUtils.d.ts.map +1 -0
  48. package/lib/pathUtils.js +113 -0
  49. package/lib/pathUtils.js.map +1 -0
  50. package/lib/slugger.d.ts +24 -0
  51. package/lib/slugger.d.ts.map +1 -0
  52. package/lib/slugger.js +23 -0
  53. package/lib/slugger.js.map +1 -0
  54. package/lib/tags.d.ts +48 -0
  55. package/lib/tags.d.ts.map +1 -0
  56. package/lib/tags.js +91 -0
  57. package/lib/tags.js.map +1 -0
  58. package/lib/urlUtils.d.ts +66 -0
  59. package/lib/urlUtils.d.ts.map +1 -0
  60. package/lib/urlUtils.js +208 -0
  61. package/lib/urlUtils.js.map +1 -0
  62. package/lib/webpackUtils.d.ts +35 -0
  63. package/lib/webpackUtils.d.ts.map +1 -0
  64. package/lib/webpackUtils.js +116 -0
  65. package/lib/webpackUtils.js.map +1 -0
  66. package/package.json +20 -10
  67. package/src/constants.ts +90 -0
  68. package/src/dataFileUtils.ts +122 -0
  69. package/src/deps.d.ts +10 -0
  70. package/src/emitUtils.ts +130 -0
  71. package/src/gitUtils.ts +153 -0
  72. package/src/globUtils.ts +80 -0
  73. package/src/hashUtils.ts +38 -0
  74. package/src/i18nUtils.ts +67 -0
  75. package/src/index.ts +94 -521
  76. package/src/jsUtils.ts +102 -0
  77. package/src/markdownLinks.ts +89 -30
  78. package/src/markdownUtils.ts +354 -0
  79. package/src/pathUtils.ts +121 -0
  80. package/src/slugger.ts +36 -0
  81. package/src/tags.ts +117 -0
  82. package/src/urlUtils.ts +235 -0
  83. package/src/webpackUtils.ts +154 -0
  84. package/lib/.tsbuildinfo +0 -3972
  85. package/lib/codeTranslationsUtils.d.ts +0 -11
  86. package/lib/codeTranslationsUtils.js +0 -50
  87. package/lib/escapePath.d.ts +0 -17
  88. package/lib/escapePath.js +0 -25
  89. package/lib/markdownParser.d.ts +0 -28
  90. package/lib/markdownParser.js +0 -132
  91. package/lib/posixPath.d.ts +0 -14
  92. package/lib/posixPath.js +0 -28
  93. package/src/__tests__/__fixtures__/defaultCodeTranslations/en.json +0 -4
  94. package/src/__tests__/__fixtures__/defaultCodeTranslations/fr-FR.json +0 -5
  95. package/src/__tests__/__fixtures__/defaultCodeTranslations/fr.json +0 -4
  96. package/src/__tests__/__snapshots__/index.test.ts.snap +0 -8
  97. package/src/__tests__/codeTranslationsUtils.test.ts +0 -112
  98. package/src/__tests__/escapePath.test.ts +0 -25
  99. package/src/__tests__/index.test.ts +0 -681
  100. package/src/__tests__/markdownParser.test.ts +0 -772
  101. package/src/__tests__/posixPath.test.ts +0 -25
  102. package/src/codeTranslationsUtils.ts +0 -56
  103. package/src/escapePath.ts +0 -23
  104. package/src/markdownParser.ts +0 -177
  105. package/src/posixPath.ts +0 -27
  106. package/tsconfig.json +0 -9
package/lib/.tsbuildinfo DELETED
@@ -1,3972 +0,0 @@
1
- {
2
- "program": {
3
- "fileInfos": {
4
- "../../../node_modules/typescript/lib/lib.es5.d.ts": {
5
- "version": "b3584bc5798ed422ce2516df360ffa9cf2d80b5eae852867db9ba3743145f895",
6
- "signature": "b3584bc5798ed422ce2516df360ffa9cf2d80b5eae852867db9ba3743145f895",
7
- "affectsGlobalScope": true
8
- },
9
- "../../../node_modules/typescript/lib/lib.es2015.d.ts": {
10
- "version": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
11
- "signature": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
12
- "affectsGlobalScope": false
13
- },
14
- "../../../node_modules/typescript/lib/lib.es2016.d.ts": {
15
- "version": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
16
- "signature": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
17
- "affectsGlobalScope": false
18
- },
19
- "../../../node_modules/typescript/lib/lib.es2017.d.ts": {
20
- "version": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
21
- "signature": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
22
- "affectsGlobalScope": false
23
- },
24
- "../../../node_modules/typescript/lib/lib.es2018.d.ts": {
25
- "version": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
26
- "signature": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
27
- "affectsGlobalScope": false
28
- },
29
- "../../../node_modules/typescript/lib/lib.es2019.d.ts": {
30
- "version": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
31
- "signature": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
32
- "affectsGlobalScope": false
33
- },
34
- "../../../node_modules/typescript/lib/lib.es2020.d.ts": {
35
- "version": "e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",
36
- "signature": "e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",
37
- "affectsGlobalScope": false
38
- },
39
- "../../../node_modules/typescript/lib/lib.esnext.d.ts": {
40
- "version": "fc7a21dd3ee27fd0a9ff1c46534efcd9c3cec51a445b479bb326d871c0aa8302",
41
- "signature": "fc7a21dd3ee27fd0a9ff1c46534efcd9c3cec51a445b479bb326d871c0aa8302",
42
- "affectsGlobalScope": false
43
- },
44
- "../../../node_modules/typescript/lib/lib.dom.d.ts": {
45
- "version": "feeeb1dd8a80fb76be42b0426e8f3ffa9bdef3c2f3c12c147e7660b1c5ba8b3b",
46
- "signature": "feeeb1dd8a80fb76be42b0426e8f3ffa9bdef3c2f3c12c147e7660b1c5ba8b3b",
47
- "affectsGlobalScope": true
48
- },
49
- "../../../node_modules/typescript/lib/lib.es2015.core.d.ts": {
50
- "version": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
51
- "signature": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
52
- "affectsGlobalScope": true
53
- },
54
- "../../../node_modules/typescript/lib/lib.es2015.collection.d.ts": {
55
- "version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
56
- "signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
57
- "affectsGlobalScope": true
58
- },
59
- "../../../node_modules/typescript/lib/lib.es2015.generator.d.ts": {
60
- "version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
61
- "signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
62
- "affectsGlobalScope": true
63
- },
64
- "../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
65
- "version": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a",
66
- "signature": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a",
67
- "affectsGlobalScope": true
68
- },
69
- "../../../node_modules/typescript/lib/lib.es2015.promise.d.ts": {
70
- "version": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c",
71
- "signature": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c",
72
- "affectsGlobalScope": true
73
- },
74
- "../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
75
- "version": "810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357",
76
- "signature": "810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357",
77
- "affectsGlobalScope": true
78
- },
79
- "../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
80
- "version": "62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6",
81
- "signature": "62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6",
82
- "affectsGlobalScope": true
83
- },
84
- "../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
85
- "version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
86
- "signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
87
- "affectsGlobalScope": true
88
- },
89
- "../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
90
- "version": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551",
91
- "signature": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551",
92
- "affectsGlobalScope": true
93
- },
94
- "../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
95
- "version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
96
- "signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
97
- "affectsGlobalScope": true
98
- },
99
- "../../../node_modules/typescript/lib/lib.es2017.object.d.ts": {
100
- "version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
101
- "signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
102
- "affectsGlobalScope": true
103
- },
104
- "../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
105
- "version": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98",
106
- "signature": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98",
107
- "affectsGlobalScope": true
108
- },
109
- "../../../node_modules/typescript/lib/lib.es2017.string.d.ts": {
110
- "version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
111
- "signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
112
- "affectsGlobalScope": true
113
- },
114
- "../../../node_modules/typescript/lib/lib.es2017.intl.d.ts": {
115
- "version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
116
- "signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
117
- "affectsGlobalScope": true
118
- },
119
- "../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
120
- "version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
121
- "signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
122
- "affectsGlobalScope": true
123
- },
124
- "../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
125
- "version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
126
- "signature": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
127
- "affectsGlobalScope": true
128
- },
129
- "../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
130
- "version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
131
- "signature": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
132
- "affectsGlobalScope": true
133
- },
134
- "../../../node_modules/typescript/lib/lib.es2018.intl.d.ts": {
135
- "version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
136
- "signature": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
137
- "affectsGlobalScope": true
138
- },
139
- "../../../node_modules/typescript/lib/lib.es2018.promise.d.ts": {
140
- "version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
141
- "signature": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
142
- "affectsGlobalScope": true
143
- },
144
- "../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
145
- "version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
146
- "signature": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
147
- "affectsGlobalScope": true
148
- },
149
- "../../../node_modules/typescript/lib/lib.es2019.array.d.ts": {
150
- "version": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
151
- "signature": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
152
- "affectsGlobalScope": true
153
- },
154
- "../../../node_modules/typescript/lib/lib.es2019.object.d.ts": {
155
- "version": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
156
- "signature": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
157
- "affectsGlobalScope": true
158
- },
159
- "../../../node_modules/typescript/lib/lib.es2019.string.d.ts": {
160
- "version": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
161
- "signature": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
162
- "affectsGlobalScope": true
163
- },
164
- "../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts": {
165
- "version": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
166
- "signature": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
167
- "affectsGlobalScope": true
168
- },
169
- "../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
170
- "version": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09",
171
- "signature": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09",
172
- "affectsGlobalScope": true
173
- },
174
- "../../../node_modules/typescript/lib/lib.es2020.promise.d.ts": {
175
- "version": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
176
- "signature": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
177
- "affectsGlobalScope": true
178
- },
179
- "../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts": {
180
- "version": "e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40",
181
- "signature": "e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40",
182
- "affectsGlobalScope": true
183
- },
184
- "../../../node_modules/typescript/lib/lib.es2020.string.d.ts": {
185
- "version": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
186
- "signature": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
187
- "affectsGlobalScope": true
188
- },
189
- "../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": {
190
- "version": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
191
- "signature": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
192
- "affectsGlobalScope": true
193
- },
194
- "../../../node_modules/typescript/lib/lib.es2020.intl.d.ts": {
195
- "version": "e79ca55569f09a5dc3354be04dba4ae85865b1dce98bf46738ffe231c669621f",
196
- "signature": "e79ca55569f09a5dc3354be04dba4ae85865b1dce98bf46738ffe231c669621f",
197
- "affectsGlobalScope": true
198
- },
199
- "../../../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
200
- "version": "506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e",
201
- "signature": "506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e",
202
- "affectsGlobalScope": true
203
- },
204
- "../../../node_modules/typescript/lib/lib.esnext.string.d.ts": {
205
- "version": "fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe",
206
- "signature": "fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe",
207
- "affectsGlobalScope": true
208
- },
209
- "../../../node_modules/typescript/lib/lib.esnext.promise.d.ts": {
210
- "version": "cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e",
211
- "signature": "cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e",
212
- "affectsGlobalScope": true
213
- },
214
- "../../../node_modules/typescript/lib/lib.esnext.weakref.d.ts": {
215
- "version": "1e61418f41d404e744b6536af9f8c6f6674dd4d54c12335cd0c4f7eded69cf3f",
216
- "signature": "1e61418f41d404e744b6536af9f8c6f6674dd4d54c12335cd0c4f7eded69cf3f",
217
- "affectsGlobalScope": true
218
- },
219
- "../../../node_modules/tslib/tslib.d.ts": {
220
- "version": "ea7abf23498b7c214c67fc14f22f41983fbb7bf7c4826c7fcdef542b2022545f",
221
- "signature": "ea7abf23498b7c214c67fc14f22f41983fbb7bf7c4826c7fcdef542b2022545f",
222
- "affectsGlobalScope": false
223
- },
224
- "../../../node_modules/@types/node/globals.d.ts": {
225
- "version": "215d8d9a2c480fd460127edc048d68d9931d3b27f95132253a6e71975f060bb1",
226
- "signature": "215d8d9a2c480fd460127edc048d68d9931d3b27f95132253a6e71975f060bb1",
227
- "affectsGlobalScope": true
228
- },
229
- "../../../node_modules/@types/node/async_hooks.d.ts": {
230
- "version": "7698983d080f951eaf53ff81e5c7bd61abc02e4a1a21266f1bd79ea85c0dc641",
231
- "signature": "7698983d080f951eaf53ff81e5c7bd61abc02e4a1a21266f1bd79ea85c0dc641",
232
- "affectsGlobalScope": false
233
- },
234
- "../../../node_modules/@types/node/buffer.d.ts": {
235
- "version": "5726b5ce952dc5beaeb08d5f64236632501568a54a390363d2339ba1dc5393b1",
236
- "signature": "5726b5ce952dc5beaeb08d5f64236632501568a54a390363d2339ba1dc5393b1",
237
- "affectsGlobalScope": false
238
- },
239
- "../../../node_modules/@types/node/child_process.d.ts": {
240
- "version": "89a3409a743c2a408d02bd68255a61d8416225b76c2c66d8e2e74dad3e00bc5d",
241
- "signature": "89a3409a743c2a408d02bd68255a61d8416225b76c2c66d8e2e74dad3e00bc5d",
242
- "affectsGlobalScope": false
243
- },
244
- "../../../node_modules/@types/node/cluster.d.ts": {
245
- "version": "714637d594e1a38a075091fe464ca91c6abc0b154784b4287f6883200e28ccef",
246
- "signature": "714637d594e1a38a075091fe464ca91c6abc0b154784b4287f6883200e28ccef",
247
- "affectsGlobalScope": false
248
- },
249
- "../../../node_modules/@types/node/console.d.ts": {
250
- "version": "23edba5f47d3409810c563fe8034ae2c59e718e1ef8570f4152ccdde1915a096",
251
- "signature": "23edba5f47d3409810c563fe8034ae2c59e718e1ef8570f4152ccdde1915a096",
252
- "affectsGlobalScope": true
253
- },
254
- "../../../node_modules/@types/node/constants.d.ts": {
255
- "version": "0e9c55f894ca2d9cf63b5b0d43a8cec1772dd560233fd16275bc7a485eb82f83",
256
- "signature": "0e9c55f894ca2d9cf63b5b0d43a8cec1772dd560233fd16275bc7a485eb82f83",
257
- "affectsGlobalScope": false
258
- },
259
- "../../../node_modules/@types/node/crypto.d.ts": {
260
- "version": "64813a6beff756b9e3f3c06d1b648d55e7c90af2b55c64d13a69d6c7f573643d",
261
- "signature": "64813a6beff756b9e3f3c06d1b648d55e7c90af2b55c64d13a69d6c7f573643d",
262
- "affectsGlobalScope": false
263
- },
264
- "../../../node_modules/@types/node/dgram.d.ts": {
265
- "version": "5f0a09de75bd965c21dc6d73671ba88830272f9ed62897bb0aa9754b369b1eed",
266
- "signature": "5f0a09de75bd965c21dc6d73671ba88830272f9ed62897bb0aa9754b369b1eed",
267
- "affectsGlobalScope": false
268
- },
269
- "../../../node_modules/@types/node/dns.d.ts": {
270
- "version": "2b34e7fcba9e1f24e7f54ba5c8be5a8895b0b8b444ccf6548e04acdee0899317",
271
- "signature": "2b34e7fcba9e1f24e7f54ba5c8be5a8895b0b8b444ccf6548e04acdee0899317",
272
- "affectsGlobalScope": false
273
- },
274
- "../../../node_modules/@types/node/domain.d.ts": {
275
- "version": "06d2be99c3dd2ff52114d02ee443ba486ab482423df1941d3c97d6a92e924d70",
276
- "signature": "06d2be99c3dd2ff52114d02ee443ba486ab482423df1941d3c97d6a92e924d70",
277
- "affectsGlobalScope": true
278
- },
279
- "../../../node_modules/@types/node/events.d.ts": {
280
- "version": "bfd4f140c07091b5e8a963c89e6fa3f44b6cfcbc11471b465cf63e2d020ad0eb",
281
- "signature": "bfd4f140c07091b5e8a963c89e6fa3f44b6cfcbc11471b465cf63e2d020ad0eb",
282
- "affectsGlobalScope": true
283
- },
284
- "../../../node_modules/@types/node/fs.d.ts": {
285
- "version": "c6e08c755c7dad4c282d2701c2c370fee96a1570d66b1d4ae9be36f34763c9bb",
286
- "signature": "c6e08c755c7dad4c282d2701c2c370fee96a1570d66b1d4ae9be36f34763c9bb",
287
- "affectsGlobalScope": false
288
- },
289
- "../../../node_modules/@types/node/fs/promises.d.ts": {
290
- "version": "1c082a7783c301909a8da31748ef54bd84d85120f9d78c7d299ce08949f73c88",
291
- "signature": "1c082a7783c301909a8da31748ef54bd84d85120f9d78c7d299ce08949f73c88",
292
- "affectsGlobalScope": false
293
- },
294
- "../../../node_modules/@types/node/http.d.ts": {
295
- "version": "1f08bd8305d4a789a68f71ab622156dfff993aa51a2aa58b9ccf166cc6f9fcf7",
296
- "signature": "1f08bd8305d4a789a68f71ab622156dfff993aa51a2aa58b9ccf166cc6f9fcf7",
297
- "affectsGlobalScope": false
298
- },
299
- "../../../node_modules/@types/node/http2.d.ts": {
300
- "version": "4c260129d649d69f0608cd123e7016e61364b553a5ca2de9b66b0398594959cf",
301
- "signature": "4c260129d649d69f0608cd123e7016e61364b553a5ca2de9b66b0398594959cf",
302
- "affectsGlobalScope": false
303
- },
304
- "../../../node_modules/@types/node/https.d.ts": {
305
- "version": "1978992206803f5761e99e893d93b25abc818c5fe619674fdf2ae02b29f641ba",
306
- "signature": "1978992206803f5761e99e893d93b25abc818c5fe619674fdf2ae02b29f641ba",
307
- "affectsGlobalScope": false
308
- },
309
- "../../../node_modules/@types/node/inspector.d.ts": {
310
- "version": "05fbe81f09fc455a2c343d2458d2b3c600c90b92b22926be765ee79326be9466",
311
- "signature": "05fbe81f09fc455a2c343d2458d2b3c600c90b92b22926be765ee79326be9466",
312
- "affectsGlobalScope": false
313
- },
314
- "../../../node_modules/@types/node/module.d.ts": {
315
- "version": "8e7d6dae9e19bbe47600dcfd4418db85b30ae7351474ea0aad5e628f9845d340",
316
- "signature": "8e7d6dae9e19bbe47600dcfd4418db85b30ae7351474ea0aad5e628f9845d340",
317
- "affectsGlobalScope": false
318
- },
319
- "../../../node_modules/@types/node/net.d.ts": {
320
- "version": "f20ea392f7f27feb7a90e5a24319a4e365b07bf83c39a547711fe7ff9df68657",
321
- "signature": "f20ea392f7f27feb7a90e5a24319a4e365b07bf83c39a547711fe7ff9df68657",
322
- "affectsGlobalScope": false
323
- },
324
- "../../../node_modules/@types/node/os.d.ts": {
325
- "version": "32542c4660ecda892a333a533feedba31738ee538ef6a78eb73af647137bc3fc",
326
- "signature": "32542c4660ecda892a333a533feedba31738ee538ef6a78eb73af647137bc3fc",
327
- "affectsGlobalScope": false
328
- },
329
- "../../../node_modules/@types/node/path.d.ts": {
330
- "version": "0ecacea5047d1a7d350e7049dbd22f26435be5e8736a81a56afec5b3264db1ca",
331
- "signature": "0ecacea5047d1a7d350e7049dbd22f26435be5e8736a81a56afec5b3264db1ca",
332
- "affectsGlobalScope": false
333
- },
334
- "../../../node_modules/@types/node/perf_hooks.d.ts": {
335
- "version": "ffcb4ebde21f83370ed402583888b28651d2eb7f05bfec9482eb46d82adedd7f",
336
- "signature": "ffcb4ebde21f83370ed402583888b28651d2eb7f05bfec9482eb46d82adedd7f",
337
- "affectsGlobalScope": false
338
- },
339
- "../../../node_modules/@types/node/process.d.ts": {
340
- "version": "06c004006016a51c4d1855527a523562c329dc44c473931c65f10373281f730e",
341
- "signature": "06c004006016a51c4d1855527a523562c329dc44c473931c65f10373281f730e",
342
- "affectsGlobalScope": true
343
- },
344
- "../../../node_modules/@types/node/punycode.d.ts": {
345
- "version": "a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8",
346
- "signature": "a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8",
347
- "affectsGlobalScope": false
348
- },
349
- "../../../node_modules/@types/node/querystring.d.ts": {
350
- "version": "f4a3fc4efc6944e7b7bd4ccfa45e0df68b6359808e6cf9d061f04fd964a7b2d3",
351
- "signature": "f4a3fc4efc6944e7b7bd4ccfa45e0df68b6359808e6cf9d061f04fd964a7b2d3",
352
- "affectsGlobalScope": false
353
- },
354
- "../../../node_modules/@types/node/readline.d.ts": {
355
- "version": "73cad675aead7a2c05cf934e7e700c61d84b2037ac1d576c3f751199b25331da",
356
- "signature": "73cad675aead7a2c05cf934e7e700c61d84b2037ac1d576c3f751199b25331da",
357
- "affectsGlobalScope": false
358
- },
359
- "../../../node_modules/@types/node/repl.d.ts": {
360
- "version": "8c3137ba3583ec18484429ec1c8eff89efdc42730542f157b38b102fdccc0c71",
361
- "signature": "8c3137ba3583ec18484429ec1c8eff89efdc42730542f157b38b102fdccc0c71",
362
- "affectsGlobalScope": false
363
- },
364
- "../../../node_modules/@types/node/stream.d.ts": {
365
- "version": "d84300d886b45a198c346158e4ff7ae361cc7bc1c3deab44afb3db7de56b5d25",
366
- "signature": "d84300d886b45a198c346158e4ff7ae361cc7bc1c3deab44afb3db7de56b5d25",
367
- "affectsGlobalScope": false
368
- },
369
- "../../../node_modules/@types/node/string_decoder.d.ts": {
370
- "version": "94ca7beec4e274d32362b54e0133152f7b4be9487db7b005070c03880b6363aa",
371
- "signature": "94ca7beec4e274d32362b54e0133152f7b4be9487db7b005070c03880b6363aa",
372
- "affectsGlobalScope": false
373
- },
374
- "../../../node_modules/@types/node/timers.d.ts": {
375
- "version": "2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29",
376
- "signature": "2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29",
377
- "affectsGlobalScope": false
378
- },
379
- "../../../node_modules/@types/node/tls.d.ts": {
380
- "version": "bbf21f210782db4193359010a4710786add43e3b50aa42fc0d371f45b4e4d8d3",
381
- "signature": "bbf21f210782db4193359010a4710786add43e3b50aa42fc0d371f45b4e4d8d3",
382
- "affectsGlobalScope": false
383
- },
384
- "../../../node_modules/@types/node/trace_events.d.ts": {
385
- "version": "0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a",
386
- "signature": "0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a",
387
- "affectsGlobalScope": false
388
- },
389
- "../../../node_modules/@types/node/tty.d.ts": {
390
- "version": "3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837",
391
- "signature": "3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837",
392
- "affectsGlobalScope": false
393
- },
394
- "../../../node_modules/@types/node/url.d.ts": {
395
- "version": "631e96db896d645f7132c488ad34a16d71fd2be9f44696f8c98289ee1c8cbfa9",
396
- "signature": "631e96db896d645f7132c488ad34a16d71fd2be9f44696f8c98289ee1c8cbfa9",
397
- "affectsGlobalScope": false
398
- },
399
- "../../../node_modules/@types/node/util.d.ts": {
400
- "version": "2c77230d381cba81eb6f87cda2fbfff6c0427c6546c2e2590110effff37c58f7",
401
- "signature": "2c77230d381cba81eb6f87cda2fbfff6c0427c6546c2e2590110effff37c58f7",
402
- "affectsGlobalScope": false
403
- },
404
- "../../../node_modules/@types/node/v8.d.ts": {
405
- "version": "da86ee9a2f09a4583db1d5e37815894967e1f694ad9f3c25e84e0e4d40411e14",
406
- "signature": "da86ee9a2f09a4583db1d5e37815894967e1f694ad9f3c25e84e0e4d40411e14",
407
- "affectsGlobalScope": false
408
- },
409
- "../../../node_modules/@types/node/vm.d.ts": {
410
- "version": "9311a490af2c8590ecb1459efb3cf5faedc11a55e509de6dfaaa733925c88a01",
411
- "signature": "9311a490af2c8590ecb1459efb3cf5faedc11a55e509de6dfaaa733925c88a01",
412
- "affectsGlobalScope": false
413
- },
414
- "../../../node_modules/@types/node/worker_threads.d.ts": {
415
- "version": "ddc086b1adac44e2fccf55422da1e90fa970e659d77f99712422a421564b4877",
416
- "signature": "ddc086b1adac44e2fccf55422da1e90fa970e659d77f99712422a421564b4877",
417
- "affectsGlobalScope": false
418
- },
419
- "../../../node_modules/@types/node/zlib.d.ts": {
420
- "version": "515ef1d99036ff0dafa5bf738e02222edea94e0d97a0aa0ff277ac5e96b57977",
421
- "signature": "515ef1d99036ff0dafa5bf738e02222edea94e0d97a0aa0ff277ac5e96b57977",
422
- "affectsGlobalScope": false
423
- },
424
- "../../../node_modules/@types/node/ts3.4/base.d.ts": {
425
- "version": "d44028ae0127eb3e9fcfa5f55a8b81d64775ce15aca1020fe25c511bbb055834",
426
- "signature": "d44028ae0127eb3e9fcfa5f55a8b81d64775ce15aca1020fe25c511bbb055834",
427
- "affectsGlobalScope": false
428
- },
429
- "../../../node_modules/@types/node/globals.global.d.ts": {
430
- "version": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
431
- "signature": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
432
- "affectsGlobalScope": true
433
- },
434
- "../../../node_modules/@types/node/wasi.d.ts": {
435
- "version": "780058f4a804c8bdcdd2f60e7af64b2bc57d149c1586ee3db732a84d659a50bf",
436
- "signature": "780058f4a804c8bdcdd2f60e7af64b2bc57d149c1586ee3db732a84d659a50bf",
437
- "affectsGlobalScope": false
438
- },
439
- "../../../node_modules/@types/node/ts3.6/base.d.ts": {
440
- "version": "ad1ae5ae98eceb9af99061e83e867b9897d267aebc8f3b938c9424deabadf4bb",
441
- "signature": "ad1ae5ae98eceb9af99061e83e867b9897d267aebc8f3b938c9424deabadf4bb",
442
- "affectsGlobalScope": false
443
- },
444
- "../../../node_modules/@types/node/assert.d.ts": {
445
- "version": "19d580a3b42ad5caeaee266ae958260e23f2df0549ee201c886c8bd7a4f01d4e",
446
- "signature": "19d580a3b42ad5caeaee266ae958260e23f2df0549ee201c886c8bd7a4f01d4e",
447
- "affectsGlobalScope": false
448
- },
449
- "../../../node_modules/@types/node/base.d.ts": {
450
- "version": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b",
451
- "signature": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b",
452
- "affectsGlobalScope": false
453
- },
454
- "../../../node_modules/@types/node/index.d.ts": {
455
- "version": "744e6430bafc6f39f66c4fc1e6a0d8c9551260ffd1782aa7e3f5166ac6aa1f86",
456
- "signature": "744e6430bafc6f39f66c4fc1e6a0d8c9551260ffd1782aa7e3f5166ac6aa1f86",
457
- "affectsGlobalScope": false
458
- },
459
- "../../../node_modules/@types/fs-extra/index.d.ts": {
460
- "version": "8126afccdf4a55b90e010207e6fa74ea47dc0932b4d1347726b92502fe11a2e1",
461
- "signature": "8126afccdf4a55b90e010207e6fa74ea47dc0932b4d1347726b92502fe11a2e1",
462
- "affectsGlobalScope": false
463
- },
464
- "../src/codeTranslationsUtils.ts": {
465
- "version": "495fe5f9708b202b8e560f940f2f1e8057f0e272681f925feab943e60bdc0e6f",
466
- "signature": "98249526332851a623664fd515a293f50d680d4a86d633585ecb9168e67cd872",
467
- "affectsGlobalScope": false
468
- },
469
- "../src/escapePath.ts": {
470
- "version": "1bd09d372ed4aae2fdd29d4ffd9b525bc6e4646b957bf552fcd3e4800f332bc6",
471
- "signature": "c7642b1c7345e546c81831fe5fa9233e15a12fa2743f6685b0d700af8292cdd0",
472
- "affectsGlobalScope": false
473
- },
474
- "../../../node_modules/chalk/index.d.ts": {
475
- "version": "0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2",
476
- "signature": "0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2",
477
- "affectsGlobalScope": false
478
- },
479
- "../../../node_modules/@types/lodash/common/common.d.ts": {
480
- "version": "3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc",
481
- "signature": "3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc",
482
- "affectsGlobalScope": false
483
- },
484
- "../../../node_modules/@types/lodash/common/array.d.ts": {
485
- "version": "438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2",
486
- "signature": "438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2",
487
- "affectsGlobalScope": false
488
- },
489
- "../../../node_modules/@types/lodash/common/collection.d.ts": {
490
- "version": "0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8",
491
- "signature": "0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8",
492
- "affectsGlobalScope": false
493
- },
494
- "../../../node_modules/@types/lodash/common/date.d.ts": {
495
- "version": "187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42",
496
- "signature": "187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42",
497
- "affectsGlobalScope": false
498
- },
499
- "../../../node_modules/@types/lodash/common/function.d.ts": {
500
- "version": "c9f396e71966bd3a890d8a36a6a497dbf260e9b868158ea7824d4b5421210afe",
501
- "signature": "c9f396e71966bd3a890d8a36a6a497dbf260e9b868158ea7824d4b5421210afe",
502
- "affectsGlobalScope": false
503
- },
504
- "../../../node_modules/@types/lodash/common/lang.d.ts": {
505
- "version": "509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32",
506
- "signature": "509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32",
507
- "affectsGlobalScope": false
508
- },
509
- "../../../node_modules/@types/lodash/common/math.d.ts": {
510
- "version": "9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb",
511
- "signature": "9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb",
512
- "affectsGlobalScope": false
513
- },
514
- "../../../node_modules/@types/lodash/common/number.d.ts": {
515
- "version": "00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a",
516
- "signature": "00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a",
517
- "affectsGlobalScope": false
518
- },
519
- "../../../node_modules/@types/lodash/common/object.d.ts": {
520
- "version": "c311349ec71bb69399ffc4092853e7d8a86c1ca39ddb4cd129e775c19d985793",
521
- "signature": "c311349ec71bb69399ffc4092853e7d8a86c1ca39ddb4cd129e775c19d985793",
522
- "affectsGlobalScope": false
523
- },
524
- "../../../node_modules/@types/lodash/common/seq.d.ts": {
525
- "version": "3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd",
526
- "signature": "3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd",
527
- "affectsGlobalScope": false
528
- },
529
- "../../../node_modules/@types/lodash/common/string.d.ts": {
530
- "version": "4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a",
531
- "signature": "4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a",
532
- "affectsGlobalScope": false
533
- },
534
- "../../../node_modules/@types/lodash/common/util.d.ts": {
535
- "version": "2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",
536
- "signature": "2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",
537
- "affectsGlobalScope": false
538
- },
539
- "../../../node_modules/@types/lodash/index.d.ts": {
540
- "version": "0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8",
541
- "signature": "0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8",
542
- "affectsGlobalScope": true
543
- },
544
- "../node_modules/escape-string-regexp/index.d.ts": {
545
- "version": "a9fd76613c52aa62a036e7d85d6503601ac3aae1444f4765c738567e5f687f4f",
546
- "signature": "a9fd76613c52aa62a036e7d85d6503601ac3aae1444f4765c738567e5f687f4f",
547
- "affectsGlobalScope": false
548
- },
549
- "../../../node_modules/@types/estree/index.d.ts": {
550
- "version": "f1e8ecd1d960d12e57316fd2889b0a57635f38f8c4c976d8deafa29650bbf320",
551
- "signature": "f1e8ecd1d960d12e57316fd2889b0a57635f38f8c4c976d8deafa29650bbf320",
552
- "affectsGlobalScope": false
553
- },
554
- "../../../node_modules/@types/json-schema/index.d.ts": {
555
- "version": "b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024",
556
- "signature": "b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024",
557
- "affectsGlobalScope": false
558
- },
559
- "../../../node_modules/ajv/lib/ajv.d.ts": {
560
- "version": "67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba",
561
- "signature": "67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba",
562
- "affectsGlobalScope": false
563
- },
564
- "../../../node_modules/schema-utils/declarations/ValidationError.d.ts": {
565
- "version": "327f42ab31ff4539ba868d0374f8825af328b104b5f78d26b2e3ce9cc17b43a0",
566
- "signature": "327f42ab31ff4539ba868d0374f8825af328b104b5f78d26b2e3ce9cc17b43a0",
567
- "affectsGlobalScope": false
568
- },
569
- "../../../node_modules/schema-utils/declarations/validate.d.ts": {
570
- "version": "62a05210201c793349ec28254f06a01814c5b4f5591f6d1921941286db78ea2a",
571
- "signature": "62a05210201c793349ec28254f06a01814c5b4f5591f6d1921941286db78ea2a",
572
- "affectsGlobalScope": false
573
- },
574
- "../../../node_modules/schema-utils/declarations/index.d.ts": {
575
- "version": "8f877178233f74095130e129ce86128a6a15afcfc6171d714e154863b6a65fe8",
576
- "signature": "8f877178233f74095130e129ce86128a6a15afcfc6171d714e154863b6a65fe8",
577
- "affectsGlobalScope": false
578
- },
579
- "../../../node_modules/tapable/tapable.d.ts": {
580
- "version": "b395ec0779c66de885f97974534e95ee2c8bbf9acaf5857a6782ddc32972b6d8",
581
- "signature": "b395ec0779c66de885f97974534e95ee2c8bbf9acaf5857a6782ddc32972b6d8",
582
- "affectsGlobalScope": false
583
- },
584
- "../../../node_modules/webpack/types.d.ts": {
585
- "version": "938cfe3df10c48b87ce33e1e9cbc7ead3fa3889816896cfefa382efa2021503a",
586
- "signature": "938cfe3df10c48b87ce33e1e9cbc7ead3fa3889816896cfefa382efa2021503a",
587
- "affectsGlobalScope": false
588
- },
589
- "../../docusaurus-types/node_modules/commander/typings/index.d.ts": {
590
- "version": "c72b982add26c5ddf410899bcafe3f47253a5d274d4b93d2ef67850d4af4545b",
591
- "signature": "c72b982add26c5ddf410899bcafe3f47253a5d274d4b93d2ef67850d4af4545b",
592
- "affectsGlobalScope": false
593
- },
594
- "../../../node_modules/joi/lib/index.d.ts": {
595
- "version": "332bc92a89da24ef3a645208f2b3159292460a52fbe63c40eef64c2a63bb1e40",
596
- "signature": "332bc92a89da24ef3a645208f2b3159292460a52fbe63c40eef64c2a63bb1e40",
597
- "affectsGlobalScope": false
598
- },
599
- "../../docusaurus-types/src/index.d.ts": {
600
- "version": "7b28119522f3e2e1b0c253f1b917a404b7cc3e739909564b3d4a94321645533f",
601
- "signature": "7b28119522f3e2e1b0c253f1b917a404b7cc3e739909564b3d4a94321645533f",
602
- "affectsGlobalScope": false
603
- },
604
- "../src/posixPath.ts": {
605
- "version": "a5028e37a5e23e8185ca9d01f24e4058a0ff95ff0f28dfb030ef87c52e6659da",
606
- "signature": "0daf3165e72cc1ed5263a3374b98cb065f78922c76602477973ee0654b99df17",
607
- "affectsGlobalScope": false
608
- },
609
- "../../../node_modules/gray-matter/gray-matter.d.ts": {
610
- "version": "a52c5f687d788d283ea1fa38bdc2fabe0eac863135a7dfe175ec52b309f61892",
611
- "signature": "a52c5f687d788d283ea1fa38bdc2fabe0eac863135a7dfe175ec52b309f61892",
612
- "affectsGlobalScope": false
613
- },
614
- "../src/markdownParser.ts": {
615
- "version": "e573d2a3a824ad874c9123af3ca475886bc4feaad64bc41fee7690ec32eb343d",
616
- "signature": "55ce3401d8d7e20f1f653d5fbe59607ffb6c122ee8e4c4b04fdb87c20cbbd051",
617
- "affectsGlobalScope": false
618
- },
619
- "../src/markdownLinks.ts": {
620
- "version": "58f12408d6171b4aed96fd654f0f6c1c9e9713cb729f7141129fc1cdeb8fdd38",
621
- "signature": "4fae0cbdbb492b0fc847ec76d0a4af44eb04028200cec088d97fca05438213f1",
622
- "affectsGlobalScope": false
623
- },
624
- "../src/index.ts": {
625
- "version": "d53af994a7de31be9139aad932a7ae5d32951b1c3afc85d4bca6e6c740fa5824",
626
- "signature": "44ef99b28ff5298da90ca186b133767850777aa9ccf09c0ac0e7bb85ab15f6b4",
627
- "affectsGlobalScope": false
628
- },
629
- "../../../node_modules/@types/anymatch/index.d.ts": {
630
- "version": "48b52264fa193879a074197839dbb4796fa07e86350ff888e5361e06aa46df76",
631
- "signature": "48b52264fa193879a074197839dbb4796fa07e86350ff888e5361e06aa46df76",
632
- "affectsGlobalScope": false
633
- },
634
- "../../../node_modules/@babel/types/lib/index.d.ts": {
635
- "version": "7c6b4c3bbc2c3cebe5cc1364e84a4fd0cbda5fda186c0ba15c2f693f403479d2",
636
- "signature": "7c6b4c3bbc2c3cebe5cc1364e84a4fd0cbda5fda186c0ba15c2f693f403479d2",
637
- "affectsGlobalScope": false
638
- },
639
- "../../../node_modules/@types/babel__generator/index.d.ts": {
640
- "version": "b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e",
641
- "signature": "b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e",
642
- "affectsGlobalScope": false
643
- },
644
- "../../../node_modules/@types/babel__traverse/index.d.ts": {
645
- "version": "8a278bfba7b081cd849434c1130655046639ae90617a682436ed6954e2b57403",
646
- "signature": "8a278bfba7b081cd849434c1130655046639ae90617a682436ed6954e2b57403",
647
- "affectsGlobalScope": false
648
- },
649
- "../../../node_modules/@babel/parser/typings/babel-parser.d.ts": {
650
- "version": "6da9e714516d081abaa435946d77c8d74dba888530412dc71601e83d2c8a512e",
651
- "signature": "6da9e714516d081abaa435946d77c8d74dba888530412dc71601e83d2c8a512e",
652
- "affectsGlobalScope": false
653
- },
654
- "../../../node_modules/@types/babel__template/index.d.ts": {
655
- "version": "3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8",
656
- "signature": "3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8",
657
- "affectsGlobalScope": false
658
- },
659
- "../../../node_modules/@types/babel__core/index.d.ts": {
660
- "version": "a66e700ed470a0cb52d14f3376c1605c70fec8e9659e45f7e22ad07fcd06ae04",
661
- "signature": "a66e700ed470a0cb52d14f3376c1605c70fec8e9659e45f7e22ad07fcd06ae04",
662
- "affectsGlobalScope": false
663
- },
664
- "../../../node_modules/@types/connect/index.d.ts": {
665
- "version": "e6ffa74698f0a1d23e4223242ed7dcdb89d02bbbb063a1930e9f91d0385abe16",
666
- "signature": "e6ffa74698f0a1d23e4223242ed7dcdb89d02bbbb063a1930e9f91d0385abe16",
667
- "affectsGlobalScope": false
668
- },
669
- "../../../node_modules/@types/body-parser/index.d.ts": {
670
- "version": "ebddbd167c2fabd0151f50e5df94ca6d845149c47521280d8867afe3429dd078",
671
- "signature": "ebddbd167c2fabd0151f50e5df94ca6d845149c47521280d8867afe3429dd078",
672
- "affectsGlobalScope": false
673
- },
674
- "../../../node_modules/@types/cheerio/index.d.ts": {
675
- "version": "8cb3e05991fdf5bd43a6b96878595ca210d20f4c9e65efe382add4023a4fc658",
676
- "signature": "8cb3e05991fdf5bd43a6b96878595ca210d20f4c9e65efe382add4023a4fc658",
677
- "affectsGlobalScope": true
678
- },
679
- "../../../node_modules/@types/clean-css/index.d.ts": {
680
- "version": "4bfa64d72f076287ee5c40a3a91aa1ac2dc0b480cacc0f4fabdb3a2002d1ef67",
681
- "signature": "4bfa64d72f076287ee5c40a3a91aa1ac2dc0b480cacc0f4fabdb3a2002d1ef67",
682
- "affectsGlobalScope": false
683
- },
684
- "../../../node_modules/@types/color-name/index.d.ts": {
685
- "version": "f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",
686
- "signature": "f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",
687
- "affectsGlobalScope": false
688
- },
689
- "../../../node_modules/@types/color-convert/conversions.d.ts": {
690
- "version": "53a2be05c71e473e72bc3cde64083a914110ce2fe08afab0a4fa16059ad20b60",
691
- "signature": "53a2be05c71e473e72bc3cde64083a914110ce2fe08afab0a4fa16059ad20b60",
692
- "affectsGlobalScope": false
693
- },
694
- "../../../node_modules/@types/color-convert/route.d.ts": {
695
- "version": "6feb023c015c779052a59818c8793d7560efc24b0c9b2b11d205981884b43e9b",
696
- "signature": "6feb023c015c779052a59818c8793d7560efc24b0c9b2b11d205981884b43e9b",
697
- "affectsGlobalScope": false
698
- },
699
- "../../../node_modules/@types/color-convert/index.d.ts": {
700
- "version": "45f852cb5bdbafdff6cacc2208c1efda784cd8d29e08d8b3cbbccc4043c834cd",
701
- "signature": "45f852cb5bdbafdff6cacc2208c1efda784cd8d29e08d8b3cbbccc4043c834cd",
702
- "affectsGlobalScope": false
703
- },
704
- "../../../node_modules/@types/color/index.d.ts": {
705
- "version": "ac502bda446da2b897b8fb9373199f08e111a82c19ea0f9a1debf49ed34b6970",
706
- "signature": "ac502bda446da2b897b8fb9373199f08e111a82c19ea0f9a1debf49ed34b6970",
707
- "affectsGlobalScope": false
708
- },
709
- "../../../node_modules/@types/events/index.d.ts": {
710
- "version": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935",
711
- "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935",
712
- "affectsGlobalScope": false
713
- },
714
- "../../../node_modules/@types/range-parser/index.d.ts": {
715
- "version": "4e88b833be14c7f384e0dcd57bb30acd799e8e34d212635d693e41a75a71164b",
716
- "signature": "4e88b833be14c7f384e0dcd57bb30acd799e8e34d212635d693e41a75a71164b",
717
- "affectsGlobalScope": false
718
- },
719
- "../../../node_modules/@types/express-serve-static-core/index.d.ts": {
720
- "version": "f35ecc4d3a5fd9149f51819279641ecc77fd21d4603618df3b0fd591c83a73ea",
721
- "signature": "f35ecc4d3a5fd9149f51819279641ecc77fd21d4603618df3b0fd591c83a73ea",
722
- "affectsGlobalScope": true
723
- },
724
- "../../../node_modules/@types/connect-history-api-fallback/index.d.ts": {
725
- "version": "bbfbe0c906eaac5a661232c334955878c9ed1f14421694c5d6ba500b05040a37",
726
- "signature": "bbfbe0c906eaac5a661232c334955878c9ed1f14421694c5d6ba500b05040a37",
727
- "affectsGlobalScope": false
728
- },
729
- "../../../node_modules/source-map/source-map.d.ts": {
730
- "version": "2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579",
731
- "signature": "2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579",
732
- "affectsGlobalScope": false
733
- },
734
- "../../../node_modules/@types/cssnano/node_modules/postcss/lib/postcss.d.ts": {
735
- "version": "aec0cabbdfacf43db998d8e50ee6f1e72131d24b5018dfb84f14806717baa0a6",
736
- "signature": "aec0cabbdfacf43db998d8e50ee6f1e72131d24b5018dfb84f14806717baa0a6",
737
- "affectsGlobalScope": false
738
- },
739
- "../../../node_modules/@types/cssnano/index.d.ts": {
740
- "version": "ef36fa133bed82cf3d1262c0894a643532bca4a743bea90b537f643003880315",
741
- "signature": "ef36fa133bed82cf3d1262c0894a643532bca4a743bea90b537f643003880315",
742
- "affectsGlobalScope": false
743
- },
744
- "../../../node_modules/@types/decompress/index.d.ts": {
745
- "version": "fb32fb9b2a2c9cfccae34a6383834030ea9ebab2e46964ab6e876fe2b9ca2f42",
746
- "signature": "fb32fb9b2a2c9cfccae34a6383834030ea9ebab2e46964ab6e876fe2b9ca2f42",
747
- "affectsGlobalScope": false
748
- },
749
- "../../../node_modules/@types/dedent/index.d.ts": {
750
- "version": "70646d9cb37b62611766d18a9bcca6cbf28ca9aec33a66244e974056ab1193f6",
751
- "signature": "70646d9cb37b62611766d18a9bcca6cbf28ca9aec33a66244e974056ab1193f6",
752
- "affectsGlobalScope": false
753
- },
754
- "../../../node_modules/@types/detect-port/index.d.ts": {
755
- "version": "032d6a55e0d1b473bf06cc9f30cfa6313bc57202bc5aacf8077022c4a27ff7d6",
756
- "signature": "032d6a55e0d1b473bf06cc9f30cfa6313bc57202bc5aacf8077022c4a27ff7d6",
757
- "affectsGlobalScope": false
758
- },
759
- "../../../node_modules/@types/got/index.d.ts": {
760
- "version": "ff27d48b9c7f85c9d38cb13fce5886bad9a30846aedb5f54759eee58391a79e1",
761
- "signature": "ff27d48b9c7f85c9d38cb13fce5886bad9a30846aedb5f54759eee58391a79e1",
762
- "affectsGlobalScope": false
763
- },
764
- "../../../node_modules/@types/download/index.d.ts": {
765
- "version": "912989089693cac2ce78c83289b98d5d9be6d399009c5d2e06ad3edf50e7b335",
766
- "signature": "912989089693cac2ce78c83289b98d5d9be6d399009c5d2e06ad3edf50e7b335",
767
- "affectsGlobalScope": false
768
- },
769
- "../../../node_modules/@types/eslint/ts3.1/helpers.d.ts": {
770
- "version": "c78a4fca6089b8b43293fd58f7a8182e3c09481ef42ce90cb907e13a95e38738",
771
- "signature": "c78a4fca6089b8b43293fd58f7a8182e3c09481ef42ce90cb907e13a95e38738",
772
- "affectsGlobalScope": true
773
- },
774
- "../../../node_modules/@types/eslint/ts3.1/index.d.ts": {
775
- "version": "738bc913a612feab35b92facba54c7ad0192ed8edf897bb640af203baaf0de53",
776
- "signature": "738bc913a612feab35b92facba54c7ad0192ed8edf897bb640af203baaf0de53",
777
- "affectsGlobalScope": false
778
- },
779
- "../../../node_modules/@types/eslint-scope/index.d.ts": {
780
- "version": "274bda283ef15f4205603ca9967313fc013aa77ae89f2cbeab5fbd51439e96ed",
781
- "signature": "274bda283ef15f4205603ca9967313fc013aa77ae89f2cbeab5fbd51439e96ed",
782
- "affectsGlobalScope": false
783
- },
784
- "../../../node_modules/@types/mime/index.d.ts": {
785
- "version": "be27a64e821a3e5af838650e4aa25805c60f057d0c37a9762c378d19d364b3e6",
786
- "signature": "be27a64e821a3e5af838650e4aa25805c60f057d0c37a9762c378d19d364b3e6",
787
- "affectsGlobalScope": false
788
- },
789
- "../../../node_modules/@types/serve-static/index.d.ts": {
790
- "version": "cdbae5083ef8f786069519405ca1f1e2ce72b9efebdf5e1931584fba747f3bc0",
791
- "signature": "cdbae5083ef8f786069519405ca1f1e2ce72b9efebdf5e1931584fba747f3bc0",
792
- "affectsGlobalScope": false
793
- },
794
- "../../../node_modules/@types/qs/index.d.ts": {
795
- "version": "7bc3168fdda8512614c9b6627fbd356043e61070639879cf23d102265259730c",
796
- "signature": "7bc3168fdda8512614c9b6627fbd356043e61070639879cf23d102265259730c",
797
- "affectsGlobalScope": false
798
- },
799
- "../../../node_modules/@types/express/index.d.ts": {
800
- "version": "69a75b67f56862574404368dc3be451749291d6b6f6890409551fce81908beee",
801
- "signature": "69a75b67f56862574404368dc3be451749291d6b6f6890409551fce81908beee",
802
- "affectsGlobalScope": false
803
- },
804
- "../../../node_modules/@types/github-slugger/index.d.ts": {
805
- "version": "78a1efd7214a25b84e08af80fe2b027c3049e52b26dfcaf777b82c759d8548c9",
806
- "signature": "78a1efd7214a25b84e08af80fe2b027c3049e52b26dfcaf777b82c759d8548c9",
807
- "affectsGlobalScope": false
808
- },
809
- "../../../node_modules/@types/minimatch/index.d.ts": {
810
- "version": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633",
811
- "signature": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633",
812
- "affectsGlobalScope": false
813
- },
814
- "../../../node_modules/@types/glob/index.d.ts": {
815
- "version": "d852d6282c8dc8156d26d6bda83ab4bde51fee05ba2fe0ecdc165ddda009d3ee",
816
- "signature": "d852d6282c8dc8156d26d6bda83ab4bde51fee05ba2fe0ecdc165ddda009d3ee",
817
- "affectsGlobalScope": false
818
- },
819
- "../../../node_modules/@types/graceful-fs/index.d.ts": {
820
- "version": "3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba",
821
- "signature": "3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba",
822
- "affectsGlobalScope": false
823
- },
824
- "../../../node_modules/@types/unist/index.d.ts": {
825
- "version": "1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0",
826
- "signature": "1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0",
827
- "affectsGlobalScope": false
828
- },
829
- "../../../node_modules/@types/hast/index.d.ts": {
830
- "version": "b6e83cdeca61289e5ffd770e55ed035babdffadd87d1ffa42b03e9fe8411333f",
831
- "signature": "b6e83cdeca61289e5ffd770e55ed035babdffadd87d1ffa42b03e9fe8411333f",
832
- "affectsGlobalScope": false
833
- },
834
- "../../../node_modules/@types/history/DOMUtils.d.ts": {
835
- "version": "271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63",
836
- "signature": "271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63",
837
- "affectsGlobalScope": true
838
- },
839
- "../../../node_modules/@types/history/createBrowserHistory.d.ts": {
840
- "version": "c6f2572e21f626260d2e4a65e4e1e42b9b273b6f43b5c3bc115c2926417d3eca",
841
- "signature": "c6f2572e21f626260d2e4a65e4e1e42b9b273b6f43b5c3bc115c2926417d3eca",
842
- "affectsGlobalScope": false
843
- },
844
- "../../../node_modules/@types/history/createHashHistory.d.ts": {
845
- "version": "374ab77e05e0bf5a52acad6d65121d4bd31068108f23d70186dba5fcd7d6a1a3",
846
- "signature": "374ab77e05e0bf5a52acad6d65121d4bd31068108f23d70186dba5fcd7d6a1a3",
847
- "affectsGlobalScope": false
848
- },
849
- "../../../node_modules/@types/history/createMemoryHistory.d.ts": {
850
- "version": "a4ecd4bb653aa71093375845fba6250ca0f3c633d0e933fc9bf4b301834eab27",
851
- "signature": "a4ecd4bb653aa71093375845fba6250ca0f3c633d0e933fc9bf4b301834eab27",
852
- "affectsGlobalScope": false
853
- },
854
- "../../../node_modules/@types/history/LocationUtils.d.ts": {
855
- "version": "25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404",
856
- "signature": "25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404",
857
- "affectsGlobalScope": false
858
- },
859
- "../../../node_modules/@types/history/PathUtils.d.ts": {
860
- "version": "4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243",
861
- "signature": "4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243",
862
- "affectsGlobalScope": false
863
- },
864
- "../../../node_modules/@types/history/index.d.ts": {
865
- "version": "ab27d32f93437766691266e8c70bd52792bdff78dbeef5fb3695e9a4de94e118",
866
- "signature": "ab27d32f93437766691266e8c70bd52792bdff78dbeef5fb3695e9a4de94e118",
867
- "affectsGlobalScope": false
868
- },
869
- "../../../node_modules/@types/uglify-js/index.d.ts": {
870
- "version": "2cb1b20224643ab9142b43483b7f006a3c1a4c6d94f5a06eb4703bfb65aa4d3a",
871
- "signature": "2cb1b20224643ab9142b43483b7f006a3c1a4c6d94f5a06eb4703bfb65aa4d3a",
872
- "affectsGlobalScope": false
873
- },
874
- "../../../node_modules/@types/relateurl/index.d.ts": {
875
- "version": "a523644fe1d30f36465118be107642c78c36afe0d885f93eae399b3c44dc8fe9",
876
- "signature": "a523644fe1d30f36465118be107642c78c36afe0d885f93eae399b3c44dc8fe9",
877
- "affectsGlobalScope": false
878
- },
879
- "../../../node_modules/@types/html-minifier/index.d.ts": {
880
- "version": "3f6bff86e78e065dad71ca8e395824703f56977f7309139127e58718d7915410",
881
- "signature": "3f6bff86e78e065dad71ca8e395824703f56977f7309139127e58718d7915410",
882
- "affectsGlobalScope": false
883
- },
884
- "../../../node_modules/@types/html-minifier-terser/index.d.ts": {
885
- "version": "dccdf2445076b563368dd28126ab5c625d184acce1c78de360b66e83789fe3c6",
886
- "signature": "dccdf2445076b563368dd28126ab5c625d184acce1c78de360b66e83789fe3c6",
887
- "affectsGlobalScope": false
888
- },
889
- "../../../node_modules/@types/html-webpack-plugin/index.d.ts": {
890
- "version": "ae9fc7046429c372bd9d89ee3b0f26f05a4463b73ca5d4c9434f6af95717a6a1",
891
- "signature": "ae9fc7046429c372bd9d89ee3b0f26f05a4463b73ca5d4c9434f6af95717a6a1",
892
- "affectsGlobalScope": false
893
- },
894
- "../../../node_modules/@types/http-proxy/index.d.ts": {
895
- "version": "15e05617b8bcc6dd4cb71a716ffa0d7d0a868ac62d7b14d44cb131e1285a5ae4",
896
- "signature": "15e05617b8bcc6dd4cb71a716ffa0d7d0a868ac62d7b14d44cb131e1285a5ae4",
897
- "affectsGlobalScope": false
898
- },
899
- "../../../node_modules/@types/http-proxy-middleware/index.d.ts": {
900
- "version": "48898ae92f69da7c502d7484944ecd545ee8aa74d11402a69fec0dc4bd375014",
901
- "signature": "48898ae92f69da7c502d7484944ecd545ee8aa74d11402a69fec0dc4bd375014",
902
- "affectsGlobalScope": false
903
- },
904
- "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts": {
905
- "version": "9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd",
906
- "signature": "9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd",
907
- "affectsGlobalScope": false
908
- },
909
- "../../../node_modules/@types/istanbul-lib-report/index.d.ts": {
910
- "version": "7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee",
911
- "signature": "7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee",
912
- "affectsGlobalScope": false
913
- },
914
- "../../../node_modules/@types/istanbul-reports/index.d.ts": {
915
- "version": "905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab",
916
- "signature": "905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab",
917
- "affectsGlobalScope": false
918
- },
919
- "../../../node_modules/jest-diff/build/cleanupSemantic.d.ts": {
920
- "version": "d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322",
921
- "signature": "d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322",
922
- "affectsGlobalScope": false
923
- },
924
- "../../../node_modules/jest-diff/build/types.d.ts": {
925
- "version": "69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2",
926
- "signature": "69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2",
927
- "affectsGlobalScope": false
928
- },
929
- "../../../node_modules/jest-diff/build/diffLines.d.ts": {
930
- "version": "561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9",
931
- "signature": "561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9",
932
- "affectsGlobalScope": false
933
- },
934
- "../../../node_modules/jest-diff/build/printDiffs.d.ts": {
935
- "version": "62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f",
936
- "signature": "62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f",
937
- "affectsGlobalScope": false
938
- },
939
- "../../../node_modules/jest-diff/build/index.d.ts": {
940
- "version": "b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc",
941
- "signature": "b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc",
942
- "affectsGlobalScope": false
943
- },
944
- "../../../node_modules/pretty-format/build/types.d.ts": {
945
- "version": "5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09",
946
- "signature": "5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09",
947
- "affectsGlobalScope": false
948
- },
949
- "../../../node_modules/pretty-format/build/index.d.ts": {
950
- "version": "02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",
951
- "signature": "02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",
952
- "affectsGlobalScope": false
953
- },
954
- "../../../node_modules/@types/jest/index.d.ts": {
955
- "version": "71f30fba971582dc744373cbc8b06c1eb64dc24a6ccbc9b457f94fb68c67cb4e",
956
- "signature": "71f30fba971582dc744373cbc8b06c1eb64dc24a6ccbc9b457f94fb68c67cb4e",
957
- "affectsGlobalScope": true
958
- },
959
- "../../../node_modules/@types/js-yaml/index.d.ts": {
960
- "version": "914dc265139513b2a984498b0c969c177493cc7ae436375dbc102307a7f8ab07",
961
- "signature": "914dc265139513b2a984498b0c969c177493cc7ae436375dbc102307a7f8ab07",
962
- "affectsGlobalScope": false
963
- },
964
- "../../../node_modules/ast-types/types.d.ts": {
965
- "version": "cc2dc362fc50995684e9f7e9b38ad9bdf19e74919294a694cbc05392352cad7d",
966
- "signature": "cc2dc362fc50995684e9f7e9b38ad9bdf19e74919294a694cbc05392352cad7d",
967
- "affectsGlobalScope": false
968
- },
969
- "../../../node_modules/ast-types/gen/kinds.d.ts": {
970
- "version": "e07b482ad35f73ea26312cb5bfbc735cfd2c68808e70634d32a43f8b53033a11",
971
- "signature": "e07b482ad35f73ea26312cb5bfbc735cfd2c68808e70634d32a43f8b53033a11",
972
- "affectsGlobalScope": false
973
- },
974
- "../../../node_modules/ast-types/gen/nodes.d.ts": {
975
- "version": "494d475b36a458bbfdcf60f54abaf2084a3840ff38fe5dcf8e3e8d405edc7938",
976
- "signature": "494d475b36a458bbfdcf60f54abaf2084a3840ff38fe5dcf8e3e8d405edc7938",
977
- "affectsGlobalScope": false
978
- },
979
- "../../../node_modules/ast-types/lib/types.d.ts": {
980
- "version": "55194e5c1f7fdd2a209da42b0b481c556bae31b20675fa7e7fbd7f49a6c40d57",
981
- "signature": "55194e5c1f7fdd2a209da42b0b481c556bae31b20675fa7e7fbd7f49a6c40d57",
982
- "affectsGlobalScope": false
983
- },
984
- "../../../node_modules/ast-types/lib/path.d.ts": {
985
- "version": "8cd7362102d928e21b291a013f80fc68a038d4506d26ea9948c676e3fa1110d9",
986
- "signature": "8cd7362102d928e21b291a013f80fc68a038d4506d26ea9948c676e3fa1110d9",
987
- "affectsGlobalScope": false
988
- },
989
- "../../../node_modules/ast-types/lib/scope.d.ts": {
990
- "version": "90f6830fb380f4d2b69df018343ae80ce92991e85a0d7be8d214c643b39d1175",
991
- "signature": "90f6830fb380f4d2b69df018343ae80ce92991e85a0d7be8d214c643b39d1175",
992
- "affectsGlobalScope": false
993
- },
994
- "../../../node_modules/ast-types/lib/node-path.d.ts": {
995
- "version": "1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b",
996
- "signature": "1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b",
997
- "affectsGlobalScope": false
998
- },
999
- "../../../node_modules/ast-types/lib/path-visitor.d.ts": {
1000
- "version": "009e40fab9efa56ae3f540ff7a18cbeae6b4140647a040681c524bf19f52995e",
1001
- "signature": "009e40fab9efa56ae3f540ff7a18cbeae6b4140647a040681c524bf19f52995e",
1002
- "affectsGlobalScope": false
1003
- },
1004
- "../../../node_modules/ast-types/fork.d.ts": {
1005
- "version": "0e7fbd72cba67a53642362282ec001d495fbb7ad575f47ba5ffa19006f124d60",
1006
- "signature": "0e7fbd72cba67a53642362282ec001d495fbb7ad575f47ba5ffa19006f124d60",
1007
- "affectsGlobalScope": false
1008
- },
1009
- "../../../node_modules/ast-types/gen/namedTypes.d.ts": {
1010
- "version": "24cf966363ab1b0200b7a720f9ae1f2efb5e2f9bd4a3c1f13482cd0456745f90",
1011
- "signature": "24cf966363ab1b0200b7a720f9ae1f2efb5e2f9bd4a3c1f13482cd0456745f90",
1012
- "affectsGlobalScope": false
1013
- },
1014
- "../../../node_modules/ast-types/gen/builders.d.ts": {
1015
- "version": "35acd8ffbb879ea4447df8fc7b422ed8af7dceec6036562eb2825eeea89222b1",
1016
- "signature": "35acd8ffbb879ea4447df8fc7b422ed8af7dceec6036562eb2825eeea89222b1",
1017
- "affectsGlobalScope": false
1018
- },
1019
- "../../../node_modules/ast-types/gen/visitor.d.ts": {
1020
- "version": "262810de652d20b24b0e9872e33941972735c8c0a2bd794c361038f823dd7ecb",
1021
- "signature": "262810de652d20b24b0e9872e33941972735c8c0a2bd794c361038f823dd7ecb",
1022
- "affectsGlobalScope": false
1023
- },
1024
- "../../../node_modules/ast-types/main.d.ts": {
1025
- "version": "7bfe977bcf0f5fab4d0b2820af80cebf4765b77658cc238903f82873ea813e12",
1026
- "signature": "7bfe977bcf0f5fab4d0b2820af80cebf4765b77658cc238903f82873ea813e12",
1027
- "affectsGlobalScope": false
1028
- },
1029
- "../../../node_modules/recast/lib/types.d.ts": {
1030
- "version": "8648c31510a3a81275736733ec1a4562a012e4e1a0f5fea9d47a8ed30dc4280c",
1031
- "signature": "8648c31510a3a81275736733ec1a4562a012e4e1a0f5fea9d47a8ed30dc4280c",
1032
- "affectsGlobalScope": false
1033
- },
1034
- "../../../node_modules/recast/lib/options.d.ts": {
1035
- "version": "aad8c703de79100c97d6d6d753e6c3e5c355d8024f7c80e0275b3973208b9dd3",
1036
- "signature": "aad8c703de79100c97d6d6d753e6c3e5c355d8024f7c80e0275b3973208b9dd3",
1037
- "affectsGlobalScope": false
1038
- },
1039
- "../../../node_modules/recast/lib/parser.d.ts": {
1040
- "version": "e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362",
1041
- "signature": "e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362",
1042
- "affectsGlobalScope": false
1043
- },
1044
- "../../../node_modules/recast/lib/printer.d.ts": {
1045
- "version": "28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463",
1046
- "signature": "28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463",
1047
- "affectsGlobalScope": false
1048
- },
1049
- "../../../node_modules/recast/main.d.ts": {
1050
- "version": "b114b49f7cc89ed20375ec8f070ceed9748d022d9a6f94894f247c5e8182ccc7",
1051
- "signature": "b114b49f7cc89ed20375ec8f070ceed9748d022d9a6f94894f247c5e8182ccc7",
1052
- "affectsGlobalScope": false
1053
- },
1054
- "../../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts": {
1055
- "version": "187b38d2397b9ab2a459042295b6ae463d369ae1786f23abf6f58d925905ee09",
1056
- "signature": "187b38d2397b9ab2a459042295b6ae463d369ae1786f23abf6f58d925905ee09",
1057
- "affectsGlobalScope": false
1058
- },
1059
- "../../../node_modules/@types/jscodeshift/src/collections/Node.d.ts": {
1060
- "version": "68a982b9899e9df6bc37b62a57fdeac0b197d9f252a2386589a28ffc0e316503",
1061
- "signature": "68a982b9899e9df6bc37b62a57fdeac0b197d9f252a2386589a28ffc0e316503",
1062
- "affectsGlobalScope": false
1063
- },
1064
- "../../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts": {
1065
- "version": "63326d4f23f82d250abe61157183fd0d0612f00540d27681ef6458e60850c315",
1066
- "signature": "63326d4f23f82d250abe61157183fd0d0612f00540d27681ef6458e60850c315",
1067
- "affectsGlobalScope": false
1068
- },
1069
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts": {
1070
- "version": "19f9e754bda221cc851c07454f43ae28d0faeb48fb17ef48802f022297603ed6",
1071
- "signature": "19f9e754bda221cc851c07454f43ae28d0faeb48fb17ef48802f022297603ed6",
1072
- "affectsGlobalScope": false
1073
- },
1074
- "../../../node_modules/@types/jscodeshift/src/template.d.ts": {
1075
- "version": "f5173cf4e2ae28cacdd974951e64e7e7476cecec52be1b218d309cc10b580436",
1076
- "signature": "f5173cf4e2ae28cacdd974951e64e7e7476cecec52be1b218d309cc10b580436",
1077
- "affectsGlobalScope": false
1078
- },
1079
- "../../../node_modules/@types/jscodeshift/src/core.d.ts": {
1080
- "version": "11ed7c224e75ed15bed3afb5a2c61c279d560a20fdf94d59644397cbcb5877d4",
1081
- "signature": "11ed7c224e75ed15bed3afb5a2c61c279d560a20fdf94d59644397cbcb5877d4",
1082
- "affectsGlobalScope": false
1083
- },
1084
- "../../../node_modules/@types/jscodeshift/index.d.ts": {
1085
- "version": "8faaa860d85e112c2898437d958f8f07cb847e53db3018c719ef4d0c2227f77b",
1086
- "signature": "8faaa860d85e112c2898437d958f8f07cb847e53db3018c719ef4d0c2227f77b",
1087
- "affectsGlobalScope": false
1088
- },
1089
- "../../../node_modules/@types/json5/index.d.ts": {
1090
- "version": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",
1091
- "signature": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",
1092
- "affectsGlobalScope": false
1093
- },
1094
- "../../../node_modules/@types/katex/contrib/auto-render.d.ts": {
1095
- "version": "a93bbe06d20763f821db7b671ba9efbf4b602fb4cd612ae9d40f01a30f62966c",
1096
- "signature": "a93bbe06d20763f821db7b671ba9efbf4b602fb4cd612ae9d40f01a30f62966c",
1097
- "affectsGlobalScope": false
1098
- },
1099
- "../../../node_modules/@types/katex/contrib/katex2tex.d.ts": {
1100
- "version": "1ced83d3606cfe4a0d2d98c24873b4147ac4c1b9beacb1d1dd0d8bacd3a00220",
1101
- "signature": "1ced83d3606cfe4a0d2d98c24873b4147ac4c1b9beacb1d1dd0d8bacd3a00220",
1102
- "affectsGlobalScope": false
1103
- },
1104
- "../../../node_modules/@types/katex/contrib/index.d.ts": {
1105
- "version": "42c7f325d2075cf80f65ef6225692605b6516602209175d29281c7a53838d28f",
1106
- "signature": "42c7f325d2075cf80f65ef6225692605b6516602209175d29281c7a53838d28f",
1107
- "affectsGlobalScope": false
1108
- },
1109
- "../../../node_modules/@types/katex/index.d.ts": {
1110
- "version": "451a3f75d74f7b130a0e28dc77f21b7d79b99381ebae3f0d849905c5ab33872e",
1111
- "signature": "451a3f75d74f7b130a0e28dc77f21b7d79b99381ebae3f0d849905c5ab33872e",
1112
- "affectsGlobalScope": false
1113
- },
1114
- "../../../node_modules/@types/loader-utils/index.d.ts": {
1115
- "version": "fbd29ea9dd64c69ded0284cb1307557e8f7bf6265ce2bf1faa3840ffed2d38ac",
1116
- "signature": "fbd29ea9dd64c69ded0284cb1307557e8f7bf6265ce2bf1faa3840ffed2d38ac",
1117
- "affectsGlobalScope": false
1118
- },
1119
- "../../../node_modules/@types/mdast/index.d.ts": {
1120
- "version": "9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76",
1121
- "signature": "9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76",
1122
- "affectsGlobalScope": false
1123
- },
1124
- "../../../node_modules/@types/minimist/index.d.ts": {
1125
- "version": "3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e",
1126
- "signature": "3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e",
1127
- "affectsGlobalScope": false
1128
- },
1129
- "../../../node_modules/@types/mkdirp/index.d.ts": {
1130
- "version": "6396a7a06f3ef0fc31a7c89330e015146b78a2256b030c698b6d404594c37b8f",
1131
- "signature": "6396a7a06f3ef0fc31a7c89330e015146b78a2256b030c698b6d404594c37b8f",
1132
- "affectsGlobalScope": false
1133
- },
1134
- "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts": {
1135
- "version": "cbb7029e32a6a72178cda8baa9129b1ee6d1d779a35e46c780e38b4909d42a89",
1136
- "signature": "cbb7029e32a6a72178cda8baa9129b1ee6d1d779a35e46c780e38b4909d42a89",
1137
- "affectsGlobalScope": false
1138
- },
1139
- "../../../node_modules/@types/node-fetch/externals.d.ts": {
1140
- "version": "972f1e91dab93b182624a17eeed02f683b8cb3fefbda7b689cc84570029d5f73",
1141
- "signature": "972f1e91dab93b182624a17eeed02f683b8cb3fefbda7b689cc84570029d5f73",
1142
- "affectsGlobalScope": false
1143
- },
1144
- "../../../node_modules/@types/node-fetch/index.d.ts": {
1145
- "version": "f51382950fa81e3a54e9fd9f343fe583cfbb221f15a51936e12411699347effe",
1146
- "signature": "f51382950fa81e3a54e9fd9f343fe583cfbb221f15a51936e12411699347effe",
1147
- "affectsGlobalScope": false
1148
- },
1149
- "../../../node_modules/@types/normalize-package-data/index.d.ts": {
1150
- "version": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613",
1151
- "signature": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613",
1152
- "affectsGlobalScope": false
1153
- },
1154
- "../../../node_modules/@types/nprogress/index.d.ts": {
1155
- "version": "3c17de487f67fd2ce7a70090b19e791b0388ed9cb60cdbdc7a49277094ffc413",
1156
- "signature": "3c17de487f67fd2ce7a70090b19e791b0388ed9cb60cdbdc7a49277094ffc413",
1157
- "affectsGlobalScope": false
1158
- },
1159
- "../../../node_modules/@types/parse-json/index.d.ts": {
1160
- "version": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
1161
- "signature": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
1162
- "affectsGlobalScope": false
1163
- },
1164
- "../../../node_modules/@types/parse5/index.d.ts": {
1165
- "version": "c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26",
1166
- "signature": "c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26",
1167
- "affectsGlobalScope": false
1168
- },
1169
- "../../../node_modules/@types/picomatch/parse.d.ts": {
1170
- "version": "5584625db3efba4676489babcea1571f537559d80aa39da9aae4c5965657766a",
1171
- "signature": "5584625db3efba4676489babcea1571f537559d80aa39da9aae4c5965657766a",
1172
- "affectsGlobalScope": false
1173
- },
1174
- "../../../node_modules/@types/picomatch/constants.d.ts": {
1175
- "version": "c0ad01cd660e5b8478c46ba9eda9bb60057de0744b3436fab3ce1ab764109da9",
1176
- "signature": "c0ad01cd660e5b8478c46ba9eda9bb60057de0744b3436fab3ce1ab764109da9",
1177
- "affectsGlobalScope": false
1178
- },
1179
- "../../../node_modules/@types/picomatch/index.d.ts": {
1180
- "version": "39352f2e555338f98ec13e2f19fe1abc19dffc1e500462051f7a030e2f1394ad",
1181
- "signature": "39352f2e555338f98ec13e2f19fe1abc19dffc1e500462051f7a030e2f1394ad",
1182
- "affectsGlobalScope": false
1183
- },
1184
- "../../../node_modules/@types/prettier/index.d.ts": {
1185
- "version": "d065397724b88df62e79aa428d0844e94d90c8754608dfee0685dcdbbe7b25d9",
1186
- "signature": "d065397724b88df62e79aa428d0844e94d90c8754608dfee0685dcdbbe7b25d9",
1187
- "affectsGlobalScope": false
1188
- },
1189
- "../../../node_modules/@types/prismjs/index.d.ts": {
1190
- "version": "227d2c6915b35e061099f424df6288fba72e995f2086d1aafaa5aa4101f0342f",
1191
- "signature": "227d2c6915b35e061099f424df6288fba72e995f2086d1aafaa5aa4101f0342f",
1192
- "affectsGlobalScope": false
1193
- },
1194
- "../../../node_modules/@types/prompts/index.d.ts": {
1195
- "version": "4c7700a78f17384415f82bbbcddd37581c3cf9b272dac2896c5d2498f1d73431",
1196
- "signature": "4c7700a78f17384415f82bbbcddd37581c3cf9b272dac2896c5d2498f1d73431",
1197
- "affectsGlobalScope": false
1198
- },
1199
- "../../../node_modules/@types/prop-types/index.d.ts": {
1200
- "version": "a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",
1201
- "signature": "a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",
1202
- "affectsGlobalScope": false
1203
- },
1204
- "../../../node_modules/@types/q/index.d.ts": {
1205
- "version": "57427a9a368f8f0ee4ce03c36a762e19166756b95ab688948b29be553b24a78a",
1206
- "signature": "57427a9a368f8f0ee4ce03c36a762e19166756b95ab688948b29be553b24a78a",
1207
- "affectsGlobalScope": false
1208
- },
1209
- "../../../node_modules/@types/react/global.d.ts": {
1210
- "version": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
1211
- "signature": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
1212
- "affectsGlobalScope": true
1213
- },
1214
- "../../../node_modules/csstype/index.d.ts": {
1215
- "version": "b3a4ee9791cdd4f5029b3ffe60b9cae1ac308a4238b0444f40a5222e4ecc5cc1",
1216
- "signature": "b3a4ee9791cdd4f5029b3ffe60b9cae1ac308a4238b0444f40a5222e4ecc5cc1",
1217
- "affectsGlobalScope": false
1218
- },
1219
- "../../../node_modules/@types/react/index.d.ts": {
1220
- "version": "9692a141afe8f30a5542189ffceb1a043f3d1fbaf0e07d28a8e9ac6d32c4cb01",
1221
- "signature": "9692a141afe8f30a5542189ffceb1a043f3d1fbaf0e07d28a8e9ac6d32c4cb01",
1222
- "affectsGlobalScope": true
1223
- },
1224
- "../../../node_modules/@types/react-dev-utils/index.d.ts": {
1225
- "version": "b8a3f8e93185ef45981f3e22e3c9555d8ce09bf5b6786da52f46173a4153ea63",
1226
- "signature": "b8a3f8e93185ef45981f3e22e3c9555d8ce09bf5b6786da52f46173a4153ea63",
1227
- "affectsGlobalScope": false
1228
- },
1229
- "../../../node_modules/@types/react-helmet/index.d.ts": {
1230
- "version": "65c8464d522217dd6a443a7cb5e9bc06b6a268f4657a930e345471fa204659a3",
1231
- "signature": "65c8464d522217dd6a443a7cb5e9bc06b6a268f4657a930e345471fa204659a3",
1232
- "affectsGlobalScope": false
1233
- },
1234
- "../../../node_modules/@types/react-loadable/index.d.ts": {
1235
- "version": "ac33d4a9770d0c2ee32543829ecf5ad5c3b1cf304fe08c0ab27db7971d566354",
1236
- "signature": "ac33d4a9770d0c2ee32543829ecf5ad5c3b1cf304fe08c0ab27db7971d566354",
1237
- "affectsGlobalScope": true
1238
- },
1239
- "../../../node_modules/@types/react-router/index.d.ts": {
1240
- "version": "9a984daaf48af213ba1f53f6425155ce1df012978d5e2e22e6e02b1c1bcaa939",
1241
- "signature": "9a984daaf48af213ba1f53f6425155ce1df012978d5e2e22e6e02b1c1bcaa939",
1242
- "affectsGlobalScope": false
1243
- },
1244
- "../../../node_modules/@types/react-router-config/index.d.ts": {
1245
- "version": "d4eeffab023f619ebaeeca01570c026eed02256061973bef5546a6c779552818",
1246
- "signature": "d4eeffab023f619ebaeeca01570c026eed02256061973bef5546a6c779552818",
1247
- "affectsGlobalScope": false
1248
- },
1249
- "../../../node_modules/@types/react-router-dom/index.d.ts": {
1250
- "version": "5859c951fdc2f03f96a25661b33eec6c3747b461dc9331bb1096690a8924edc5",
1251
- "signature": "5859c951fdc2f03f96a25661b33eec6c3747b461dc9331bb1096690a8924edc5",
1252
- "affectsGlobalScope": false
1253
- },
1254
- "../../../node_modules/@types/resolve/index.d.ts": {
1255
- "version": "8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede",
1256
- "signature": "8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede",
1257
- "affectsGlobalScope": false
1258
- },
1259
- "../../../node_modules/@types/sax/index.d.ts": {
1260
- "version": "c17785a46d81d27213ae62b86d6dc0e87e230106e9a57dbfb815d3bea978a6a5",
1261
- "signature": "c17785a46d81d27213ae62b86d6dc0e87e230106e9a57dbfb815d3bea978a6a5",
1262
- "affectsGlobalScope": false
1263
- },
1264
- "../../../node_modules/@types/semver/classes/semver.d.ts": {
1265
- "version": "9e6975cf0b1095af433b1eebd0498af85a02f1d7cd7e9cca19a837229e9b6722",
1266
- "signature": "9e6975cf0b1095af433b1eebd0498af85a02f1d7cd7e9cca19a837229e9b6722",
1267
- "affectsGlobalScope": false
1268
- },
1269
- "../../../node_modules/@types/semver/functions/parse.d.ts": {
1270
- "version": "f25b858b85a866a2c2d3d76931015f461f2411ed1f9632c5078f6057395a2953",
1271
- "signature": "f25b858b85a866a2c2d3d76931015f461f2411ed1f9632c5078f6057395a2953",
1272
- "affectsGlobalScope": false
1273
- },
1274
- "../../../node_modules/@types/semver/functions/valid.d.ts": {
1275
- "version": "aa1edccbdbf6d46ee703e645343b63fc9f55298aade357b9a32d39a6c1c7df63",
1276
- "signature": "aa1edccbdbf6d46ee703e645343b63fc9f55298aade357b9a32d39a6c1c7df63",
1277
- "affectsGlobalScope": false
1278
- },
1279
- "../../../node_modules/@types/semver/functions/clean.d.ts": {
1280
- "version": "55ca133bf28d14756551b14403db076ca40abdb9dd1cdc0ac5f9e69e75305f3a",
1281
- "signature": "55ca133bf28d14756551b14403db076ca40abdb9dd1cdc0ac5f9e69e75305f3a",
1282
- "affectsGlobalScope": false
1283
- },
1284
- "../../../node_modules/@types/semver/functions/inc.d.ts": {
1285
- "version": "1a32e8f6e0b0355b38b1b84468d87569aa8dd417413acf1b0401d2635ced092d",
1286
- "signature": "1a32e8f6e0b0355b38b1b84468d87569aa8dd417413acf1b0401d2635ced092d",
1287
- "affectsGlobalScope": false
1288
- },
1289
- "../../../node_modules/@types/semver/functions/diff.d.ts": {
1290
- "version": "e5995912322aa71d87fd9e3b52c7079ec462b3ba298a326f0f04646b6437c0e4",
1291
- "signature": "e5995912322aa71d87fd9e3b52c7079ec462b3ba298a326f0f04646b6437c0e4",
1292
- "affectsGlobalScope": false
1293
- },
1294
- "../../../node_modules/@types/semver/functions/major.d.ts": {
1295
- "version": "e59b506fa1621eaa48567155a73cc264fb69597234500962d5c99ca2cbf5dcfd",
1296
- "signature": "e59b506fa1621eaa48567155a73cc264fb69597234500962d5c99ca2cbf5dcfd",
1297
- "affectsGlobalScope": false
1298
- },
1299
- "../../../node_modules/@types/semver/functions/minor.d.ts": {
1300
- "version": "1d874fdf6944039b9a841f14f9acf225c636b4076d0e4acf6b7a7b88291ad117",
1301
- "signature": "1d874fdf6944039b9a841f14f9acf225c636b4076d0e4acf6b7a7b88291ad117",
1302
- "affectsGlobalScope": false
1303
- },
1304
- "../../../node_modules/@types/semver/functions/patch.d.ts": {
1305
- "version": "fcca9875c9a0617fbe8008ad2d2df300c19f54296907834c56c77c2a9411e841",
1306
- "signature": "fcca9875c9a0617fbe8008ad2d2df300c19f54296907834c56c77c2a9411e841",
1307
- "affectsGlobalScope": false
1308
- },
1309
- "../../../node_modules/@types/semver/functions/prerelease.d.ts": {
1310
- "version": "ffebeb335146d8a85fae6627a1777ca7fb4b833ed2ed147dfe71691ce2b36e8e",
1311
- "signature": "ffebeb335146d8a85fae6627a1777ca7fb4b833ed2ed147dfe71691ce2b36e8e",
1312
- "affectsGlobalScope": false
1313
- },
1314
- "../../../node_modules/@types/semver/functions/compare.d.ts": {
1315
- "version": "ea68d3bdeb7fc7a39772ff27d21e01a6a6c68c12877ba960d314649389ffd111",
1316
- "signature": "ea68d3bdeb7fc7a39772ff27d21e01a6a6c68c12877ba960d314649389ffd111",
1317
- "affectsGlobalScope": false
1318
- },
1319
- "../../../node_modules/@types/semver/functions/rcompare.d.ts": {
1320
- "version": "34de169048a5267c472e1cf562c4a575e805683ea18f88518019f624a23e53d9",
1321
- "signature": "34de169048a5267c472e1cf562c4a575e805683ea18f88518019f624a23e53d9",
1322
- "affectsGlobalScope": false
1323
- },
1324
- "../../../node_modules/@types/semver/functions/compare-loose.d.ts": {
1325
- "version": "0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6",
1326
- "signature": "0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6",
1327
- "affectsGlobalScope": false
1328
- },
1329
- "../../../node_modules/@types/semver/functions/compare-build.d.ts": {
1330
- "version": "9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869",
1331
- "signature": "9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869",
1332
- "affectsGlobalScope": false
1333
- },
1334
- "../../../node_modules/@types/semver/functions/sort.d.ts": {
1335
- "version": "2155c677d647aad82674498fd473cf77598355ef479844224f79bc4a1e4fffce",
1336
- "signature": "2155c677d647aad82674498fd473cf77598355ef479844224f79bc4a1e4fffce",
1337
- "affectsGlobalScope": false
1338
- },
1339
- "../../../node_modules/@types/semver/functions/rsort.d.ts": {
1340
- "version": "3cec507f07190f2fdffb93b3a3ea2b161061015d16fac9ee48d0bf717631310a",
1341
- "signature": "3cec507f07190f2fdffb93b3a3ea2b161061015d16fac9ee48d0bf717631310a",
1342
- "affectsGlobalScope": false
1343
- },
1344
- "../../../node_modules/@types/semver/functions/gt.d.ts": {
1345
- "version": "271095be81df8b130167e2cfa1882d84280a8bcffa59b50716e57818bbe9ad6d",
1346
- "signature": "271095be81df8b130167e2cfa1882d84280a8bcffa59b50716e57818bbe9ad6d",
1347
- "affectsGlobalScope": false
1348
- },
1349
- "../../../node_modules/@types/semver/functions/lt.d.ts": {
1350
- "version": "a982221baea5467bbbaddf1d46c3fdfab20073c7ced35869feecfcb4e39c28ac",
1351
- "signature": "a982221baea5467bbbaddf1d46c3fdfab20073c7ced35869feecfcb4e39c28ac",
1352
- "affectsGlobalScope": false
1353
- },
1354
- "../../../node_modules/@types/semver/functions/eq.d.ts": {
1355
- "version": "94b06460133208aaf61f01d6be479cba513c2413ad52645a9806c69e65a04b17",
1356
- "signature": "94b06460133208aaf61f01d6be479cba513c2413ad52645a9806c69e65a04b17",
1357
- "affectsGlobalScope": false
1358
- },
1359
- "../../../node_modules/@types/semver/functions/neq.d.ts": {
1360
- "version": "5d4a5730e1d010e2b117ee1e9876783586f8c9e9da1976664fc0ff3bdcfb0ed6",
1361
- "signature": "5d4a5730e1d010e2b117ee1e9876783586f8c9e9da1976664fc0ff3bdcfb0ed6",
1362
- "affectsGlobalScope": false
1363
- },
1364
- "../../../node_modules/@types/semver/functions/gte.d.ts": {
1365
- "version": "2a4bc0a2dfb607d4dc64ddf4a8bd95675c4b344170075d080617040ca8f8788b",
1366
- "signature": "2a4bc0a2dfb607d4dc64ddf4a8bd95675c4b344170075d080617040ca8f8788b",
1367
- "affectsGlobalScope": false
1368
- },
1369
- "../../../node_modules/@types/semver/functions/lte.d.ts": {
1370
- "version": "ba2734a02d311863f7758f9bd258d7f5e67b58c5d002e3f87951607171c1eef4",
1371
- "signature": "ba2734a02d311863f7758f9bd258d7f5e67b58c5d002e3f87951607171c1eef4",
1372
- "affectsGlobalScope": false
1373
- },
1374
- "../../../node_modules/@types/semver/functions/cmp.d.ts": {
1375
- "version": "908877cfe2edfff50b94c312bed96ac6cd74a5e93ee471de1bfe7ed7ef861e74",
1376
- "signature": "908877cfe2edfff50b94c312bed96ac6cd74a5e93ee471de1bfe7ed7ef861e74",
1377
- "affectsGlobalScope": false
1378
- },
1379
- "../../../node_modules/@types/semver/functions/coerce.d.ts": {
1380
- "version": "44b157ef6c4ded3f6b0a0494c899edb4502e7c7cf38193b3693efa4d9a94810e",
1381
- "signature": "44b157ef6c4ded3f6b0a0494c899edb4502e7c7cf38193b3693efa4d9a94810e",
1382
- "affectsGlobalScope": false
1383
- },
1384
- "../../../node_modules/@types/semver/classes/comparator.d.ts": {
1385
- "version": "5ff56f6c2212fd5fb5ba2435282ed35021962ed3dbbd3a46fe973985bb73f70f",
1386
- "signature": "5ff56f6c2212fd5fb5ba2435282ed35021962ed3dbbd3a46fe973985bb73f70f",
1387
- "affectsGlobalScope": false
1388
- },
1389
- "../../../node_modules/@types/semver/classes/range.d.ts": {
1390
- "version": "c2d595df1bad709f1d861e5b874c31bed79c19aaa6b10b9ec16b44b597d12afb",
1391
- "signature": "c2d595df1bad709f1d861e5b874c31bed79c19aaa6b10b9ec16b44b597d12afb",
1392
- "affectsGlobalScope": false
1393
- },
1394
- "../../../node_modules/@types/semver/functions/satisfies.d.ts": {
1395
- "version": "5bc76884b68fd1156fa9b32d26c380a2b00a5f9fb499ce24929cc94f72fd8a9e",
1396
- "signature": "5bc76884b68fd1156fa9b32d26c380a2b00a5f9fb499ce24929cc94f72fd8a9e",
1397
- "affectsGlobalScope": false
1398
- },
1399
- "../../../node_modules/@types/semver/ranges/max-satisfying.d.ts": {
1400
- "version": "f4bfabb664153ca62c78d996c8f7d4ecd15edbbc8d18819e96d7435cdb821939",
1401
- "signature": "f4bfabb664153ca62c78d996c8f7d4ecd15edbbc8d18819e96d7435cdb821939",
1402
- "affectsGlobalScope": false
1403
- },
1404
- "../../../node_modules/@types/semver/ranges/min-satisfying.d.ts": {
1405
- "version": "06c2c4176ef57591d1e6c7008d52d71372efddbbd81bb0139efb770a36812af7",
1406
- "signature": "06c2c4176ef57591d1e6c7008d52d71372efddbbd81bb0139efb770a36812af7",
1407
- "affectsGlobalScope": false
1408
- },
1409
- "../../../node_modules/@types/semver/ranges/to-comparators.d.ts": {
1410
- "version": "16df90604f2c60da2687efe67de611ba323b2e6a922874bf31ec6aad72e08ed2",
1411
- "signature": "16df90604f2c60da2687efe67de611ba323b2e6a922874bf31ec6aad72e08ed2",
1412
- "affectsGlobalScope": false
1413
- },
1414
- "../../../node_modules/@types/semver/ranges/min-version.d.ts": {
1415
- "version": "c74a0c397b3e35eb3fa7098c413f6908495d1fe1254e4d373a72da8eef999b63",
1416
- "signature": "c74a0c397b3e35eb3fa7098c413f6908495d1fe1254e4d373a72da8eef999b63",
1417
- "affectsGlobalScope": false
1418
- },
1419
- "../../../node_modules/@types/semver/ranges/valid.d.ts": {
1420
- "version": "ead194b3eca20113ac04b5c7cd76a59b451df84bd84df9ebb8cdc0ab545cb097",
1421
- "signature": "ead194b3eca20113ac04b5c7cd76a59b451df84bd84df9ebb8cdc0ab545cb097",
1422
- "affectsGlobalScope": false
1423
- },
1424
- "../../../node_modules/@types/semver/ranges/outside.d.ts": {
1425
- "version": "697882d97df41aacc1ecb9320483ad6da7ef51f73c8d9118f71048f3c3a80b7d",
1426
- "signature": "697882d97df41aacc1ecb9320483ad6da7ef51f73c8d9118f71048f3c3a80b7d",
1427
- "affectsGlobalScope": false
1428
- },
1429
- "../../../node_modules/@types/semver/ranges/gtr.d.ts": {
1430
- "version": "99c08b6b0d65c0ec55411a55bc0ac7673835a7c1565ecc6f314bf78330ce7d95",
1431
- "signature": "99c08b6b0d65c0ec55411a55bc0ac7673835a7c1565ecc6f314bf78330ce7d95",
1432
- "affectsGlobalScope": false
1433
- },
1434
- "../../../node_modules/@types/semver/ranges/ltr.d.ts": {
1435
- "version": "f09b5b78b5c31d85a57e5ea5491dec61a1f666a6d7ddc04fada0ba641aaeb8f5",
1436
- "signature": "f09b5b78b5c31d85a57e5ea5491dec61a1f666a6d7ddc04fada0ba641aaeb8f5",
1437
- "affectsGlobalScope": false
1438
- },
1439
- "../../../node_modules/@types/semver/ranges/intersects.d.ts": {
1440
- "version": "453ab4b37dd377e9c7371183c22a1a8550ccb19899cac5be4994044b878e306b",
1441
- "signature": "453ab4b37dd377e9c7371183c22a1a8550ccb19899cac5be4994044b878e306b",
1442
- "affectsGlobalScope": false
1443
- },
1444
- "../../../node_modules/@types/semver/internals/identifiers.d.ts": {
1445
- "version": "34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0",
1446
- "signature": "34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0",
1447
- "affectsGlobalScope": false
1448
- },
1449
- "../../../node_modules/@types/semver/index.d.ts": {
1450
- "version": "1e9c6c8763e567c465a7c6517393cff9b96afd337bb30f1fe8c09e135cf1ed19",
1451
- "signature": "1e9c6c8763e567c465a7c6517393cff9b96afd337bb30f1fe8c09e135cf1ed19",
1452
- "affectsGlobalScope": false
1453
- },
1454
- "../../../node_modules/@types/shelljs/index.d.ts": {
1455
- "version": "ed89733a7c4a8d2663f4b9211ef5bdc72064e4ddf881898ea04ef73c050e7a94",
1456
- "signature": "ed89733a7c4a8d2663f4b9211ef5bdc72064e4ddf881898ea04ef73c050e7a94",
1457
- "affectsGlobalScope": false
1458
- },
1459
- "../../../node_modules/@types/source-list-map/index.d.ts": {
1460
- "version": "67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae",
1461
- "signature": "67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae",
1462
- "affectsGlobalScope": false
1463
- },
1464
- "../../../node_modules/@types/stack-utils/index.d.ts": {
1465
- "version": "c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57",
1466
- "signature": "c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57",
1467
- "affectsGlobalScope": false
1468
- },
1469
- "../../../node_modules/@types/tapable/index.d.ts": {
1470
- "version": "d558a0fe921ebcc88d3212c2c42108abf9f0d694d67ebdeba37d7728c044f579",
1471
- "signature": "d558a0fe921ebcc88d3212c2c42108abf9f0d694d67ebdeba37d7728c044f579",
1472
- "affectsGlobalScope": false
1473
- },
1474
- "../../../node_modules/@types/wait-on/index.d.ts": {
1475
- "version": "358a788b6fe7939831ed563de73f7547e7ceb04db8ea7fb72e306a8d813f8a07",
1476
- "signature": "358a788b6fe7939831ed563de73f7547e7ceb04db8ea7fb72e306a8d813f8a07",
1477
- "affectsGlobalScope": false
1478
- },
1479
- "../../../node_modules/@types/webpack-sources/index.d.ts": {
1480
- "version": "d55cc13acdfa6c943725250fe4ee3b269e2b0f4098aef46713bc2fbec38d197f",
1481
- "signature": "d55cc13acdfa6c943725250fe4ee3b269e2b0f4098aef46713bc2fbec38d197f",
1482
- "affectsGlobalScope": false
1483
- },
1484
- "../../../node_modules/@types/webpack/index.d.ts": {
1485
- "version": "ef0b707624f7d984f07db02e61589a6e2f2474a55d6b666ab04d2b0722708a83",
1486
- "signature": "ef0b707624f7d984f07db02e61589a6e2f2474a55d6b666ab04d2b0722708a83",
1487
- "affectsGlobalScope": false
1488
- },
1489
- "../../../node_modules/@types/webpack-dev-server/index.d.ts": {
1490
- "version": "bc082c0982c944de67aa0ea41b7df3aa235cb8a3beed29b08806c81cca0780c6",
1491
- "signature": "bc082c0982c944de67aa0ea41b7df3aa235cb8a3beed29b08806c81cca0780c6",
1492
- "affectsGlobalScope": false
1493
- },
1494
- "../../../node_modules/@types/yargs-parser/index.d.ts": {
1495
- "version": "fdfbe321c556c39a2ecf791d537b999591d0849e971dd938d88f460fea0186f6",
1496
- "signature": "fdfbe321c556c39a2ecf791d537b999591d0849e971dd938d88f460fea0186f6",
1497
- "affectsGlobalScope": false
1498
- },
1499
- "../../../node_modules/@types/yargs/index.d.ts": {
1500
- "version": "2893564a05d3bbe2a4d812dfd5ad3d7a6981a754283b695272d6ead03f638b67",
1501
- "signature": "2893564a05d3bbe2a4d812dfd5ad3d7a6981a754283b695272d6ead03f638b67",
1502
- "affectsGlobalScope": false
1503
- }
1504
- },
1505
- "options": {
1506
- "target": 6,
1507
- "module": 1,
1508
- "lib": [
1509
- "lib.esnext.d.ts",
1510
- "lib.dom.d.ts"
1511
- ],
1512
- "declaration": true,
1513
- "declarationMap": false,
1514
- "jsx": 2,
1515
- "strict": true,
1516
- "strictNullChecks": true,
1517
- "strictFunctionTypes": true,
1518
- "strictBindCallApply": true,
1519
- "strictPropertyInitialization": true,
1520
- "noImplicitThis": true,
1521
- "alwaysStrict": true,
1522
- "noUnusedLocals": false,
1523
- "noImplicitReturns": true,
1524
- "noFallthroughCasesInSwitch": true,
1525
- "noUnusedParameters": false,
1526
- "moduleResolution": 2,
1527
- "allowSyntheticDefaultImports": true,
1528
- "esModuleInterop": true,
1529
- "isolatedModules": true,
1530
- "resolveJsonModule": true,
1531
- "skipLibCheck": true,
1532
- "importHelpers": true,
1533
- "noEmitHelpers": true,
1534
- "incremental": true,
1535
- "tsBuildInfoFile": "./.tsbuildinfo",
1536
- "rootDir": "../src",
1537
- "outDir": "./",
1538
- "configFilePath": "../tsconfig.json"
1539
- },
1540
- "referencedMap": {
1541
- "../../../node_modules/@babel/parser/typings/babel-parser.d.ts": [
1542
- "../../../node_modules/@babel/types/lib/index.d.ts"
1543
- ],
1544
- "../../../node_modules/@types/babel__core/index.d.ts": [
1545
- "../../../node_modules/@babel/parser/typings/babel-parser.d.ts",
1546
- "../../../node_modules/@babel/types/lib/index.d.ts",
1547
- "../../../node_modules/@types/babel__generator/index.d.ts",
1548
- "../../../node_modules/@types/babel__template/index.d.ts",
1549
- "../../../node_modules/@types/babel__traverse/index.d.ts"
1550
- ],
1551
- "../../../node_modules/@types/babel__generator/index.d.ts": [
1552
- "../../../node_modules/@babel/types/lib/index.d.ts"
1553
- ],
1554
- "../../../node_modules/@types/babel__template/index.d.ts": [
1555
- "../../../node_modules/@babel/parser/typings/babel-parser.d.ts",
1556
- "../../../node_modules/@babel/types/lib/index.d.ts"
1557
- ],
1558
- "../../../node_modules/@types/babel__traverse/index.d.ts": [
1559
- "../../../node_modules/@babel/types/lib/index.d.ts"
1560
- ],
1561
- "../../../node_modules/@types/body-parser/index.d.ts": [
1562
- "../../../node_modules/@types/connect/index.d.ts",
1563
- "../../../node_modules/@types/node/http.d.ts",
1564
- "../../../node_modules/@types/node/index.d.ts"
1565
- ],
1566
- "../../../node_modules/@types/cheerio/index.d.ts": [
1567
- "../../../node_modules/@types/node/index.d.ts"
1568
- ],
1569
- "../../../node_modules/@types/clean-css/index.d.ts": [
1570
- "../../../node_modules/@types/node/http.d.ts",
1571
- "../../../node_modules/@types/node/https.d.ts",
1572
- "../../../node_modules/@types/node/index.d.ts"
1573
- ],
1574
- "../../../node_modules/@types/color-convert/conversions.d.ts": [
1575
- "../../../node_modules/@types/color-name/index.d.ts"
1576
- ],
1577
- "../../../node_modules/@types/color-convert/index.d.ts": [
1578
- "../../../node_modules/@types/color-convert/conversions.d.ts",
1579
- "../../../node_modules/@types/color-convert/route.d.ts"
1580
- ],
1581
- "../../../node_modules/@types/color-convert/route.d.ts": [
1582
- "../../../node_modules/@types/color-convert/conversions.d.ts"
1583
- ],
1584
- "../../../node_modules/@types/color/index.d.ts": [
1585
- "../../../node_modules/@types/color-convert/index.d.ts"
1586
- ],
1587
- "../../../node_modules/@types/connect-history-api-fallback/index.d.ts": [
1588
- "../../../node_modules/@types/express-serve-static-core/index.d.ts",
1589
- "../../../node_modules/@types/node/index.d.ts",
1590
- "../../../node_modules/@types/node/url.d.ts"
1591
- ],
1592
- "../../../node_modules/@types/connect/index.d.ts": [
1593
- "../../../node_modules/@types/node/http.d.ts",
1594
- "../../../node_modules/@types/node/index.d.ts"
1595
- ],
1596
- "../../../node_modules/@types/cssnano/index.d.ts": [
1597
- "../../../node_modules/@types/cssnano/node_modules/postcss/lib/postcss.d.ts"
1598
- ],
1599
- "../../../node_modules/@types/cssnano/node_modules/postcss/lib/postcss.d.ts": [
1600
- "../../../node_modules/source-map/source-map.d.ts"
1601
- ],
1602
- "../../../node_modules/@types/decompress/index.d.ts": [
1603
- "../../../node_modules/@types/node/index.d.ts"
1604
- ],
1605
- "../../../node_modules/@types/download/index.d.ts": [
1606
- "../../../node_modules/@types/decompress/index.d.ts",
1607
- "../../../node_modules/@types/got/index.d.ts",
1608
- "../../../node_modules/@types/node/index.d.ts"
1609
- ],
1610
- "../../../node_modules/@types/eslint-scope/index.d.ts": [
1611
- "../../../node_modules/@types/eslint/ts3.1/index.d.ts",
1612
- "../../../node_modules/@types/estree/index.d.ts"
1613
- ],
1614
- "../../../node_modules/@types/eslint/ts3.1/index.d.ts": [
1615
- "../../../node_modules/@types/eslint/ts3.1/helpers.d.ts",
1616
- "../../../node_modules/@types/estree/index.d.ts",
1617
- "../../../node_modules/@types/json-schema/index.d.ts"
1618
- ],
1619
- "../../../node_modules/@types/express-serve-static-core/index.d.ts": [
1620
- "../../../node_modules/@types/node/events.d.ts",
1621
- "../../../node_modules/@types/node/http.d.ts",
1622
- "../../../node_modules/@types/node/index.d.ts",
1623
- "../../../node_modules/@types/range-parser/index.d.ts"
1624
- ],
1625
- "../../../node_modules/@types/express/index.d.ts": [
1626
- "../../../node_modules/@types/body-parser/index.d.ts",
1627
- "../../../node_modules/@types/express-serve-static-core/index.d.ts",
1628
- "../../../node_modules/@types/qs/index.d.ts",
1629
- "../../../node_modules/@types/serve-static/index.d.ts"
1630
- ],
1631
- "../../../node_modules/@types/fs-extra/index.d.ts": [
1632
- "../../../node_modules/@types/node/fs.d.ts",
1633
- "../../../node_modules/@types/node/index.d.ts"
1634
- ],
1635
- "../../../node_modules/@types/glob/index.d.ts": [
1636
- "../../../node_modules/@types/minimatch/index.d.ts",
1637
- "../../../node_modules/@types/node/events.d.ts",
1638
- "../../../node_modules/@types/node/index.d.ts"
1639
- ],
1640
- "../../../node_modules/@types/got/index.d.ts": [
1641
- "../../../node_modules/@types/node/http.d.ts",
1642
- "../../../node_modules/@types/node/https.d.ts",
1643
- "../../../node_modules/@types/node/index.d.ts",
1644
- "../../../node_modules/@types/node/stream.d.ts",
1645
- "../../../node_modules/@types/node/url.d.ts"
1646
- ],
1647
- "../../../node_modules/@types/graceful-fs/index.d.ts": [
1648
- "../../../node_modules/@types/node/fs.d.ts",
1649
- "../../../node_modules/@types/node/index.d.ts"
1650
- ],
1651
- "../../../node_modules/@types/hast/index.d.ts": [
1652
- "../../../node_modules/@types/unist/index.d.ts"
1653
- ],
1654
- "../../../node_modules/@types/history/LocationUtils.d.ts": [
1655
- "../../../node_modules/@types/history/index.d.ts"
1656
- ],
1657
- "../../../node_modules/@types/history/PathUtils.d.ts": [
1658
- "../../../node_modules/@types/history/index.d.ts"
1659
- ],
1660
- "../../../node_modules/@types/history/createBrowserHistory.d.ts": [
1661
- "../../../node_modules/@types/history/DOMUtils.d.ts",
1662
- "../../../node_modules/@types/history/index.d.ts"
1663
- ],
1664
- "../../../node_modules/@types/history/createHashHistory.d.ts": [
1665
- "../../../node_modules/@types/history/DOMUtils.d.ts",
1666
- "../../../node_modules/@types/history/index.d.ts"
1667
- ],
1668
- "../../../node_modules/@types/history/createMemoryHistory.d.ts": [
1669
- "../../../node_modules/@types/history/DOMUtils.d.ts",
1670
- "../../../node_modules/@types/history/index.d.ts"
1671
- ],
1672
- "../../../node_modules/@types/history/index.d.ts": [
1673
- "../../../node_modules/@types/history/LocationUtils.d.ts",
1674
- "../../../node_modules/@types/history/PathUtils.d.ts",
1675
- "../../../node_modules/@types/history/createBrowserHistory.d.ts",
1676
- "../../../node_modules/@types/history/createHashHistory.d.ts",
1677
- "../../../node_modules/@types/history/createMemoryHistory.d.ts"
1678
- ],
1679
- "../../../node_modules/@types/html-minifier/index.d.ts": [
1680
- "../../../node_modules/@types/clean-css/index.d.ts",
1681
- "../../../node_modules/@types/relateurl/index.d.ts",
1682
- "../../../node_modules/@types/uglify-js/index.d.ts"
1683
- ],
1684
- "../../../node_modules/@types/html-webpack-plugin/index.d.ts": [
1685
- "../../../node_modules/@types/html-minifier/index.d.ts",
1686
- "../../../node_modules/tapable/tapable.d.ts",
1687
- "../../../node_modules/webpack/types.d.ts"
1688
- ],
1689
- "../../../node_modules/@types/http-proxy-middleware/index.d.ts": [
1690
- "../../../node_modules/@types/connect/index.d.ts",
1691
- "../../../node_modules/@types/http-proxy/index.d.ts",
1692
- "../../../node_modules/@types/node/http.d.ts",
1693
- "../../../node_modules/@types/node/index.d.ts",
1694
- "../../../node_modules/@types/node/net.d.ts",
1695
- "../../../node_modules/@types/node/stream.d.ts",
1696
- "../../../node_modules/@types/node/tls.d.ts"
1697
- ],
1698
- "../../../node_modules/@types/http-proxy/index.d.ts": [
1699
- "../../../node_modules/@types/node/events.d.ts",
1700
- "../../../node_modules/@types/node/http.d.ts",
1701
- "../../../node_modules/@types/node/https.d.ts",
1702
- "../../../node_modules/@types/node/index.d.ts",
1703
- "../../../node_modules/@types/node/net.d.ts",
1704
- "../../../node_modules/@types/node/stream.d.ts",
1705
- "../../../node_modules/@types/node/url.d.ts"
1706
- ],
1707
- "../../../node_modules/@types/istanbul-lib-report/index.d.ts": [
1708
- "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts"
1709
- ],
1710
- "../../../node_modules/@types/istanbul-reports/index.d.ts": [
1711
- "../../../node_modules/@types/istanbul-lib-report/index.d.ts"
1712
- ],
1713
- "../../../node_modules/@types/jest/index.d.ts": [
1714
- "../../../node_modules/jest-diff/build/index.d.ts",
1715
- "../../../node_modules/pretty-format/build/index.d.ts"
1716
- ],
1717
- "../../../node_modules/@types/jscodeshift/index.d.ts": [
1718
- "../../../node_modules/@types/jscodeshift/src/core.d.ts"
1719
- ],
1720
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts": [
1721
- "../../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts",
1722
- "../../../node_modules/@types/jscodeshift/src/collections/Node.d.ts",
1723
- "../../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts",
1724
- "../../../node_modules/recast/main.d.ts"
1725
- ],
1726
- "../../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts": [
1727
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts",
1728
- "../../../node_modules/ast-types/gen/nodes.d.ts",
1729
- "../../../node_modules/recast/main.d.ts"
1730
- ],
1731
- "../../../node_modules/@types/jscodeshift/src/collections/Node.d.ts": [
1732
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts",
1733
- "../../../node_modules/ast-types/gen/nodes.d.ts",
1734
- "../../../node_modules/recast/main.d.ts"
1735
- ],
1736
- "../../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts": [
1737
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts",
1738
- "../../../node_modules/ast-types/gen/nodes.d.ts",
1739
- "../../../node_modules/recast/main.d.ts"
1740
- ],
1741
- "../../../node_modules/@types/jscodeshift/src/core.d.ts": [
1742
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts",
1743
- "../../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts",
1744
- "../../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts",
1745
- "../../../node_modules/@types/jscodeshift/src/template.d.ts",
1746
- "../../../node_modules/ast-types/gen/nodes.d.ts",
1747
- "../../../node_modules/recast/main.d.ts"
1748
- ],
1749
- "../../../node_modules/@types/jscodeshift/src/template.d.ts": [
1750
- "../../../node_modules/recast/main.d.ts"
1751
- ],
1752
- "../../../node_modules/@types/katex/contrib/auto-render.d.ts": [
1753
- "../../../node_modules/@types/katex/index.d.ts"
1754
- ],
1755
- "../../../node_modules/@types/katex/contrib/index.d.ts": [
1756
- "../../../node_modules/@types/katex/contrib/auto-render.d.ts",
1757
- "../../../node_modules/@types/katex/contrib/katex2tex.d.ts"
1758
- ],
1759
- "../../../node_modules/@types/katex/index.d.ts": [
1760
- "../../../node_modules/@types/katex/contrib/index.d.ts"
1761
- ],
1762
- "../../../node_modules/@types/loader-utils/index.d.ts": [
1763
- "../../../node_modules/@types/node/index.d.ts",
1764
- "../../../node_modules/webpack/types.d.ts"
1765
- ],
1766
- "../../../node_modules/@types/lodash/common/array.d.ts": [
1767
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1768
- "../../../node_modules/@types/lodash/common/common.d.ts",
1769
- "../../../node_modules/@types/lodash/common/date.d.ts",
1770
- "../../../node_modules/@types/lodash/common/function.d.ts",
1771
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1772
- "../../../node_modules/@types/lodash/common/math.d.ts",
1773
- "../../../node_modules/@types/lodash/common/number.d.ts",
1774
- "../../../node_modules/@types/lodash/common/object.d.ts",
1775
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1776
- "../../../node_modules/@types/lodash/common/string.d.ts",
1777
- "../../../node_modules/@types/lodash/common/util.d.ts",
1778
- "../../../node_modules/@types/lodash/index.d.ts"
1779
- ],
1780
- "../../../node_modules/@types/lodash/common/collection.d.ts": [
1781
- "../../../node_modules/@types/lodash/common/array.d.ts",
1782
- "../../../node_modules/@types/lodash/common/common.d.ts",
1783
- "../../../node_modules/@types/lodash/common/date.d.ts",
1784
- "../../../node_modules/@types/lodash/common/function.d.ts",
1785
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1786
- "../../../node_modules/@types/lodash/common/math.d.ts",
1787
- "../../../node_modules/@types/lodash/common/number.d.ts",
1788
- "../../../node_modules/@types/lodash/common/object.d.ts",
1789
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1790
- "../../../node_modules/@types/lodash/common/string.d.ts",
1791
- "../../../node_modules/@types/lodash/common/util.d.ts",
1792
- "../../../node_modules/@types/lodash/index.d.ts"
1793
- ],
1794
- "../../../node_modules/@types/lodash/common/common.d.ts": [
1795
- "../../../node_modules/@types/lodash/common/array.d.ts",
1796
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1797
- "../../../node_modules/@types/lodash/common/date.d.ts",
1798
- "../../../node_modules/@types/lodash/common/function.d.ts",
1799
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1800
- "../../../node_modules/@types/lodash/common/math.d.ts",
1801
- "../../../node_modules/@types/lodash/common/number.d.ts",
1802
- "../../../node_modules/@types/lodash/common/object.d.ts",
1803
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1804
- "../../../node_modules/@types/lodash/common/string.d.ts",
1805
- "../../../node_modules/@types/lodash/common/util.d.ts",
1806
- "../../../node_modules/@types/lodash/index.d.ts"
1807
- ],
1808
- "../../../node_modules/@types/lodash/common/date.d.ts": [
1809
- "../../../node_modules/@types/lodash/common/array.d.ts",
1810
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1811
- "../../../node_modules/@types/lodash/common/common.d.ts",
1812
- "../../../node_modules/@types/lodash/common/function.d.ts",
1813
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1814
- "../../../node_modules/@types/lodash/common/math.d.ts",
1815
- "../../../node_modules/@types/lodash/common/number.d.ts",
1816
- "../../../node_modules/@types/lodash/common/object.d.ts",
1817
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1818
- "../../../node_modules/@types/lodash/common/string.d.ts",
1819
- "../../../node_modules/@types/lodash/common/util.d.ts",
1820
- "../../../node_modules/@types/lodash/index.d.ts"
1821
- ],
1822
- "../../../node_modules/@types/lodash/common/function.d.ts": [
1823
- "../../../node_modules/@types/lodash/common/array.d.ts",
1824
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1825
- "../../../node_modules/@types/lodash/common/common.d.ts",
1826
- "../../../node_modules/@types/lodash/common/date.d.ts",
1827
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1828
- "../../../node_modules/@types/lodash/common/math.d.ts",
1829
- "../../../node_modules/@types/lodash/common/number.d.ts",
1830
- "../../../node_modules/@types/lodash/common/object.d.ts",
1831
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1832
- "../../../node_modules/@types/lodash/common/string.d.ts",
1833
- "../../../node_modules/@types/lodash/common/util.d.ts",
1834
- "../../../node_modules/@types/lodash/index.d.ts"
1835
- ],
1836
- "../../../node_modules/@types/lodash/common/lang.d.ts": [
1837
- "../../../node_modules/@types/lodash/common/array.d.ts",
1838
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1839
- "../../../node_modules/@types/lodash/common/common.d.ts",
1840
- "../../../node_modules/@types/lodash/common/date.d.ts",
1841
- "../../../node_modules/@types/lodash/common/function.d.ts",
1842
- "../../../node_modules/@types/lodash/common/math.d.ts",
1843
- "../../../node_modules/@types/lodash/common/number.d.ts",
1844
- "../../../node_modules/@types/lodash/common/object.d.ts",
1845
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1846
- "../../../node_modules/@types/lodash/common/string.d.ts",
1847
- "../../../node_modules/@types/lodash/common/util.d.ts",
1848
- "../../../node_modules/@types/lodash/index.d.ts"
1849
- ],
1850
- "../../../node_modules/@types/lodash/common/math.d.ts": [
1851
- "../../../node_modules/@types/lodash/common/array.d.ts",
1852
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1853
- "../../../node_modules/@types/lodash/common/common.d.ts",
1854
- "../../../node_modules/@types/lodash/common/date.d.ts",
1855
- "../../../node_modules/@types/lodash/common/function.d.ts",
1856
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1857
- "../../../node_modules/@types/lodash/common/number.d.ts",
1858
- "../../../node_modules/@types/lodash/common/object.d.ts",
1859
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1860
- "../../../node_modules/@types/lodash/common/string.d.ts",
1861
- "../../../node_modules/@types/lodash/common/util.d.ts",
1862
- "../../../node_modules/@types/lodash/index.d.ts"
1863
- ],
1864
- "../../../node_modules/@types/lodash/common/number.d.ts": [
1865
- "../../../node_modules/@types/lodash/common/array.d.ts",
1866
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1867
- "../../../node_modules/@types/lodash/common/common.d.ts",
1868
- "../../../node_modules/@types/lodash/common/date.d.ts",
1869
- "../../../node_modules/@types/lodash/common/function.d.ts",
1870
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1871
- "../../../node_modules/@types/lodash/common/math.d.ts",
1872
- "../../../node_modules/@types/lodash/common/object.d.ts",
1873
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1874
- "../../../node_modules/@types/lodash/common/string.d.ts",
1875
- "../../../node_modules/@types/lodash/common/util.d.ts",
1876
- "../../../node_modules/@types/lodash/index.d.ts"
1877
- ],
1878
- "../../../node_modules/@types/lodash/common/object.d.ts": [
1879
- "../../../node_modules/@types/lodash/common/array.d.ts",
1880
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1881
- "../../../node_modules/@types/lodash/common/common.d.ts",
1882
- "../../../node_modules/@types/lodash/common/date.d.ts",
1883
- "../../../node_modules/@types/lodash/common/function.d.ts",
1884
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1885
- "../../../node_modules/@types/lodash/common/math.d.ts",
1886
- "../../../node_modules/@types/lodash/common/number.d.ts",
1887
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1888
- "../../../node_modules/@types/lodash/common/string.d.ts",
1889
- "../../../node_modules/@types/lodash/common/util.d.ts",
1890
- "../../../node_modules/@types/lodash/index.d.ts"
1891
- ],
1892
- "../../../node_modules/@types/lodash/common/seq.d.ts": [
1893
- "../../../node_modules/@types/lodash/common/array.d.ts",
1894
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1895
- "../../../node_modules/@types/lodash/common/common.d.ts",
1896
- "../../../node_modules/@types/lodash/common/date.d.ts",
1897
- "../../../node_modules/@types/lodash/common/function.d.ts",
1898
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1899
- "../../../node_modules/@types/lodash/common/math.d.ts",
1900
- "../../../node_modules/@types/lodash/common/number.d.ts",
1901
- "../../../node_modules/@types/lodash/common/object.d.ts",
1902
- "../../../node_modules/@types/lodash/common/string.d.ts",
1903
- "../../../node_modules/@types/lodash/common/util.d.ts",
1904
- "../../../node_modules/@types/lodash/index.d.ts"
1905
- ],
1906
- "../../../node_modules/@types/lodash/common/string.d.ts": [
1907
- "../../../node_modules/@types/lodash/common/array.d.ts",
1908
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1909
- "../../../node_modules/@types/lodash/common/common.d.ts",
1910
- "../../../node_modules/@types/lodash/common/date.d.ts",
1911
- "../../../node_modules/@types/lodash/common/function.d.ts",
1912
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1913
- "../../../node_modules/@types/lodash/common/math.d.ts",
1914
- "../../../node_modules/@types/lodash/common/number.d.ts",
1915
- "../../../node_modules/@types/lodash/common/object.d.ts",
1916
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1917
- "../../../node_modules/@types/lodash/common/util.d.ts",
1918
- "../../../node_modules/@types/lodash/index.d.ts"
1919
- ],
1920
- "../../../node_modules/@types/lodash/common/util.d.ts": [
1921
- "../../../node_modules/@types/lodash/common/array.d.ts",
1922
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1923
- "../../../node_modules/@types/lodash/common/common.d.ts",
1924
- "../../../node_modules/@types/lodash/common/date.d.ts",
1925
- "../../../node_modules/@types/lodash/common/function.d.ts",
1926
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1927
- "../../../node_modules/@types/lodash/common/math.d.ts",
1928
- "../../../node_modules/@types/lodash/common/number.d.ts",
1929
- "../../../node_modules/@types/lodash/common/object.d.ts",
1930
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1931
- "../../../node_modules/@types/lodash/common/string.d.ts",
1932
- "../../../node_modules/@types/lodash/index.d.ts"
1933
- ],
1934
- "../../../node_modules/@types/lodash/index.d.ts": [
1935
- "../../../node_modules/@types/lodash/common/array.d.ts",
1936
- "../../../node_modules/@types/lodash/common/collection.d.ts",
1937
- "../../../node_modules/@types/lodash/common/common.d.ts",
1938
- "../../../node_modules/@types/lodash/common/date.d.ts",
1939
- "../../../node_modules/@types/lodash/common/function.d.ts",
1940
- "../../../node_modules/@types/lodash/common/lang.d.ts",
1941
- "../../../node_modules/@types/lodash/common/math.d.ts",
1942
- "../../../node_modules/@types/lodash/common/number.d.ts",
1943
- "../../../node_modules/@types/lodash/common/object.d.ts",
1944
- "../../../node_modules/@types/lodash/common/seq.d.ts",
1945
- "../../../node_modules/@types/lodash/common/string.d.ts",
1946
- "../../../node_modules/@types/lodash/common/util.d.ts"
1947
- ],
1948
- "../../../node_modules/@types/mdast/index.d.ts": [
1949
- "../../../node_modules/@types/unist/index.d.ts"
1950
- ],
1951
- "../../../node_modules/@types/mkdirp/index.d.ts": [
1952
- "../../../node_modules/@types/node/fs.d.ts",
1953
- "../../../node_modules/@types/node/index.d.ts"
1954
- ],
1955
- "../../../node_modules/@types/node-fetch/index.d.ts": [
1956
- "../../../node_modules/@types/node-fetch/externals.d.ts",
1957
- "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts",
1958
- "../../../node_modules/@types/node/http.d.ts",
1959
- "../../../node_modules/@types/node/index.d.ts",
1960
- "../../../node_modules/@types/node/url.d.ts"
1961
- ],
1962
- "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts": [
1963
- "../../../node_modules/@types/node/http.d.ts",
1964
- "../../../node_modules/@types/node/index.d.ts",
1965
- "../../../node_modules/@types/node/stream.d.ts"
1966
- ],
1967
- "../../../node_modules/@types/node/assert.d.ts": [
1968
- "../../../node_modules/@types/node/assert.d.ts"
1969
- ],
1970
- "../../../node_modules/@types/node/async_hooks.d.ts": [
1971
- "../../../node_modules/@types/node/async_hooks.d.ts"
1972
- ],
1973
- "../../../node_modules/@types/node/base.d.ts": [
1974
- "../../../node_modules/@types/node/assert.d.ts",
1975
- "../../../node_modules/@types/node/ts3.6/base.d.ts"
1976
- ],
1977
- "../../../node_modules/@types/node/buffer.d.ts": [
1978
- "../../../node_modules/@types/node/buffer.d.ts"
1979
- ],
1980
- "../../../node_modules/@types/node/child_process.d.ts": [
1981
- "../../../node_modules/@types/node/child_process.d.ts",
1982
- "../../../node_modules/@types/node/events.d.ts",
1983
- "../../../node_modules/@types/node/fs.d.ts",
1984
- "../../../node_modules/@types/node/net.d.ts",
1985
- "../../../node_modules/@types/node/stream.d.ts"
1986
- ],
1987
- "../../../node_modules/@types/node/cluster.d.ts": [
1988
- "../../../node_modules/@types/node/child_process.d.ts",
1989
- "../../../node_modules/@types/node/cluster.d.ts",
1990
- "../../../node_modules/@types/node/events.d.ts",
1991
- "../../../node_modules/@types/node/net.d.ts"
1992
- ],
1993
- "../../../node_modules/@types/node/console.d.ts": [
1994
- "../../../node_modules/@types/node/util.d.ts"
1995
- ],
1996
- "../../../node_modules/@types/node/constants.d.ts": [
1997
- "../../../node_modules/@types/node/constants.d.ts",
1998
- "../../../node_modules/@types/node/crypto.d.ts",
1999
- "../../../node_modules/@types/node/fs.d.ts",
2000
- "../../../node_modules/@types/node/os.d.ts"
2001
- ],
2002
- "../../../node_modules/@types/node/crypto.d.ts": [
2003
- "../../../node_modules/@types/node/crypto.d.ts",
2004
- "../../../node_modules/@types/node/stream.d.ts"
2005
- ],
2006
- "../../../node_modules/@types/node/dgram.d.ts": [
2007
- "../../../node_modules/@types/node/dgram.d.ts",
2008
- "../../../node_modules/@types/node/dns.d.ts",
2009
- "../../../node_modules/@types/node/events.d.ts",
2010
- "../../../node_modules/@types/node/net.d.ts"
2011
- ],
2012
- "../../../node_modules/@types/node/dns.d.ts": [
2013
- "../../../node_modules/@types/node/dns.d.ts"
2014
- ],
2015
- "../../../node_modules/@types/node/domain.d.ts": [
2016
- "../../../node_modules/@types/node/domain.d.ts",
2017
- "../../../node_modules/@types/node/events.d.ts"
2018
- ],
2019
- "../../../node_modules/@types/node/events.d.ts": [
2020
- "../../../node_modules/@types/node/events.d.ts"
2021
- ],
2022
- "../../../node_modules/@types/node/fs.d.ts": [
2023
- "../../../node_modules/@types/node/events.d.ts",
2024
- "../../../node_modules/@types/node/fs.d.ts",
2025
- "../../../node_modules/@types/node/fs/promises.d.ts",
2026
- "../../../node_modules/@types/node/stream.d.ts",
2027
- "../../../node_modules/@types/node/url.d.ts"
2028
- ],
2029
- "../../../node_modules/@types/node/fs/promises.d.ts": [
2030
- "../../../node_modules/@types/node/fs.d.ts",
2031
- "../../../node_modules/@types/node/fs/promises.d.ts"
2032
- ],
2033
- "../../../node_modules/@types/node/http.d.ts": [
2034
- "../../../node_modules/@types/node/http.d.ts",
2035
- "../../../node_modules/@types/node/net.d.ts",
2036
- "../../../node_modules/@types/node/stream.d.ts",
2037
- "../../../node_modules/@types/node/url.d.ts"
2038
- ],
2039
- "../../../node_modules/@types/node/http2.d.ts": [
2040
- "../../../node_modules/@types/node/events.d.ts",
2041
- "../../../node_modules/@types/node/fs.d.ts",
2042
- "../../../node_modules/@types/node/http.d.ts",
2043
- "../../../node_modules/@types/node/http2.d.ts",
2044
- "../../../node_modules/@types/node/net.d.ts",
2045
- "../../../node_modules/@types/node/stream.d.ts",
2046
- "../../../node_modules/@types/node/tls.d.ts",
2047
- "../../../node_modules/@types/node/url.d.ts"
2048
- ],
2049
- "../../../node_modules/@types/node/https.d.ts": [
2050
- "../../../node_modules/@types/node/http.d.ts",
2051
- "../../../node_modules/@types/node/https.d.ts",
2052
- "../../../node_modules/@types/node/tls.d.ts",
2053
- "../../../node_modules/@types/node/url.d.ts"
2054
- ],
2055
- "../../../node_modules/@types/node/index.d.ts": [
2056
- "../../../node_modules/@types/node/base.d.ts"
2057
- ],
2058
- "../../../node_modules/@types/node/inspector.d.ts": [
2059
- "../../../node_modules/@types/node/events.d.ts",
2060
- "../../../node_modules/@types/node/inspector.d.ts"
2061
- ],
2062
- "../../../node_modules/@types/node/module.d.ts": [
2063
- "../../../node_modules/@types/node/module.d.ts",
2064
- "../../../node_modules/@types/node/url.d.ts"
2065
- ],
2066
- "../../../node_modules/@types/node/net.d.ts": [
2067
- "../../../node_modules/@types/node/dns.d.ts",
2068
- "../../../node_modules/@types/node/events.d.ts",
2069
- "../../../node_modules/@types/node/net.d.ts",
2070
- "../../../node_modules/@types/node/stream.d.ts"
2071
- ],
2072
- "../../../node_modules/@types/node/os.d.ts": [
2073
- "../../../node_modules/@types/node/os.d.ts"
2074
- ],
2075
- "../../../node_modules/@types/node/path.d.ts": [
2076
- "../../../node_modules/@types/node/path.d.ts"
2077
- ],
2078
- "../../../node_modules/@types/node/perf_hooks.d.ts": [
2079
- "../../../node_modules/@types/node/async_hooks.d.ts",
2080
- "../../../node_modules/@types/node/perf_hooks.d.ts"
2081
- ],
2082
- "../../../node_modules/@types/node/process.d.ts": [
2083
- "../../../node_modules/@types/node/tty.d.ts"
2084
- ],
2085
- "../../../node_modules/@types/node/punycode.d.ts": [
2086
- "../../../node_modules/@types/node/punycode.d.ts"
2087
- ],
2088
- "../../../node_modules/@types/node/querystring.d.ts": [
2089
- "../../../node_modules/@types/node/querystring.d.ts"
2090
- ],
2091
- "../../../node_modules/@types/node/readline.d.ts": [
2092
- "../../../node_modules/@types/node/events.d.ts",
2093
- "../../../node_modules/@types/node/readline.d.ts"
2094
- ],
2095
- "../../../node_modules/@types/node/repl.d.ts": [
2096
- "../../../node_modules/@types/node/readline.d.ts",
2097
- "../../../node_modules/@types/node/repl.d.ts",
2098
- "../../../node_modules/@types/node/util.d.ts",
2099
- "../../../node_modules/@types/node/vm.d.ts"
2100
- ],
2101
- "../../../node_modules/@types/node/stream.d.ts": [
2102
- "../../../node_modules/@types/node/events.d.ts",
2103
- "../../../node_modules/@types/node/stream.d.ts"
2104
- ],
2105
- "../../../node_modules/@types/node/string_decoder.d.ts": [
2106
- "../../../node_modules/@types/node/string_decoder.d.ts"
2107
- ],
2108
- "../../../node_modules/@types/node/timers.d.ts": [
2109
- "../../../node_modules/@types/node/timers.d.ts"
2110
- ],
2111
- "../../../node_modules/@types/node/tls.d.ts": [
2112
- "../../../node_modules/@types/node/net.d.ts",
2113
- "../../../node_modules/@types/node/tls.d.ts"
2114
- ],
2115
- "../../../node_modules/@types/node/trace_events.d.ts": [
2116
- "../../../node_modules/@types/node/trace_events.d.ts"
2117
- ],
2118
- "../../../node_modules/@types/node/ts3.4/base.d.ts": [
2119
- "../../../node_modules/@types/node/async_hooks.d.ts",
2120
- "../../../node_modules/@types/node/buffer.d.ts",
2121
- "../../../node_modules/@types/node/child_process.d.ts",
2122
- "../../../node_modules/@types/node/cluster.d.ts",
2123
- "../../../node_modules/@types/node/console.d.ts",
2124
- "../../../node_modules/@types/node/constants.d.ts",
2125
- "../../../node_modules/@types/node/crypto.d.ts",
2126
- "../../../node_modules/@types/node/dgram.d.ts",
2127
- "../../../node_modules/@types/node/dns.d.ts",
2128
- "../../../node_modules/@types/node/domain.d.ts",
2129
- "../../../node_modules/@types/node/events.d.ts",
2130
- "../../../node_modules/@types/node/fs.d.ts",
2131
- "../../../node_modules/@types/node/fs/promises.d.ts",
2132
- "../../../node_modules/@types/node/globals.d.ts",
2133
- "../../../node_modules/@types/node/http.d.ts",
2134
- "../../../node_modules/@types/node/http2.d.ts",
2135
- "../../../node_modules/@types/node/https.d.ts",
2136
- "../../../node_modules/@types/node/inspector.d.ts",
2137
- "../../../node_modules/@types/node/module.d.ts",
2138
- "../../../node_modules/@types/node/net.d.ts",
2139
- "../../../node_modules/@types/node/os.d.ts",
2140
- "../../../node_modules/@types/node/path.d.ts",
2141
- "../../../node_modules/@types/node/perf_hooks.d.ts",
2142
- "../../../node_modules/@types/node/process.d.ts",
2143
- "../../../node_modules/@types/node/punycode.d.ts",
2144
- "../../../node_modules/@types/node/querystring.d.ts",
2145
- "../../../node_modules/@types/node/readline.d.ts",
2146
- "../../../node_modules/@types/node/repl.d.ts",
2147
- "../../../node_modules/@types/node/stream.d.ts",
2148
- "../../../node_modules/@types/node/string_decoder.d.ts",
2149
- "../../../node_modules/@types/node/timers.d.ts",
2150
- "../../../node_modules/@types/node/tls.d.ts",
2151
- "../../../node_modules/@types/node/trace_events.d.ts",
2152
- "../../../node_modules/@types/node/tty.d.ts",
2153
- "../../../node_modules/@types/node/url.d.ts",
2154
- "../../../node_modules/@types/node/util.d.ts",
2155
- "../../../node_modules/@types/node/v8.d.ts",
2156
- "../../../node_modules/@types/node/vm.d.ts",
2157
- "../../../node_modules/@types/node/worker_threads.d.ts",
2158
- "../../../node_modules/@types/node/zlib.d.ts"
2159
- ],
2160
- "../../../node_modules/@types/node/ts3.6/base.d.ts": [
2161
- "../../../node_modules/@types/node/globals.global.d.ts",
2162
- "../../../node_modules/@types/node/ts3.4/base.d.ts",
2163
- "../../../node_modules/@types/node/wasi.d.ts"
2164
- ],
2165
- "../../../node_modules/@types/node/tty.d.ts": [
2166
- "../../../node_modules/@types/node/net.d.ts",
2167
- "../../../node_modules/@types/node/tty.d.ts"
2168
- ],
2169
- "../../../node_modules/@types/node/url.d.ts": [
2170
- "../../../node_modules/@types/node/querystring.d.ts",
2171
- "../../../node_modules/@types/node/url.d.ts"
2172
- ],
2173
- "../../../node_modules/@types/node/util.d.ts": [
2174
- "../../../node_modules/@types/node/util.d.ts"
2175
- ],
2176
- "../../../node_modules/@types/node/v8.d.ts": [
2177
- "../../../node_modules/@types/node/stream.d.ts",
2178
- "../../../node_modules/@types/node/v8.d.ts"
2179
- ],
2180
- "../../../node_modules/@types/node/vm.d.ts": [
2181
- "../../../node_modules/@types/node/vm.d.ts"
2182
- ],
2183
- "../../../node_modules/@types/node/wasi.d.ts": [
2184
- "../../../node_modules/@types/node/wasi.d.ts"
2185
- ],
2186
- "../../../node_modules/@types/node/worker_threads.d.ts": [
2187
- "../../../node_modules/@types/node/events.d.ts",
2188
- "../../../node_modules/@types/node/fs/promises.d.ts",
2189
- "../../../node_modules/@types/node/stream.d.ts",
2190
- "../../../node_modules/@types/node/url.d.ts",
2191
- "../../../node_modules/@types/node/vm.d.ts",
2192
- "../../../node_modules/@types/node/worker_threads.d.ts"
2193
- ],
2194
- "../../../node_modules/@types/node/zlib.d.ts": [
2195
- "../../../node_modules/@types/node/stream.d.ts",
2196
- "../../../node_modules/@types/node/zlib.d.ts"
2197
- ],
2198
- "../../../node_modules/@types/picomatch/index.d.ts": [
2199
- "../../../node_modules/@types/picomatch/constants.d.ts",
2200
- "../../../node_modules/@types/picomatch/parse.d.ts"
2201
- ],
2202
- "../../../node_modules/@types/prompts/index.d.ts": [
2203
- "../../../node_modules/@types/node/index.d.ts",
2204
- "../../../node_modules/@types/node/stream.d.ts"
2205
- ],
2206
- "../../../node_modules/@types/react-helmet/index.d.ts": [
2207
- "../../../node_modules/@types/react/index.d.ts"
2208
- ],
2209
- "../../../node_modules/@types/react-loadable/index.d.ts": [
2210
- "../../../node_modules/@types/react/index.d.ts"
2211
- ],
2212
- "../../../node_modules/@types/react-router-config/index.d.ts": [
2213
- "../../../node_modules/@types/history/index.d.ts",
2214
- "../../../node_modules/@types/react-router/index.d.ts",
2215
- "../../../node_modules/@types/react/index.d.ts"
2216
- ],
2217
- "../../../node_modules/@types/react-router-dom/index.d.ts": [
2218
- "../../../node_modules/@types/history/index.d.ts",
2219
- "../../../node_modules/@types/react-router/index.d.ts",
2220
- "../../../node_modules/@types/react/index.d.ts"
2221
- ],
2222
- "../../../node_modules/@types/react-router/index.d.ts": [
2223
- "../../../node_modules/@types/history/index.d.ts",
2224
- "../../../node_modules/@types/react/index.d.ts"
2225
- ],
2226
- "../../../node_modules/@types/react/index.d.ts": [
2227
- "../../../node_modules/@types/prop-types/index.d.ts",
2228
- "../../../node_modules/@types/react/global.d.ts",
2229
- "../../../node_modules/csstype/index.d.ts"
2230
- ],
2231
- "../../../node_modules/@types/resolve/index.d.ts": [
2232
- "../../../node_modules/@types/node/index.d.ts"
2233
- ],
2234
- "../../../node_modules/@types/sax/index.d.ts": [
2235
- "../../../node_modules/@types/node/index.d.ts",
2236
- "../../../node_modules/@types/node/stream.d.ts"
2237
- ],
2238
- "../../../node_modules/@types/semver/classes/comparator.d.ts": [
2239
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2240
- "../../../node_modules/@types/semver/index.d.ts"
2241
- ],
2242
- "../../../node_modules/@types/semver/classes/range.d.ts": [
2243
- "../../../node_modules/@types/semver/classes/comparator.d.ts",
2244
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2245
- "../../../node_modules/@types/semver/index.d.ts"
2246
- ],
2247
- "../../../node_modules/@types/semver/classes/semver.d.ts": [
2248
- "../../../node_modules/@types/semver/index.d.ts"
2249
- ],
2250
- "../../../node_modules/@types/semver/functions/clean.d.ts": [
2251
- "../../../node_modules/@types/semver/index.d.ts"
2252
- ],
2253
- "../../../node_modules/@types/semver/functions/cmp.d.ts": [
2254
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2255
- "../../../node_modules/@types/semver/index.d.ts"
2256
- ],
2257
- "../../../node_modules/@types/semver/functions/coerce.d.ts": [
2258
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2259
- "../../../node_modules/@types/semver/index.d.ts"
2260
- ],
2261
- "../../../node_modules/@types/semver/functions/compare-build.d.ts": [
2262
- "../../../node_modules/@types/semver/classes/semver.d.ts"
2263
- ],
2264
- "../../../node_modules/@types/semver/functions/compare-loose.d.ts": [
2265
- "../../../node_modules/@types/semver/classes/semver.d.ts"
2266
- ],
2267
- "../../../node_modules/@types/semver/functions/compare.d.ts": [
2268
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2269
- "../../../node_modules/@types/semver/index.d.ts"
2270
- ],
2271
- "../../../node_modules/@types/semver/functions/diff.d.ts": [
2272
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2273
- "../../../node_modules/@types/semver/index.d.ts"
2274
- ],
2275
- "../../../node_modules/@types/semver/functions/eq.d.ts": [
2276
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2277
- "../../../node_modules/@types/semver/index.d.ts"
2278
- ],
2279
- "../../../node_modules/@types/semver/functions/gt.d.ts": [
2280
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2281
- "../../../node_modules/@types/semver/index.d.ts"
2282
- ],
2283
- "../../../node_modules/@types/semver/functions/gte.d.ts": [
2284
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2285
- "../../../node_modules/@types/semver/index.d.ts"
2286
- ],
2287
- "../../../node_modules/@types/semver/functions/inc.d.ts": [
2288
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2289
- "../../../node_modules/@types/semver/index.d.ts"
2290
- ],
2291
- "../../../node_modules/@types/semver/functions/lt.d.ts": [
2292
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2293
- "../../../node_modules/@types/semver/index.d.ts"
2294
- ],
2295
- "../../../node_modules/@types/semver/functions/lte.d.ts": [
2296
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2297
- "../../../node_modules/@types/semver/index.d.ts"
2298
- ],
2299
- "../../../node_modules/@types/semver/functions/major.d.ts": [
2300
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2301
- "../../../node_modules/@types/semver/index.d.ts"
2302
- ],
2303
- "../../../node_modules/@types/semver/functions/minor.d.ts": [
2304
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2305
- "../../../node_modules/@types/semver/index.d.ts"
2306
- ],
2307
- "../../../node_modules/@types/semver/functions/neq.d.ts": [
2308
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2309
- "../../../node_modules/@types/semver/index.d.ts"
2310
- ],
2311
- "../../../node_modules/@types/semver/functions/parse.d.ts": [
2312
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2313
- "../../../node_modules/@types/semver/index.d.ts"
2314
- ],
2315
- "../../../node_modules/@types/semver/functions/patch.d.ts": [
2316
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2317
- "../../../node_modules/@types/semver/index.d.ts"
2318
- ],
2319
- "../../../node_modules/@types/semver/functions/prerelease.d.ts": [
2320
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2321
- "../../../node_modules/@types/semver/index.d.ts"
2322
- ],
2323
- "../../../node_modules/@types/semver/functions/rcompare.d.ts": [
2324
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2325
- "../../../node_modules/@types/semver/index.d.ts"
2326
- ],
2327
- "../../../node_modules/@types/semver/functions/rsort.d.ts": [
2328
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2329
- "../../../node_modules/@types/semver/index.d.ts"
2330
- ],
2331
- "../../../node_modules/@types/semver/functions/satisfies.d.ts": [
2332
- "../../../node_modules/@types/semver/classes/range.d.ts",
2333
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2334
- "../../../node_modules/@types/semver/index.d.ts"
2335
- ],
2336
- "../../../node_modules/@types/semver/functions/sort.d.ts": [
2337
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2338
- "../../../node_modules/@types/semver/index.d.ts"
2339
- ],
2340
- "../../../node_modules/@types/semver/functions/valid.d.ts": [
2341
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2342
- "../../../node_modules/@types/semver/index.d.ts"
2343
- ],
2344
- "../../../node_modules/@types/semver/index.d.ts": [
2345
- "../../../node_modules/@types/node/index.d.ts",
2346
- "../../../node_modules/@types/semver/classes/comparator.d.ts",
2347
- "../../../node_modules/@types/semver/classes/range.d.ts",
2348
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2349
- "../../../node_modules/@types/semver/functions/clean.d.ts",
2350
- "../../../node_modules/@types/semver/functions/cmp.d.ts",
2351
- "../../../node_modules/@types/semver/functions/coerce.d.ts",
2352
- "../../../node_modules/@types/semver/functions/compare-build.d.ts",
2353
- "../../../node_modules/@types/semver/functions/compare-loose.d.ts",
2354
- "../../../node_modules/@types/semver/functions/compare.d.ts",
2355
- "../../../node_modules/@types/semver/functions/diff.d.ts",
2356
- "../../../node_modules/@types/semver/functions/eq.d.ts",
2357
- "../../../node_modules/@types/semver/functions/gt.d.ts",
2358
- "../../../node_modules/@types/semver/functions/gte.d.ts",
2359
- "../../../node_modules/@types/semver/functions/inc.d.ts",
2360
- "../../../node_modules/@types/semver/functions/lt.d.ts",
2361
- "../../../node_modules/@types/semver/functions/lte.d.ts",
2362
- "../../../node_modules/@types/semver/functions/major.d.ts",
2363
- "../../../node_modules/@types/semver/functions/minor.d.ts",
2364
- "../../../node_modules/@types/semver/functions/neq.d.ts",
2365
- "../../../node_modules/@types/semver/functions/parse.d.ts",
2366
- "../../../node_modules/@types/semver/functions/patch.d.ts",
2367
- "../../../node_modules/@types/semver/functions/prerelease.d.ts",
2368
- "../../../node_modules/@types/semver/functions/rcompare.d.ts",
2369
- "../../../node_modules/@types/semver/functions/rsort.d.ts",
2370
- "../../../node_modules/@types/semver/functions/satisfies.d.ts",
2371
- "../../../node_modules/@types/semver/functions/sort.d.ts",
2372
- "../../../node_modules/@types/semver/functions/valid.d.ts",
2373
- "../../../node_modules/@types/semver/internals/identifiers.d.ts",
2374
- "../../../node_modules/@types/semver/ranges/gtr.d.ts",
2375
- "../../../node_modules/@types/semver/ranges/intersects.d.ts",
2376
- "../../../node_modules/@types/semver/ranges/ltr.d.ts",
2377
- "../../../node_modules/@types/semver/ranges/max-satisfying.d.ts",
2378
- "../../../node_modules/@types/semver/ranges/min-satisfying.d.ts",
2379
- "../../../node_modules/@types/semver/ranges/min-version.d.ts",
2380
- "../../../node_modules/@types/semver/ranges/outside.d.ts",
2381
- "../../../node_modules/@types/semver/ranges/to-comparators.d.ts",
2382
- "../../../node_modules/@types/semver/ranges/valid.d.ts"
2383
- ],
2384
- "../../../node_modules/@types/semver/ranges/gtr.d.ts": [
2385
- "../../../node_modules/@types/semver/classes/range.d.ts",
2386
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2387
- "../../../node_modules/@types/semver/index.d.ts"
2388
- ],
2389
- "../../../node_modules/@types/semver/ranges/intersects.d.ts": [
2390
- "../../../node_modules/@types/semver/classes/range.d.ts",
2391
- "../../../node_modules/@types/semver/index.d.ts"
2392
- ],
2393
- "../../../node_modules/@types/semver/ranges/ltr.d.ts": [
2394
- "../../../node_modules/@types/semver/classes/range.d.ts",
2395
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2396
- "../../../node_modules/@types/semver/index.d.ts"
2397
- ],
2398
- "../../../node_modules/@types/semver/ranges/max-satisfying.d.ts": [
2399
- "../../../node_modules/@types/semver/classes/range.d.ts",
2400
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2401
- "../../../node_modules/@types/semver/index.d.ts"
2402
- ],
2403
- "../../../node_modules/@types/semver/ranges/min-satisfying.d.ts": [
2404
- "../../../node_modules/@types/semver/classes/range.d.ts",
2405
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2406
- "../../../node_modules/@types/semver/index.d.ts"
2407
- ],
2408
- "../../../node_modules/@types/semver/ranges/min-version.d.ts": [
2409
- "../../../node_modules/@types/semver/classes/range.d.ts",
2410
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2411
- "../../../node_modules/@types/semver/index.d.ts"
2412
- ],
2413
- "../../../node_modules/@types/semver/ranges/outside.d.ts": [
2414
- "../../../node_modules/@types/semver/classes/range.d.ts",
2415
- "../../../node_modules/@types/semver/classes/semver.d.ts",
2416
- "../../../node_modules/@types/semver/index.d.ts"
2417
- ],
2418
- "../../../node_modules/@types/semver/ranges/to-comparators.d.ts": [
2419
- "../../../node_modules/@types/semver/classes/range.d.ts",
2420
- "../../../node_modules/@types/semver/index.d.ts"
2421
- ],
2422
- "../../../node_modules/@types/semver/ranges/valid.d.ts": [
2423
- "../../../node_modules/@types/semver/classes/range.d.ts",
2424
- "../../../node_modules/@types/semver/index.d.ts"
2425
- ],
2426
- "../../../node_modules/@types/serve-static/index.d.ts": [
2427
- "../../../node_modules/@types/express-serve-static-core/index.d.ts",
2428
- "../../../node_modules/@types/mime/index.d.ts"
2429
- ],
2430
- "../../../node_modules/@types/shelljs/index.d.ts": [
2431
- "../../../node_modules/@types/glob/index.d.ts",
2432
- "../../../node_modules/@types/node/child_process.d.ts",
2433
- "../../../node_modules/@types/node/index.d.ts"
2434
- ],
2435
- "../../../node_modules/@types/uglify-js/index.d.ts": [
2436
- "../../../node_modules/source-map/source-map.d.ts"
2437
- ],
2438
- "../../../node_modules/@types/webpack-dev-server/index.d.ts": [
2439
- "../../../node_modules/@types/connect-history-api-fallback/index.d.ts",
2440
- "../../../node_modules/@types/express/index.d.ts",
2441
- "../../../node_modules/@types/http-proxy-middleware/index.d.ts",
2442
- "../../../node_modules/@types/node/http.d.ts",
2443
- "../../../node_modules/@types/node/https.d.ts",
2444
- "../../../node_modules/@types/serve-static/index.d.ts",
2445
- "../../../node_modules/webpack/types.d.ts"
2446
- ],
2447
- "../../../node_modules/@types/webpack-sources/index.d.ts": [
2448
- "../../../node_modules/@types/node/crypto.d.ts",
2449
- "../../../node_modules/@types/node/index.d.ts",
2450
- "../../../node_modules/@types/source-list-map/index.d.ts",
2451
- "../../../node_modules/source-map/source-map.d.ts"
2452
- ],
2453
- "../../../node_modules/@types/webpack/index.d.ts": [
2454
- "../../../node_modules/@types/anymatch/index.d.ts",
2455
- "../../../node_modules/@types/node/crypto.d.ts",
2456
- "../../../node_modules/@types/node/index.d.ts",
2457
- "../../../node_modules/@types/uglify-js/index.d.ts",
2458
- "../../../node_modules/@types/webpack-sources/index.d.ts",
2459
- "../../../node_modules/source-map/source-map.d.ts",
2460
- "../../../node_modules/tapable/tapable.d.ts"
2461
- ],
2462
- "../../../node_modules/@types/yargs/index.d.ts": [
2463
- "../../../node_modules/@types/yargs-parser/index.d.ts"
2464
- ],
2465
- "../../../node_modules/ast-types/fork.d.ts": [
2466
- "../../../node_modules/ast-types/lib/node-path.d.ts",
2467
- "../../../node_modules/ast-types/lib/path-visitor.d.ts",
2468
- "../../../node_modules/ast-types/lib/path.d.ts",
2469
- "../../../node_modules/ast-types/lib/types.d.ts",
2470
- "../../../node_modules/ast-types/types.d.ts"
2471
- ],
2472
- "../../../node_modules/ast-types/gen/builders.d.ts": [
2473
- "../../../node_modules/ast-types/gen/kinds.d.ts",
2474
- "../../../node_modules/ast-types/gen/nodes.d.ts"
2475
- ],
2476
- "../../../node_modules/ast-types/gen/kinds.d.ts": [
2477
- "../../../node_modules/ast-types/gen/nodes.d.ts"
2478
- ],
2479
- "../../../node_modules/ast-types/gen/namedTypes.d.ts": [
2480
- "../../../node_modules/ast-types/gen/nodes.d.ts",
2481
- "../../../node_modules/ast-types/lib/types.d.ts"
2482
- ],
2483
- "../../../node_modules/ast-types/gen/nodes.d.ts": [
2484
- "../../../node_modules/ast-types/gen/kinds.d.ts",
2485
- "../../../node_modules/ast-types/types.d.ts"
2486
- ],
2487
- "../../../node_modules/ast-types/gen/visitor.d.ts": [
2488
- "../../../node_modules/ast-types/gen/nodes.d.ts",
2489
- "../../../node_modules/ast-types/lib/node-path.d.ts",
2490
- "../../../node_modules/ast-types/lib/path-visitor.d.ts"
2491
- ],
2492
- "../../../node_modules/ast-types/lib/node-path.d.ts": [
2493
- "../../../node_modules/ast-types/lib/path.d.ts",
2494
- "../../../node_modules/ast-types/lib/scope.d.ts",
2495
- "../../../node_modules/ast-types/lib/types.d.ts",
2496
- "../../../node_modules/ast-types/types.d.ts"
2497
- ],
2498
- "../../../node_modules/ast-types/lib/path-visitor.d.ts": [
2499
- "../../../node_modules/ast-types/lib/node-path.d.ts",
2500
- "../../../node_modules/ast-types/lib/types.d.ts",
2501
- "../../../node_modules/ast-types/types.d.ts"
2502
- ],
2503
- "../../../node_modules/ast-types/lib/path.d.ts": [
2504
- "../../../node_modules/ast-types/lib/types.d.ts",
2505
- "../../../node_modules/ast-types/types.d.ts"
2506
- ],
2507
- "../../../node_modules/ast-types/lib/scope.d.ts": [
2508
- "../../../node_modules/ast-types/types.d.ts"
2509
- ],
2510
- "../../../node_modules/ast-types/lib/types.d.ts": [
2511
- "../../../node_modules/ast-types/types.d.ts"
2512
- ],
2513
- "../../../node_modules/ast-types/main.d.ts": [
2514
- "../../../node_modules/ast-types/fork.d.ts",
2515
- "../../../node_modules/ast-types/gen/builders.d.ts",
2516
- "../../../node_modules/ast-types/gen/namedTypes.d.ts",
2517
- "../../../node_modules/ast-types/gen/visitor.d.ts",
2518
- "../../../node_modules/ast-types/lib/node-path.d.ts",
2519
- "../../../node_modules/ast-types/lib/types.d.ts",
2520
- "../../../node_modules/ast-types/types.d.ts"
2521
- ],
2522
- "../../../node_modules/jest-diff/build/diffLines.d.ts": [
2523
- "../../../node_modules/jest-diff/build/cleanupSemantic.d.ts",
2524
- "../../../node_modules/jest-diff/build/types.d.ts"
2525
- ],
2526
- "../../../node_modules/jest-diff/build/index.d.ts": [
2527
- "../../../node_modules/jest-diff/build/cleanupSemantic.d.ts",
2528
- "../../../node_modules/jest-diff/build/diffLines.d.ts",
2529
- "../../../node_modules/jest-diff/build/printDiffs.d.ts",
2530
- "../../../node_modules/jest-diff/build/types.d.ts"
2531
- ],
2532
- "../../../node_modules/jest-diff/build/printDiffs.d.ts": [
2533
- "../../../node_modules/jest-diff/build/cleanupSemantic.d.ts",
2534
- "../../../node_modules/jest-diff/build/types.d.ts"
2535
- ],
2536
- "../../../node_modules/pretty-format/build/index.d.ts": [
2537
- "../../../node_modules/pretty-format/build/types.d.ts"
2538
- ],
2539
- "../../../node_modules/recast/lib/options.d.ts": [
2540
- "../../../node_modules/ast-types/types.d.ts"
2541
- ],
2542
- "../../../node_modules/recast/lib/parser.d.ts": [
2543
- "../../../node_modules/recast/lib/options.d.ts"
2544
- ],
2545
- "../../../node_modules/recast/lib/types.d.ts": [
2546
- "../../../node_modules/ast-types/main.d.ts"
2547
- ],
2548
- "../../../node_modules/recast/main.d.ts": [
2549
- "../../../node_modules/recast/lib/options.d.ts",
2550
- "../../../node_modules/recast/lib/parser.d.ts",
2551
- "../../../node_modules/recast/lib/printer.d.ts",
2552
- "../../../node_modules/recast/lib/types.d.ts"
2553
- ],
2554
- "../../../node_modules/schema-utils/declarations/ValidationError.d.ts": [
2555
- "../../../node_modules/@types/json-schema/index.d.ts",
2556
- "../../../node_modules/ajv/lib/ajv.d.ts",
2557
- "../../../node_modules/schema-utils/declarations/validate.d.ts"
2558
- ],
2559
- "../../../node_modules/schema-utils/declarations/index.d.ts": [
2560
- "../../../node_modules/schema-utils/declarations/ValidationError.d.ts",
2561
- "../../../node_modules/schema-utils/declarations/validate.d.ts"
2562
- ],
2563
- "../../../node_modules/schema-utils/declarations/validate.d.ts": [
2564
- "../../../node_modules/@types/json-schema/index.d.ts",
2565
- "../../../node_modules/ajv/lib/ajv.d.ts",
2566
- "../../../node_modules/schema-utils/declarations/ValidationError.d.ts"
2567
- ],
2568
- "../../../node_modules/webpack/types.d.ts": [
2569
- "../../../node_modules/@types/estree/index.d.ts",
2570
- "../../../node_modules/schema-utils/declarations/index.d.ts",
2571
- "../../../node_modules/schema-utils/declarations/validate.d.ts",
2572
- "../../../node_modules/tapable/tapable.d.ts"
2573
- ],
2574
- "../../docusaurus-types/src/index.d.ts": [
2575
- "../../../node_modules/@types/node/querystring.d.ts",
2576
- "../../../node_modules/joi/lib/index.d.ts",
2577
- "../../../node_modules/webpack/types.d.ts",
2578
- "../../docusaurus-types/node_modules/commander/typings/index.d.ts"
2579
- ],
2580
- "../src/codeTranslationsUtils.ts": [
2581
- "../../../node_modules/@types/fs-extra/index.d.ts",
2582
- "../../../node_modules/@types/node/path.d.ts",
2583
- "../../../node_modules/tslib/tslib.d.ts"
2584
- ],
2585
- "../src/escapePath.ts": [
2586
- "../../../node_modules/tslib/tslib.d.ts"
2587
- ],
2588
- "../src/index.ts": [
2589
- "../../../node_modules/@types/fs-extra/index.d.ts",
2590
- "../../../node_modules/@types/lodash/index.d.ts",
2591
- "../../../node_modules/@types/node/crypto.d.ts",
2592
- "../../../node_modules/@types/node/path.d.ts",
2593
- "../../../node_modules/@types/node/url.d.ts",
2594
- "../../../node_modules/chalk/index.d.ts",
2595
- "../../../node_modules/tslib/tslib.d.ts",
2596
- "../../docusaurus-types/src/index.d.ts",
2597
- "../node_modules/escape-string-regexp/index.d.ts",
2598
- "../src/codeTranslationsUtils.ts",
2599
- "../src/escapePath.ts",
2600
- "../src/markdownLinks.ts",
2601
- "../src/markdownParser.ts",
2602
- "../src/posixPath.ts"
2603
- ],
2604
- "../src/markdownLinks.ts": [
2605
- "../../../node_modules/@types/node/url.d.ts",
2606
- "../../../node_modules/tslib/tslib.d.ts",
2607
- "../src/index.ts"
2608
- ],
2609
- "../src/markdownParser.ts": [
2610
- "../../../node_modules/@types/fs-extra/index.d.ts",
2611
- "../../../node_modules/chalk/index.d.ts",
2612
- "../../../node_modules/gray-matter/gray-matter.d.ts",
2613
- "../../../node_modules/tslib/tslib.d.ts"
2614
- ],
2615
- "../src/posixPath.ts": [
2616
- "../../../node_modules/tslib/tslib.d.ts"
2617
- ]
2618
- },
2619
- "exportedModulesMap": {
2620
- "../../../node_modules/@babel/parser/typings/babel-parser.d.ts": [
2621
- "../../../node_modules/@babel/types/lib/index.d.ts"
2622
- ],
2623
- "../../../node_modules/@types/babel__core/index.d.ts": [
2624
- "../../../node_modules/@babel/parser/typings/babel-parser.d.ts",
2625
- "../../../node_modules/@babel/types/lib/index.d.ts",
2626
- "../../../node_modules/@types/babel__generator/index.d.ts",
2627
- "../../../node_modules/@types/babel__template/index.d.ts",
2628
- "../../../node_modules/@types/babel__traverse/index.d.ts"
2629
- ],
2630
- "../../../node_modules/@types/babel__generator/index.d.ts": [
2631
- "../../../node_modules/@babel/types/lib/index.d.ts"
2632
- ],
2633
- "../../../node_modules/@types/babel__template/index.d.ts": [
2634
- "../../../node_modules/@babel/parser/typings/babel-parser.d.ts",
2635
- "../../../node_modules/@babel/types/lib/index.d.ts"
2636
- ],
2637
- "../../../node_modules/@types/babel__traverse/index.d.ts": [
2638
- "../../../node_modules/@babel/types/lib/index.d.ts"
2639
- ],
2640
- "../../../node_modules/@types/body-parser/index.d.ts": [
2641
- "../../../node_modules/@types/connect/index.d.ts",
2642
- "../../../node_modules/@types/node/http.d.ts",
2643
- "../../../node_modules/@types/node/index.d.ts"
2644
- ],
2645
- "../../../node_modules/@types/cheerio/index.d.ts": [
2646
- "../../../node_modules/@types/node/index.d.ts"
2647
- ],
2648
- "../../../node_modules/@types/clean-css/index.d.ts": [
2649
- "../../../node_modules/@types/node/http.d.ts",
2650
- "../../../node_modules/@types/node/https.d.ts",
2651
- "../../../node_modules/@types/node/index.d.ts"
2652
- ],
2653
- "../../../node_modules/@types/color-convert/conversions.d.ts": [
2654
- "../../../node_modules/@types/color-name/index.d.ts"
2655
- ],
2656
- "../../../node_modules/@types/color-convert/index.d.ts": [
2657
- "../../../node_modules/@types/color-convert/conversions.d.ts",
2658
- "../../../node_modules/@types/color-convert/route.d.ts"
2659
- ],
2660
- "../../../node_modules/@types/color-convert/route.d.ts": [
2661
- "../../../node_modules/@types/color-convert/conversions.d.ts"
2662
- ],
2663
- "../../../node_modules/@types/color/index.d.ts": [
2664
- "../../../node_modules/@types/color-convert/index.d.ts"
2665
- ],
2666
- "../../../node_modules/@types/connect-history-api-fallback/index.d.ts": [
2667
- "../../../node_modules/@types/express-serve-static-core/index.d.ts",
2668
- "../../../node_modules/@types/node/index.d.ts",
2669
- "../../../node_modules/@types/node/url.d.ts"
2670
- ],
2671
- "../../../node_modules/@types/connect/index.d.ts": [
2672
- "../../../node_modules/@types/node/http.d.ts",
2673
- "../../../node_modules/@types/node/index.d.ts"
2674
- ],
2675
- "../../../node_modules/@types/cssnano/index.d.ts": [
2676
- "../../../node_modules/@types/cssnano/node_modules/postcss/lib/postcss.d.ts"
2677
- ],
2678
- "../../../node_modules/@types/cssnano/node_modules/postcss/lib/postcss.d.ts": [
2679
- "../../../node_modules/source-map/source-map.d.ts"
2680
- ],
2681
- "../../../node_modules/@types/decompress/index.d.ts": [
2682
- "../../../node_modules/@types/node/index.d.ts"
2683
- ],
2684
- "../../../node_modules/@types/download/index.d.ts": [
2685
- "../../../node_modules/@types/decompress/index.d.ts",
2686
- "../../../node_modules/@types/got/index.d.ts",
2687
- "../../../node_modules/@types/node/index.d.ts"
2688
- ],
2689
- "../../../node_modules/@types/eslint-scope/index.d.ts": [
2690
- "../../../node_modules/@types/eslint/ts3.1/index.d.ts",
2691
- "../../../node_modules/@types/estree/index.d.ts"
2692
- ],
2693
- "../../../node_modules/@types/eslint/ts3.1/index.d.ts": [
2694
- "../../../node_modules/@types/eslint/ts3.1/helpers.d.ts",
2695
- "../../../node_modules/@types/estree/index.d.ts",
2696
- "../../../node_modules/@types/json-schema/index.d.ts"
2697
- ],
2698
- "../../../node_modules/@types/express-serve-static-core/index.d.ts": [
2699
- "../../../node_modules/@types/node/events.d.ts",
2700
- "../../../node_modules/@types/node/http.d.ts",
2701
- "../../../node_modules/@types/node/index.d.ts",
2702
- "../../../node_modules/@types/range-parser/index.d.ts"
2703
- ],
2704
- "../../../node_modules/@types/express/index.d.ts": [
2705
- "../../../node_modules/@types/body-parser/index.d.ts",
2706
- "../../../node_modules/@types/express-serve-static-core/index.d.ts",
2707
- "../../../node_modules/@types/qs/index.d.ts",
2708
- "../../../node_modules/@types/serve-static/index.d.ts"
2709
- ],
2710
- "../../../node_modules/@types/fs-extra/index.d.ts": [
2711
- "../../../node_modules/@types/node/fs.d.ts",
2712
- "../../../node_modules/@types/node/index.d.ts"
2713
- ],
2714
- "../../../node_modules/@types/glob/index.d.ts": [
2715
- "../../../node_modules/@types/minimatch/index.d.ts",
2716
- "../../../node_modules/@types/node/events.d.ts",
2717
- "../../../node_modules/@types/node/index.d.ts"
2718
- ],
2719
- "../../../node_modules/@types/got/index.d.ts": [
2720
- "../../../node_modules/@types/node/http.d.ts",
2721
- "../../../node_modules/@types/node/https.d.ts",
2722
- "../../../node_modules/@types/node/index.d.ts",
2723
- "../../../node_modules/@types/node/stream.d.ts",
2724
- "../../../node_modules/@types/node/url.d.ts"
2725
- ],
2726
- "../../../node_modules/@types/graceful-fs/index.d.ts": [
2727
- "../../../node_modules/@types/node/fs.d.ts",
2728
- "../../../node_modules/@types/node/index.d.ts"
2729
- ],
2730
- "../../../node_modules/@types/hast/index.d.ts": [
2731
- "../../../node_modules/@types/unist/index.d.ts"
2732
- ],
2733
- "../../../node_modules/@types/history/LocationUtils.d.ts": [
2734
- "../../../node_modules/@types/history/index.d.ts"
2735
- ],
2736
- "../../../node_modules/@types/history/PathUtils.d.ts": [
2737
- "../../../node_modules/@types/history/index.d.ts"
2738
- ],
2739
- "../../../node_modules/@types/history/createBrowserHistory.d.ts": [
2740
- "../../../node_modules/@types/history/DOMUtils.d.ts",
2741
- "../../../node_modules/@types/history/index.d.ts"
2742
- ],
2743
- "../../../node_modules/@types/history/createHashHistory.d.ts": [
2744
- "../../../node_modules/@types/history/DOMUtils.d.ts",
2745
- "../../../node_modules/@types/history/index.d.ts"
2746
- ],
2747
- "../../../node_modules/@types/history/createMemoryHistory.d.ts": [
2748
- "../../../node_modules/@types/history/DOMUtils.d.ts",
2749
- "../../../node_modules/@types/history/index.d.ts"
2750
- ],
2751
- "../../../node_modules/@types/history/index.d.ts": [
2752
- "../../../node_modules/@types/history/LocationUtils.d.ts",
2753
- "../../../node_modules/@types/history/PathUtils.d.ts",
2754
- "../../../node_modules/@types/history/createBrowserHistory.d.ts",
2755
- "../../../node_modules/@types/history/createHashHistory.d.ts",
2756
- "../../../node_modules/@types/history/createMemoryHistory.d.ts"
2757
- ],
2758
- "../../../node_modules/@types/html-minifier/index.d.ts": [
2759
- "../../../node_modules/@types/clean-css/index.d.ts",
2760
- "../../../node_modules/@types/relateurl/index.d.ts",
2761
- "../../../node_modules/@types/uglify-js/index.d.ts"
2762
- ],
2763
- "../../../node_modules/@types/html-webpack-plugin/index.d.ts": [
2764
- "../../../node_modules/@types/html-minifier/index.d.ts",
2765
- "../../../node_modules/tapable/tapable.d.ts",
2766
- "../../../node_modules/webpack/types.d.ts"
2767
- ],
2768
- "../../../node_modules/@types/http-proxy-middleware/index.d.ts": [
2769
- "../../../node_modules/@types/connect/index.d.ts",
2770
- "../../../node_modules/@types/http-proxy/index.d.ts",
2771
- "../../../node_modules/@types/node/http.d.ts",
2772
- "../../../node_modules/@types/node/index.d.ts",
2773
- "../../../node_modules/@types/node/net.d.ts",
2774
- "../../../node_modules/@types/node/stream.d.ts",
2775
- "../../../node_modules/@types/node/tls.d.ts"
2776
- ],
2777
- "../../../node_modules/@types/http-proxy/index.d.ts": [
2778
- "../../../node_modules/@types/node/events.d.ts",
2779
- "../../../node_modules/@types/node/http.d.ts",
2780
- "../../../node_modules/@types/node/https.d.ts",
2781
- "../../../node_modules/@types/node/index.d.ts",
2782
- "../../../node_modules/@types/node/net.d.ts",
2783
- "../../../node_modules/@types/node/stream.d.ts",
2784
- "../../../node_modules/@types/node/url.d.ts"
2785
- ],
2786
- "../../../node_modules/@types/istanbul-lib-report/index.d.ts": [
2787
- "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts"
2788
- ],
2789
- "../../../node_modules/@types/istanbul-reports/index.d.ts": [
2790
- "../../../node_modules/@types/istanbul-lib-report/index.d.ts"
2791
- ],
2792
- "../../../node_modules/@types/jest/index.d.ts": [
2793
- "../../../node_modules/jest-diff/build/index.d.ts",
2794
- "../../../node_modules/pretty-format/build/index.d.ts"
2795
- ],
2796
- "../../../node_modules/@types/jscodeshift/index.d.ts": [
2797
- "../../../node_modules/@types/jscodeshift/src/core.d.ts"
2798
- ],
2799
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts": [
2800
- "../../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts",
2801
- "../../../node_modules/@types/jscodeshift/src/collections/Node.d.ts",
2802
- "../../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts",
2803
- "../../../node_modules/recast/main.d.ts"
2804
- ],
2805
- "../../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts": [
2806
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts",
2807
- "../../../node_modules/ast-types/gen/nodes.d.ts",
2808
- "../../../node_modules/recast/main.d.ts"
2809
- ],
2810
- "../../../node_modules/@types/jscodeshift/src/collections/Node.d.ts": [
2811
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts",
2812
- "../../../node_modules/ast-types/gen/nodes.d.ts",
2813
- "../../../node_modules/recast/main.d.ts"
2814
- ],
2815
- "../../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts": [
2816
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts",
2817
- "../../../node_modules/ast-types/gen/nodes.d.ts",
2818
- "../../../node_modules/recast/main.d.ts"
2819
- ],
2820
- "../../../node_modules/@types/jscodeshift/src/core.d.ts": [
2821
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts",
2822
- "../../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts",
2823
- "../../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts",
2824
- "../../../node_modules/@types/jscodeshift/src/template.d.ts",
2825
- "../../../node_modules/ast-types/gen/nodes.d.ts",
2826
- "../../../node_modules/recast/main.d.ts"
2827
- ],
2828
- "../../../node_modules/@types/jscodeshift/src/template.d.ts": [
2829
- "../../../node_modules/recast/main.d.ts"
2830
- ],
2831
- "../../../node_modules/@types/katex/contrib/auto-render.d.ts": [
2832
- "../../../node_modules/@types/katex/index.d.ts"
2833
- ],
2834
- "../../../node_modules/@types/katex/contrib/index.d.ts": [
2835
- "../../../node_modules/@types/katex/contrib/auto-render.d.ts",
2836
- "../../../node_modules/@types/katex/contrib/katex2tex.d.ts"
2837
- ],
2838
- "../../../node_modules/@types/katex/index.d.ts": [
2839
- "../../../node_modules/@types/katex/contrib/index.d.ts"
2840
- ],
2841
- "../../../node_modules/@types/loader-utils/index.d.ts": [
2842
- "../../../node_modules/@types/node/index.d.ts",
2843
- "../../../node_modules/webpack/types.d.ts"
2844
- ],
2845
- "../../../node_modules/@types/lodash/common/array.d.ts": [
2846
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2847
- "../../../node_modules/@types/lodash/common/common.d.ts",
2848
- "../../../node_modules/@types/lodash/common/date.d.ts",
2849
- "../../../node_modules/@types/lodash/common/function.d.ts",
2850
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2851
- "../../../node_modules/@types/lodash/common/math.d.ts",
2852
- "../../../node_modules/@types/lodash/common/number.d.ts",
2853
- "../../../node_modules/@types/lodash/common/object.d.ts",
2854
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2855
- "../../../node_modules/@types/lodash/common/string.d.ts",
2856
- "../../../node_modules/@types/lodash/common/util.d.ts",
2857
- "../../../node_modules/@types/lodash/index.d.ts"
2858
- ],
2859
- "../../../node_modules/@types/lodash/common/collection.d.ts": [
2860
- "../../../node_modules/@types/lodash/common/array.d.ts",
2861
- "../../../node_modules/@types/lodash/common/common.d.ts",
2862
- "../../../node_modules/@types/lodash/common/date.d.ts",
2863
- "../../../node_modules/@types/lodash/common/function.d.ts",
2864
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2865
- "../../../node_modules/@types/lodash/common/math.d.ts",
2866
- "../../../node_modules/@types/lodash/common/number.d.ts",
2867
- "../../../node_modules/@types/lodash/common/object.d.ts",
2868
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2869
- "../../../node_modules/@types/lodash/common/string.d.ts",
2870
- "../../../node_modules/@types/lodash/common/util.d.ts",
2871
- "../../../node_modules/@types/lodash/index.d.ts"
2872
- ],
2873
- "../../../node_modules/@types/lodash/common/common.d.ts": [
2874
- "../../../node_modules/@types/lodash/common/array.d.ts",
2875
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2876
- "../../../node_modules/@types/lodash/common/date.d.ts",
2877
- "../../../node_modules/@types/lodash/common/function.d.ts",
2878
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2879
- "../../../node_modules/@types/lodash/common/math.d.ts",
2880
- "../../../node_modules/@types/lodash/common/number.d.ts",
2881
- "../../../node_modules/@types/lodash/common/object.d.ts",
2882
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2883
- "../../../node_modules/@types/lodash/common/string.d.ts",
2884
- "../../../node_modules/@types/lodash/common/util.d.ts",
2885
- "../../../node_modules/@types/lodash/index.d.ts"
2886
- ],
2887
- "../../../node_modules/@types/lodash/common/date.d.ts": [
2888
- "../../../node_modules/@types/lodash/common/array.d.ts",
2889
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2890
- "../../../node_modules/@types/lodash/common/common.d.ts",
2891
- "../../../node_modules/@types/lodash/common/function.d.ts",
2892
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2893
- "../../../node_modules/@types/lodash/common/math.d.ts",
2894
- "../../../node_modules/@types/lodash/common/number.d.ts",
2895
- "../../../node_modules/@types/lodash/common/object.d.ts",
2896
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2897
- "../../../node_modules/@types/lodash/common/string.d.ts",
2898
- "../../../node_modules/@types/lodash/common/util.d.ts",
2899
- "../../../node_modules/@types/lodash/index.d.ts"
2900
- ],
2901
- "../../../node_modules/@types/lodash/common/function.d.ts": [
2902
- "../../../node_modules/@types/lodash/common/array.d.ts",
2903
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2904
- "../../../node_modules/@types/lodash/common/common.d.ts",
2905
- "../../../node_modules/@types/lodash/common/date.d.ts",
2906
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2907
- "../../../node_modules/@types/lodash/common/math.d.ts",
2908
- "../../../node_modules/@types/lodash/common/number.d.ts",
2909
- "../../../node_modules/@types/lodash/common/object.d.ts",
2910
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2911
- "../../../node_modules/@types/lodash/common/string.d.ts",
2912
- "../../../node_modules/@types/lodash/common/util.d.ts",
2913
- "../../../node_modules/@types/lodash/index.d.ts"
2914
- ],
2915
- "../../../node_modules/@types/lodash/common/lang.d.ts": [
2916
- "../../../node_modules/@types/lodash/common/array.d.ts",
2917
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2918
- "../../../node_modules/@types/lodash/common/common.d.ts",
2919
- "../../../node_modules/@types/lodash/common/date.d.ts",
2920
- "../../../node_modules/@types/lodash/common/function.d.ts",
2921
- "../../../node_modules/@types/lodash/common/math.d.ts",
2922
- "../../../node_modules/@types/lodash/common/number.d.ts",
2923
- "../../../node_modules/@types/lodash/common/object.d.ts",
2924
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2925
- "../../../node_modules/@types/lodash/common/string.d.ts",
2926
- "../../../node_modules/@types/lodash/common/util.d.ts",
2927
- "../../../node_modules/@types/lodash/index.d.ts"
2928
- ],
2929
- "../../../node_modules/@types/lodash/common/math.d.ts": [
2930
- "../../../node_modules/@types/lodash/common/array.d.ts",
2931
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2932
- "../../../node_modules/@types/lodash/common/common.d.ts",
2933
- "../../../node_modules/@types/lodash/common/date.d.ts",
2934
- "../../../node_modules/@types/lodash/common/function.d.ts",
2935
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2936
- "../../../node_modules/@types/lodash/common/number.d.ts",
2937
- "../../../node_modules/@types/lodash/common/object.d.ts",
2938
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2939
- "../../../node_modules/@types/lodash/common/string.d.ts",
2940
- "../../../node_modules/@types/lodash/common/util.d.ts",
2941
- "../../../node_modules/@types/lodash/index.d.ts"
2942
- ],
2943
- "../../../node_modules/@types/lodash/common/number.d.ts": [
2944
- "../../../node_modules/@types/lodash/common/array.d.ts",
2945
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2946
- "../../../node_modules/@types/lodash/common/common.d.ts",
2947
- "../../../node_modules/@types/lodash/common/date.d.ts",
2948
- "../../../node_modules/@types/lodash/common/function.d.ts",
2949
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2950
- "../../../node_modules/@types/lodash/common/math.d.ts",
2951
- "../../../node_modules/@types/lodash/common/object.d.ts",
2952
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2953
- "../../../node_modules/@types/lodash/common/string.d.ts",
2954
- "../../../node_modules/@types/lodash/common/util.d.ts",
2955
- "../../../node_modules/@types/lodash/index.d.ts"
2956
- ],
2957
- "../../../node_modules/@types/lodash/common/object.d.ts": [
2958
- "../../../node_modules/@types/lodash/common/array.d.ts",
2959
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2960
- "../../../node_modules/@types/lodash/common/common.d.ts",
2961
- "../../../node_modules/@types/lodash/common/date.d.ts",
2962
- "../../../node_modules/@types/lodash/common/function.d.ts",
2963
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2964
- "../../../node_modules/@types/lodash/common/math.d.ts",
2965
- "../../../node_modules/@types/lodash/common/number.d.ts",
2966
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2967
- "../../../node_modules/@types/lodash/common/string.d.ts",
2968
- "../../../node_modules/@types/lodash/common/util.d.ts",
2969
- "../../../node_modules/@types/lodash/index.d.ts"
2970
- ],
2971
- "../../../node_modules/@types/lodash/common/seq.d.ts": [
2972
- "../../../node_modules/@types/lodash/common/array.d.ts",
2973
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2974
- "../../../node_modules/@types/lodash/common/common.d.ts",
2975
- "../../../node_modules/@types/lodash/common/date.d.ts",
2976
- "../../../node_modules/@types/lodash/common/function.d.ts",
2977
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2978
- "../../../node_modules/@types/lodash/common/math.d.ts",
2979
- "../../../node_modules/@types/lodash/common/number.d.ts",
2980
- "../../../node_modules/@types/lodash/common/object.d.ts",
2981
- "../../../node_modules/@types/lodash/common/string.d.ts",
2982
- "../../../node_modules/@types/lodash/common/util.d.ts",
2983
- "../../../node_modules/@types/lodash/index.d.ts"
2984
- ],
2985
- "../../../node_modules/@types/lodash/common/string.d.ts": [
2986
- "../../../node_modules/@types/lodash/common/array.d.ts",
2987
- "../../../node_modules/@types/lodash/common/collection.d.ts",
2988
- "../../../node_modules/@types/lodash/common/common.d.ts",
2989
- "../../../node_modules/@types/lodash/common/date.d.ts",
2990
- "../../../node_modules/@types/lodash/common/function.d.ts",
2991
- "../../../node_modules/@types/lodash/common/lang.d.ts",
2992
- "../../../node_modules/@types/lodash/common/math.d.ts",
2993
- "../../../node_modules/@types/lodash/common/number.d.ts",
2994
- "../../../node_modules/@types/lodash/common/object.d.ts",
2995
- "../../../node_modules/@types/lodash/common/seq.d.ts",
2996
- "../../../node_modules/@types/lodash/common/util.d.ts",
2997
- "../../../node_modules/@types/lodash/index.d.ts"
2998
- ],
2999
- "../../../node_modules/@types/lodash/common/util.d.ts": [
3000
- "../../../node_modules/@types/lodash/common/array.d.ts",
3001
- "../../../node_modules/@types/lodash/common/collection.d.ts",
3002
- "../../../node_modules/@types/lodash/common/common.d.ts",
3003
- "../../../node_modules/@types/lodash/common/date.d.ts",
3004
- "../../../node_modules/@types/lodash/common/function.d.ts",
3005
- "../../../node_modules/@types/lodash/common/lang.d.ts",
3006
- "../../../node_modules/@types/lodash/common/math.d.ts",
3007
- "../../../node_modules/@types/lodash/common/number.d.ts",
3008
- "../../../node_modules/@types/lodash/common/object.d.ts",
3009
- "../../../node_modules/@types/lodash/common/seq.d.ts",
3010
- "../../../node_modules/@types/lodash/common/string.d.ts",
3011
- "../../../node_modules/@types/lodash/index.d.ts"
3012
- ],
3013
- "../../../node_modules/@types/lodash/index.d.ts": [
3014
- "../../../node_modules/@types/lodash/common/array.d.ts",
3015
- "../../../node_modules/@types/lodash/common/collection.d.ts",
3016
- "../../../node_modules/@types/lodash/common/common.d.ts",
3017
- "../../../node_modules/@types/lodash/common/date.d.ts",
3018
- "../../../node_modules/@types/lodash/common/function.d.ts",
3019
- "../../../node_modules/@types/lodash/common/lang.d.ts",
3020
- "../../../node_modules/@types/lodash/common/math.d.ts",
3021
- "../../../node_modules/@types/lodash/common/number.d.ts",
3022
- "../../../node_modules/@types/lodash/common/object.d.ts",
3023
- "../../../node_modules/@types/lodash/common/seq.d.ts",
3024
- "../../../node_modules/@types/lodash/common/string.d.ts",
3025
- "../../../node_modules/@types/lodash/common/util.d.ts"
3026
- ],
3027
- "../../../node_modules/@types/mdast/index.d.ts": [
3028
- "../../../node_modules/@types/unist/index.d.ts"
3029
- ],
3030
- "../../../node_modules/@types/mkdirp/index.d.ts": [
3031
- "../../../node_modules/@types/node/fs.d.ts",
3032
- "../../../node_modules/@types/node/index.d.ts"
3033
- ],
3034
- "../../../node_modules/@types/node-fetch/index.d.ts": [
3035
- "../../../node_modules/@types/node-fetch/externals.d.ts",
3036
- "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts",
3037
- "../../../node_modules/@types/node/http.d.ts",
3038
- "../../../node_modules/@types/node/index.d.ts",
3039
- "../../../node_modules/@types/node/url.d.ts"
3040
- ],
3041
- "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts": [
3042
- "../../../node_modules/@types/node/http.d.ts",
3043
- "../../../node_modules/@types/node/index.d.ts",
3044
- "../../../node_modules/@types/node/stream.d.ts"
3045
- ],
3046
- "../../../node_modules/@types/node/assert.d.ts": [
3047
- "../../../node_modules/@types/node/assert.d.ts"
3048
- ],
3049
- "../../../node_modules/@types/node/async_hooks.d.ts": [
3050
- "../../../node_modules/@types/node/async_hooks.d.ts"
3051
- ],
3052
- "../../../node_modules/@types/node/base.d.ts": [
3053
- "../../../node_modules/@types/node/assert.d.ts",
3054
- "../../../node_modules/@types/node/ts3.6/base.d.ts"
3055
- ],
3056
- "../../../node_modules/@types/node/buffer.d.ts": [
3057
- "../../../node_modules/@types/node/buffer.d.ts"
3058
- ],
3059
- "../../../node_modules/@types/node/child_process.d.ts": [
3060
- "../../../node_modules/@types/node/child_process.d.ts",
3061
- "../../../node_modules/@types/node/events.d.ts",
3062
- "../../../node_modules/@types/node/fs.d.ts",
3063
- "../../../node_modules/@types/node/net.d.ts",
3064
- "../../../node_modules/@types/node/stream.d.ts"
3065
- ],
3066
- "../../../node_modules/@types/node/cluster.d.ts": [
3067
- "../../../node_modules/@types/node/child_process.d.ts",
3068
- "../../../node_modules/@types/node/cluster.d.ts",
3069
- "../../../node_modules/@types/node/events.d.ts",
3070
- "../../../node_modules/@types/node/net.d.ts"
3071
- ],
3072
- "../../../node_modules/@types/node/console.d.ts": [
3073
- "../../../node_modules/@types/node/util.d.ts"
3074
- ],
3075
- "../../../node_modules/@types/node/constants.d.ts": [
3076
- "../../../node_modules/@types/node/constants.d.ts",
3077
- "../../../node_modules/@types/node/crypto.d.ts",
3078
- "../../../node_modules/@types/node/fs.d.ts",
3079
- "../../../node_modules/@types/node/os.d.ts"
3080
- ],
3081
- "../../../node_modules/@types/node/crypto.d.ts": [
3082
- "../../../node_modules/@types/node/crypto.d.ts",
3083
- "../../../node_modules/@types/node/stream.d.ts"
3084
- ],
3085
- "../../../node_modules/@types/node/dgram.d.ts": [
3086
- "../../../node_modules/@types/node/dgram.d.ts",
3087
- "../../../node_modules/@types/node/dns.d.ts",
3088
- "../../../node_modules/@types/node/events.d.ts",
3089
- "../../../node_modules/@types/node/net.d.ts"
3090
- ],
3091
- "../../../node_modules/@types/node/dns.d.ts": [
3092
- "../../../node_modules/@types/node/dns.d.ts"
3093
- ],
3094
- "../../../node_modules/@types/node/domain.d.ts": [
3095
- "../../../node_modules/@types/node/domain.d.ts",
3096
- "../../../node_modules/@types/node/events.d.ts"
3097
- ],
3098
- "../../../node_modules/@types/node/events.d.ts": [
3099
- "../../../node_modules/@types/node/events.d.ts"
3100
- ],
3101
- "../../../node_modules/@types/node/fs.d.ts": [
3102
- "../../../node_modules/@types/node/events.d.ts",
3103
- "../../../node_modules/@types/node/fs.d.ts",
3104
- "../../../node_modules/@types/node/fs/promises.d.ts",
3105
- "../../../node_modules/@types/node/stream.d.ts",
3106
- "../../../node_modules/@types/node/url.d.ts"
3107
- ],
3108
- "../../../node_modules/@types/node/fs/promises.d.ts": [
3109
- "../../../node_modules/@types/node/fs.d.ts",
3110
- "../../../node_modules/@types/node/fs/promises.d.ts"
3111
- ],
3112
- "../../../node_modules/@types/node/http.d.ts": [
3113
- "../../../node_modules/@types/node/http.d.ts",
3114
- "../../../node_modules/@types/node/net.d.ts",
3115
- "../../../node_modules/@types/node/stream.d.ts",
3116
- "../../../node_modules/@types/node/url.d.ts"
3117
- ],
3118
- "../../../node_modules/@types/node/http2.d.ts": [
3119
- "../../../node_modules/@types/node/events.d.ts",
3120
- "../../../node_modules/@types/node/fs.d.ts",
3121
- "../../../node_modules/@types/node/http.d.ts",
3122
- "../../../node_modules/@types/node/http2.d.ts",
3123
- "../../../node_modules/@types/node/net.d.ts",
3124
- "../../../node_modules/@types/node/stream.d.ts",
3125
- "../../../node_modules/@types/node/tls.d.ts",
3126
- "../../../node_modules/@types/node/url.d.ts"
3127
- ],
3128
- "../../../node_modules/@types/node/https.d.ts": [
3129
- "../../../node_modules/@types/node/http.d.ts",
3130
- "../../../node_modules/@types/node/https.d.ts",
3131
- "../../../node_modules/@types/node/tls.d.ts",
3132
- "../../../node_modules/@types/node/url.d.ts"
3133
- ],
3134
- "../../../node_modules/@types/node/index.d.ts": [
3135
- "../../../node_modules/@types/node/base.d.ts"
3136
- ],
3137
- "../../../node_modules/@types/node/inspector.d.ts": [
3138
- "../../../node_modules/@types/node/events.d.ts",
3139
- "../../../node_modules/@types/node/inspector.d.ts"
3140
- ],
3141
- "../../../node_modules/@types/node/module.d.ts": [
3142
- "../../../node_modules/@types/node/module.d.ts",
3143
- "../../../node_modules/@types/node/url.d.ts"
3144
- ],
3145
- "../../../node_modules/@types/node/net.d.ts": [
3146
- "../../../node_modules/@types/node/dns.d.ts",
3147
- "../../../node_modules/@types/node/events.d.ts",
3148
- "../../../node_modules/@types/node/net.d.ts",
3149
- "../../../node_modules/@types/node/stream.d.ts"
3150
- ],
3151
- "../../../node_modules/@types/node/os.d.ts": [
3152
- "../../../node_modules/@types/node/os.d.ts"
3153
- ],
3154
- "../../../node_modules/@types/node/path.d.ts": [
3155
- "../../../node_modules/@types/node/path.d.ts"
3156
- ],
3157
- "../../../node_modules/@types/node/perf_hooks.d.ts": [
3158
- "../../../node_modules/@types/node/async_hooks.d.ts",
3159
- "../../../node_modules/@types/node/perf_hooks.d.ts"
3160
- ],
3161
- "../../../node_modules/@types/node/process.d.ts": [
3162
- "../../../node_modules/@types/node/tty.d.ts"
3163
- ],
3164
- "../../../node_modules/@types/node/punycode.d.ts": [
3165
- "../../../node_modules/@types/node/punycode.d.ts"
3166
- ],
3167
- "../../../node_modules/@types/node/querystring.d.ts": [
3168
- "../../../node_modules/@types/node/querystring.d.ts"
3169
- ],
3170
- "../../../node_modules/@types/node/readline.d.ts": [
3171
- "../../../node_modules/@types/node/events.d.ts",
3172
- "../../../node_modules/@types/node/readline.d.ts"
3173
- ],
3174
- "../../../node_modules/@types/node/repl.d.ts": [
3175
- "../../../node_modules/@types/node/readline.d.ts",
3176
- "../../../node_modules/@types/node/repl.d.ts",
3177
- "../../../node_modules/@types/node/util.d.ts",
3178
- "../../../node_modules/@types/node/vm.d.ts"
3179
- ],
3180
- "../../../node_modules/@types/node/stream.d.ts": [
3181
- "../../../node_modules/@types/node/events.d.ts",
3182
- "../../../node_modules/@types/node/stream.d.ts"
3183
- ],
3184
- "../../../node_modules/@types/node/string_decoder.d.ts": [
3185
- "../../../node_modules/@types/node/string_decoder.d.ts"
3186
- ],
3187
- "../../../node_modules/@types/node/timers.d.ts": [
3188
- "../../../node_modules/@types/node/timers.d.ts"
3189
- ],
3190
- "../../../node_modules/@types/node/tls.d.ts": [
3191
- "../../../node_modules/@types/node/net.d.ts",
3192
- "../../../node_modules/@types/node/tls.d.ts"
3193
- ],
3194
- "../../../node_modules/@types/node/trace_events.d.ts": [
3195
- "../../../node_modules/@types/node/trace_events.d.ts"
3196
- ],
3197
- "../../../node_modules/@types/node/ts3.4/base.d.ts": [
3198
- "../../../node_modules/@types/node/async_hooks.d.ts",
3199
- "../../../node_modules/@types/node/buffer.d.ts",
3200
- "../../../node_modules/@types/node/child_process.d.ts",
3201
- "../../../node_modules/@types/node/cluster.d.ts",
3202
- "../../../node_modules/@types/node/console.d.ts",
3203
- "../../../node_modules/@types/node/constants.d.ts",
3204
- "../../../node_modules/@types/node/crypto.d.ts",
3205
- "../../../node_modules/@types/node/dgram.d.ts",
3206
- "../../../node_modules/@types/node/dns.d.ts",
3207
- "../../../node_modules/@types/node/domain.d.ts",
3208
- "../../../node_modules/@types/node/events.d.ts",
3209
- "../../../node_modules/@types/node/fs.d.ts",
3210
- "../../../node_modules/@types/node/fs/promises.d.ts",
3211
- "../../../node_modules/@types/node/globals.d.ts",
3212
- "../../../node_modules/@types/node/http.d.ts",
3213
- "../../../node_modules/@types/node/http2.d.ts",
3214
- "../../../node_modules/@types/node/https.d.ts",
3215
- "../../../node_modules/@types/node/inspector.d.ts",
3216
- "../../../node_modules/@types/node/module.d.ts",
3217
- "../../../node_modules/@types/node/net.d.ts",
3218
- "../../../node_modules/@types/node/os.d.ts",
3219
- "../../../node_modules/@types/node/path.d.ts",
3220
- "../../../node_modules/@types/node/perf_hooks.d.ts",
3221
- "../../../node_modules/@types/node/process.d.ts",
3222
- "../../../node_modules/@types/node/punycode.d.ts",
3223
- "../../../node_modules/@types/node/querystring.d.ts",
3224
- "../../../node_modules/@types/node/readline.d.ts",
3225
- "../../../node_modules/@types/node/repl.d.ts",
3226
- "../../../node_modules/@types/node/stream.d.ts",
3227
- "../../../node_modules/@types/node/string_decoder.d.ts",
3228
- "../../../node_modules/@types/node/timers.d.ts",
3229
- "../../../node_modules/@types/node/tls.d.ts",
3230
- "../../../node_modules/@types/node/trace_events.d.ts",
3231
- "../../../node_modules/@types/node/tty.d.ts",
3232
- "../../../node_modules/@types/node/url.d.ts",
3233
- "../../../node_modules/@types/node/util.d.ts",
3234
- "../../../node_modules/@types/node/v8.d.ts",
3235
- "../../../node_modules/@types/node/vm.d.ts",
3236
- "../../../node_modules/@types/node/worker_threads.d.ts",
3237
- "../../../node_modules/@types/node/zlib.d.ts"
3238
- ],
3239
- "../../../node_modules/@types/node/ts3.6/base.d.ts": [
3240
- "../../../node_modules/@types/node/globals.global.d.ts",
3241
- "../../../node_modules/@types/node/ts3.4/base.d.ts",
3242
- "../../../node_modules/@types/node/wasi.d.ts"
3243
- ],
3244
- "../../../node_modules/@types/node/tty.d.ts": [
3245
- "../../../node_modules/@types/node/net.d.ts",
3246
- "../../../node_modules/@types/node/tty.d.ts"
3247
- ],
3248
- "../../../node_modules/@types/node/url.d.ts": [
3249
- "../../../node_modules/@types/node/querystring.d.ts",
3250
- "../../../node_modules/@types/node/url.d.ts"
3251
- ],
3252
- "../../../node_modules/@types/node/util.d.ts": [
3253
- "../../../node_modules/@types/node/util.d.ts"
3254
- ],
3255
- "../../../node_modules/@types/node/v8.d.ts": [
3256
- "../../../node_modules/@types/node/stream.d.ts",
3257
- "../../../node_modules/@types/node/v8.d.ts"
3258
- ],
3259
- "../../../node_modules/@types/node/vm.d.ts": [
3260
- "../../../node_modules/@types/node/vm.d.ts"
3261
- ],
3262
- "../../../node_modules/@types/node/wasi.d.ts": [
3263
- "../../../node_modules/@types/node/wasi.d.ts"
3264
- ],
3265
- "../../../node_modules/@types/node/worker_threads.d.ts": [
3266
- "../../../node_modules/@types/node/events.d.ts",
3267
- "../../../node_modules/@types/node/fs/promises.d.ts",
3268
- "../../../node_modules/@types/node/stream.d.ts",
3269
- "../../../node_modules/@types/node/url.d.ts",
3270
- "../../../node_modules/@types/node/vm.d.ts",
3271
- "../../../node_modules/@types/node/worker_threads.d.ts"
3272
- ],
3273
- "../../../node_modules/@types/node/zlib.d.ts": [
3274
- "../../../node_modules/@types/node/stream.d.ts",
3275
- "../../../node_modules/@types/node/zlib.d.ts"
3276
- ],
3277
- "../../../node_modules/@types/picomatch/index.d.ts": [
3278
- "../../../node_modules/@types/picomatch/constants.d.ts",
3279
- "../../../node_modules/@types/picomatch/parse.d.ts"
3280
- ],
3281
- "../../../node_modules/@types/prompts/index.d.ts": [
3282
- "../../../node_modules/@types/node/index.d.ts",
3283
- "../../../node_modules/@types/node/stream.d.ts"
3284
- ],
3285
- "../../../node_modules/@types/react-helmet/index.d.ts": [
3286
- "../../../node_modules/@types/react/index.d.ts"
3287
- ],
3288
- "../../../node_modules/@types/react-loadable/index.d.ts": [
3289
- "../../../node_modules/@types/react/index.d.ts"
3290
- ],
3291
- "../../../node_modules/@types/react-router-config/index.d.ts": [
3292
- "../../../node_modules/@types/history/index.d.ts",
3293
- "../../../node_modules/@types/react-router/index.d.ts",
3294
- "../../../node_modules/@types/react/index.d.ts"
3295
- ],
3296
- "../../../node_modules/@types/react-router-dom/index.d.ts": [
3297
- "../../../node_modules/@types/history/index.d.ts",
3298
- "../../../node_modules/@types/react-router/index.d.ts",
3299
- "../../../node_modules/@types/react/index.d.ts"
3300
- ],
3301
- "../../../node_modules/@types/react-router/index.d.ts": [
3302
- "../../../node_modules/@types/history/index.d.ts",
3303
- "../../../node_modules/@types/react/index.d.ts"
3304
- ],
3305
- "../../../node_modules/@types/react/index.d.ts": [
3306
- "../../../node_modules/@types/prop-types/index.d.ts",
3307
- "../../../node_modules/@types/react/global.d.ts",
3308
- "../../../node_modules/csstype/index.d.ts"
3309
- ],
3310
- "../../../node_modules/@types/resolve/index.d.ts": [
3311
- "../../../node_modules/@types/node/index.d.ts"
3312
- ],
3313
- "../../../node_modules/@types/sax/index.d.ts": [
3314
- "../../../node_modules/@types/node/index.d.ts",
3315
- "../../../node_modules/@types/node/stream.d.ts"
3316
- ],
3317
- "../../../node_modules/@types/semver/classes/comparator.d.ts": [
3318
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3319
- "../../../node_modules/@types/semver/index.d.ts"
3320
- ],
3321
- "../../../node_modules/@types/semver/classes/range.d.ts": [
3322
- "../../../node_modules/@types/semver/classes/comparator.d.ts",
3323
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3324
- "../../../node_modules/@types/semver/index.d.ts"
3325
- ],
3326
- "../../../node_modules/@types/semver/classes/semver.d.ts": [
3327
- "../../../node_modules/@types/semver/index.d.ts"
3328
- ],
3329
- "../../../node_modules/@types/semver/functions/clean.d.ts": [
3330
- "../../../node_modules/@types/semver/index.d.ts"
3331
- ],
3332
- "../../../node_modules/@types/semver/functions/cmp.d.ts": [
3333
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3334
- "../../../node_modules/@types/semver/index.d.ts"
3335
- ],
3336
- "../../../node_modules/@types/semver/functions/coerce.d.ts": [
3337
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3338
- "../../../node_modules/@types/semver/index.d.ts"
3339
- ],
3340
- "../../../node_modules/@types/semver/functions/compare-build.d.ts": [
3341
- "../../../node_modules/@types/semver/classes/semver.d.ts"
3342
- ],
3343
- "../../../node_modules/@types/semver/functions/compare-loose.d.ts": [
3344
- "../../../node_modules/@types/semver/classes/semver.d.ts"
3345
- ],
3346
- "../../../node_modules/@types/semver/functions/compare.d.ts": [
3347
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3348
- "../../../node_modules/@types/semver/index.d.ts"
3349
- ],
3350
- "../../../node_modules/@types/semver/functions/diff.d.ts": [
3351
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3352
- "../../../node_modules/@types/semver/index.d.ts"
3353
- ],
3354
- "../../../node_modules/@types/semver/functions/eq.d.ts": [
3355
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3356
- "../../../node_modules/@types/semver/index.d.ts"
3357
- ],
3358
- "../../../node_modules/@types/semver/functions/gt.d.ts": [
3359
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3360
- "../../../node_modules/@types/semver/index.d.ts"
3361
- ],
3362
- "../../../node_modules/@types/semver/functions/gte.d.ts": [
3363
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3364
- "../../../node_modules/@types/semver/index.d.ts"
3365
- ],
3366
- "../../../node_modules/@types/semver/functions/inc.d.ts": [
3367
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3368
- "../../../node_modules/@types/semver/index.d.ts"
3369
- ],
3370
- "../../../node_modules/@types/semver/functions/lt.d.ts": [
3371
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3372
- "../../../node_modules/@types/semver/index.d.ts"
3373
- ],
3374
- "../../../node_modules/@types/semver/functions/lte.d.ts": [
3375
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3376
- "../../../node_modules/@types/semver/index.d.ts"
3377
- ],
3378
- "../../../node_modules/@types/semver/functions/major.d.ts": [
3379
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3380
- "../../../node_modules/@types/semver/index.d.ts"
3381
- ],
3382
- "../../../node_modules/@types/semver/functions/minor.d.ts": [
3383
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3384
- "../../../node_modules/@types/semver/index.d.ts"
3385
- ],
3386
- "../../../node_modules/@types/semver/functions/neq.d.ts": [
3387
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3388
- "../../../node_modules/@types/semver/index.d.ts"
3389
- ],
3390
- "../../../node_modules/@types/semver/functions/parse.d.ts": [
3391
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3392
- "../../../node_modules/@types/semver/index.d.ts"
3393
- ],
3394
- "../../../node_modules/@types/semver/functions/patch.d.ts": [
3395
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3396
- "../../../node_modules/@types/semver/index.d.ts"
3397
- ],
3398
- "../../../node_modules/@types/semver/functions/prerelease.d.ts": [
3399
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3400
- "../../../node_modules/@types/semver/index.d.ts"
3401
- ],
3402
- "../../../node_modules/@types/semver/functions/rcompare.d.ts": [
3403
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3404
- "../../../node_modules/@types/semver/index.d.ts"
3405
- ],
3406
- "../../../node_modules/@types/semver/functions/rsort.d.ts": [
3407
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3408
- "../../../node_modules/@types/semver/index.d.ts"
3409
- ],
3410
- "../../../node_modules/@types/semver/functions/satisfies.d.ts": [
3411
- "../../../node_modules/@types/semver/classes/range.d.ts",
3412
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3413
- "../../../node_modules/@types/semver/index.d.ts"
3414
- ],
3415
- "../../../node_modules/@types/semver/functions/sort.d.ts": [
3416
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3417
- "../../../node_modules/@types/semver/index.d.ts"
3418
- ],
3419
- "../../../node_modules/@types/semver/functions/valid.d.ts": [
3420
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3421
- "../../../node_modules/@types/semver/index.d.ts"
3422
- ],
3423
- "../../../node_modules/@types/semver/index.d.ts": [
3424
- "../../../node_modules/@types/node/index.d.ts",
3425
- "../../../node_modules/@types/semver/classes/comparator.d.ts",
3426
- "../../../node_modules/@types/semver/classes/range.d.ts",
3427
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3428
- "../../../node_modules/@types/semver/functions/clean.d.ts",
3429
- "../../../node_modules/@types/semver/functions/cmp.d.ts",
3430
- "../../../node_modules/@types/semver/functions/coerce.d.ts",
3431
- "../../../node_modules/@types/semver/functions/compare-build.d.ts",
3432
- "../../../node_modules/@types/semver/functions/compare-loose.d.ts",
3433
- "../../../node_modules/@types/semver/functions/compare.d.ts",
3434
- "../../../node_modules/@types/semver/functions/diff.d.ts",
3435
- "../../../node_modules/@types/semver/functions/eq.d.ts",
3436
- "../../../node_modules/@types/semver/functions/gt.d.ts",
3437
- "../../../node_modules/@types/semver/functions/gte.d.ts",
3438
- "../../../node_modules/@types/semver/functions/inc.d.ts",
3439
- "../../../node_modules/@types/semver/functions/lt.d.ts",
3440
- "../../../node_modules/@types/semver/functions/lte.d.ts",
3441
- "../../../node_modules/@types/semver/functions/major.d.ts",
3442
- "../../../node_modules/@types/semver/functions/minor.d.ts",
3443
- "../../../node_modules/@types/semver/functions/neq.d.ts",
3444
- "../../../node_modules/@types/semver/functions/parse.d.ts",
3445
- "../../../node_modules/@types/semver/functions/patch.d.ts",
3446
- "../../../node_modules/@types/semver/functions/prerelease.d.ts",
3447
- "../../../node_modules/@types/semver/functions/rcompare.d.ts",
3448
- "../../../node_modules/@types/semver/functions/rsort.d.ts",
3449
- "../../../node_modules/@types/semver/functions/satisfies.d.ts",
3450
- "../../../node_modules/@types/semver/functions/sort.d.ts",
3451
- "../../../node_modules/@types/semver/functions/valid.d.ts",
3452
- "../../../node_modules/@types/semver/internals/identifiers.d.ts",
3453
- "../../../node_modules/@types/semver/ranges/gtr.d.ts",
3454
- "../../../node_modules/@types/semver/ranges/intersects.d.ts",
3455
- "../../../node_modules/@types/semver/ranges/ltr.d.ts",
3456
- "../../../node_modules/@types/semver/ranges/max-satisfying.d.ts",
3457
- "../../../node_modules/@types/semver/ranges/min-satisfying.d.ts",
3458
- "../../../node_modules/@types/semver/ranges/min-version.d.ts",
3459
- "../../../node_modules/@types/semver/ranges/outside.d.ts",
3460
- "../../../node_modules/@types/semver/ranges/to-comparators.d.ts",
3461
- "../../../node_modules/@types/semver/ranges/valid.d.ts"
3462
- ],
3463
- "../../../node_modules/@types/semver/ranges/gtr.d.ts": [
3464
- "../../../node_modules/@types/semver/classes/range.d.ts",
3465
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3466
- "../../../node_modules/@types/semver/index.d.ts"
3467
- ],
3468
- "../../../node_modules/@types/semver/ranges/intersects.d.ts": [
3469
- "../../../node_modules/@types/semver/classes/range.d.ts",
3470
- "../../../node_modules/@types/semver/index.d.ts"
3471
- ],
3472
- "../../../node_modules/@types/semver/ranges/ltr.d.ts": [
3473
- "../../../node_modules/@types/semver/classes/range.d.ts",
3474
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3475
- "../../../node_modules/@types/semver/index.d.ts"
3476
- ],
3477
- "../../../node_modules/@types/semver/ranges/max-satisfying.d.ts": [
3478
- "../../../node_modules/@types/semver/classes/range.d.ts",
3479
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3480
- "../../../node_modules/@types/semver/index.d.ts"
3481
- ],
3482
- "../../../node_modules/@types/semver/ranges/min-satisfying.d.ts": [
3483
- "../../../node_modules/@types/semver/classes/range.d.ts",
3484
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3485
- "../../../node_modules/@types/semver/index.d.ts"
3486
- ],
3487
- "../../../node_modules/@types/semver/ranges/min-version.d.ts": [
3488
- "../../../node_modules/@types/semver/classes/range.d.ts",
3489
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3490
- "../../../node_modules/@types/semver/index.d.ts"
3491
- ],
3492
- "../../../node_modules/@types/semver/ranges/outside.d.ts": [
3493
- "../../../node_modules/@types/semver/classes/range.d.ts",
3494
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3495
- "../../../node_modules/@types/semver/index.d.ts"
3496
- ],
3497
- "../../../node_modules/@types/semver/ranges/to-comparators.d.ts": [
3498
- "../../../node_modules/@types/semver/classes/range.d.ts",
3499
- "../../../node_modules/@types/semver/index.d.ts"
3500
- ],
3501
- "../../../node_modules/@types/semver/ranges/valid.d.ts": [
3502
- "../../../node_modules/@types/semver/classes/range.d.ts",
3503
- "../../../node_modules/@types/semver/index.d.ts"
3504
- ],
3505
- "../../../node_modules/@types/serve-static/index.d.ts": [
3506
- "../../../node_modules/@types/express-serve-static-core/index.d.ts",
3507
- "../../../node_modules/@types/mime/index.d.ts"
3508
- ],
3509
- "../../../node_modules/@types/shelljs/index.d.ts": [
3510
- "../../../node_modules/@types/glob/index.d.ts",
3511
- "../../../node_modules/@types/node/child_process.d.ts",
3512
- "../../../node_modules/@types/node/index.d.ts"
3513
- ],
3514
- "../../../node_modules/@types/uglify-js/index.d.ts": [
3515
- "../../../node_modules/source-map/source-map.d.ts"
3516
- ],
3517
- "../../../node_modules/@types/webpack-dev-server/index.d.ts": [
3518
- "../../../node_modules/@types/connect-history-api-fallback/index.d.ts",
3519
- "../../../node_modules/@types/express/index.d.ts",
3520
- "../../../node_modules/@types/http-proxy-middleware/index.d.ts",
3521
- "../../../node_modules/@types/node/http.d.ts",
3522
- "../../../node_modules/@types/node/https.d.ts",
3523
- "../../../node_modules/@types/serve-static/index.d.ts",
3524
- "../../../node_modules/webpack/types.d.ts"
3525
- ],
3526
- "../../../node_modules/@types/webpack-sources/index.d.ts": [
3527
- "../../../node_modules/@types/node/crypto.d.ts",
3528
- "../../../node_modules/@types/node/index.d.ts",
3529
- "../../../node_modules/@types/source-list-map/index.d.ts",
3530
- "../../../node_modules/source-map/source-map.d.ts"
3531
- ],
3532
- "../../../node_modules/@types/webpack/index.d.ts": [
3533
- "../../../node_modules/@types/anymatch/index.d.ts",
3534
- "../../../node_modules/@types/node/crypto.d.ts",
3535
- "../../../node_modules/@types/node/index.d.ts",
3536
- "../../../node_modules/@types/uglify-js/index.d.ts",
3537
- "../../../node_modules/@types/webpack-sources/index.d.ts",
3538
- "../../../node_modules/source-map/source-map.d.ts",
3539
- "../../../node_modules/tapable/tapable.d.ts"
3540
- ],
3541
- "../../../node_modules/@types/yargs/index.d.ts": [
3542
- "../../../node_modules/@types/yargs-parser/index.d.ts"
3543
- ],
3544
- "../../../node_modules/ast-types/fork.d.ts": [
3545
- "../../../node_modules/ast-types/lib/node-path.d.ts",
3546
- "../../../node_modules/ast-types/lib/path-visitor.d.ts",
3547
- "../../../node_modules/ast-types/lib/path.d.ts",
3548
- "../../../node_modules/ast-types/lib/types.d.ts",
3549
- "../../../node_modules/ast-types/types.d.ts"
3550
- ],
3551
- "../../../node_modules/ast-types/gen/builders.d.ts": [
3552
- "../../../node_modules/ast-types/gen/kinds.d.ts",
3553
- "../../../node_modules/ast-types/gen/nodes.d.ts"
3554
- ],
3555
- "../../../node_modules/ast-types/gen/kinds.d.ts": [
3556
- "../../../node_modules/ast-types/gen/nodes.d.ts"
3557
- ],
3558
- "../../../node_modules/ast-types/gen/namedTypes.d.ts": [
3559
- "../../../node_modules/ast-types/gen/nodes.d.ts",
3560
- "../../../node_modules/ast-types/lib/types.d.ts"
3561
- ],
3562
- "../../../node_modules/ast-types/gen/nodes.d.ts": [
3563
- "../../../node_modules/ast-types/gen/kinds.d.ts",
3564
- "../../../node_modules/ast-types/types.d.ts"
3565
- ],
3566
- "../../../node_modules/ast-types/gen/visitor.d.ts": [
3567
- "../../../node_modules/ast-types/gen/nodes.d.ts",
3568
- "../../../node_modules/ast-types/lib/node-path.d.ts",
3569
- "../../../node_modules/ast-types/lib/path-visitor.d.ts"
3570
- ],
3571
- "../../../node_modules/ast-types/lib/node-path.d.ts": [
3572
- "../../../node_modules/ast-types/lib/path.d.ts",
3573
- "../../../node_modules/ast-types/lib/scope.d.ts",
3574
- "../../../node_modules/ast-types/lib/types.d.ts",
3575
- "../../../node_modules/ast-types/types.d.ts"
3576
- ],
3577
- "../../../node_modules/ast-types/lib/path-visitor.d.ts": [
3578
- "../../../node_modules/ast-types/lib/node-path.d.ts",
3579
- "../../../node_modules/ast-types/lib/types.d.ts",
3580
- "../../../node_modules/ast-types/types.d.ts"
3581
- ],
3582
- "../../../node_modules/ast-types/lib/path.d.ts": [
3583
- "../../../node_modules/ast-types/lib/types.d.ts",
3584
- "../../../node_modules/ast-types/types.d.ts"
3585
- ],
3586
- "../../../node_modules/ast-types/lib/scope.d.ts": [
3587
- "../../../node_modules/ast-types/types.d.ts"
3588
- ],
3589
- "../../../node_modules/ast-types/lib/types.d.ts": [
3590
- "../../../node_modules/ast-types/types.d.ts"
3591
- ],
3592
- "../../../node_modules/ast-types/main.d.ts": [
3593
- "../../../node_modules/ast-types/fork.d.ts",
3594
- "../../../node_modules/ast-types/gen/builders.d.ts",
3595
- "../../../node_modules/ast-types/gen/namedTypes.d.ts",
3596
- "../../../node_modules/ast-types/gen/visitor.d.ts",
3597
- "../../../node_modules/ast-types/lib/node-path.d.ts",
3598
- "../../../node_modules/ast-types/lib/types.d.ts",
3599
- "../../../node_modules/ast-types/types.d.ts"
3600
- ],
3601
- "../../../node_modules/jest-diff/build/diffLines.d.ts": [
3602
- "../../../node_modules/jest-diff/build/cleanupSemantic.d.ts",
3603
- "../../../node_modules/jest-diff/build/types.d.ts"
3604
- ],
3605
- "../../../node_modules/jest-diff/build/index.d.ts": [
3606
- "../../../node_modules/jest-diff/build/cleanupSemantic.d.ts",
3607
- "../../../node_modules/jest-diff/build/diffLines.d.ts",
3608
- "../../../node_modules/jest-diff/build/printDiffs.d.ts",
3609
- "../../../node_modules/jest-diff/build/types.d.ts"
3610
- ],
3611
- "../../../node_modules/jest-diff/build/printDiffs.d.ts": [
3612
- "../../../node_modules/jest-diff/build/cleanupSemantic.d.ts",
3613
- "../../../node_modules/jest-diff/build/types.d.ts"
3614
- ],
3615
- "../../../node_modules/pretty-format/build/index.d.ts": [
3616
- "../../../node_modules/pretty-format/build/types.d.ts"
3617
- ],
3618
- "../../../node_modules/recast/lib/options.d.ts": [
3619
- "../../../node_modules/ast-types/types.d.ts"
3620
- ],
3621
- "../../../node_modules/recast/lib/parser.d.ts": [
3622
- "../../../node_modules/recast/lib/options.d.ts"
3623
- ],
3624
- "../../../node_modules/recast/lib/types.d.ts": [
3625
- "../../../node_modules/ast-types/main.d.ts"
3626
- ],
3627
- "../../../node_modules/recast/main.d.ts": [
3628
- "../../../node_modules/recast/lib/options.d.ts",
3629
- "../../../node_modules/recast/lib/parser.d.ts",
3630
- "../../../node_modules/recast/lib/printer.d.ts",
3631
- "../../../node_modules/recast/lib/types.d.ts"
3632
- ],
3633
- "../../../node_modules/schema-utils/declarations/ValidationError.d.ts": [
3634
- "../../../node_modules/@types/json-schema/index.d.ts",
3635
- "../../../node_modules/ajv/lib/ajv.d.ts",
3636
- "../../../node_modules/schema-utils/declarations/validate.d.ts"
3637
- ],
3638
- "../../../node_modules/schema-utils/declarations/index.d.ts": [
3639
- "../../../node_modules/schema-utils/declarations/ValidationError.d.ts",
3640
- "../../../node_modules/schema-utils/declarations/validate.d.ts"
3641
- ],
3642
- "../../../node_modules/schema-utils/declarations/validate.d.ts": [
3643
- "../../../node_modules/@types/json-schema/index.d.ts",
3644
- "../../../node_modules/ajv/lib/ajv.d.ts",
3645
- "../../../node_modules/schema-utils/declarations/ValidationError.d.ts"
3646
- ],
3647
- "../../../node_modules/webpack/types.d.ts": [
3648
- "../../../node_modules/@types/estree/index.d.ts",
3649
- "../../../node_modules/schema-utils/declarations/index.d.ts",
3650
- "../../../node_modules/schema-utils/declarations/validate.d.ts",
3651
- "../../../node_modules/tapable/tapable.d.ts"
3652
- ],
3653
- "../../docusaurus-types/src/index.d.ts": [
3654
- "../../../node_modules/@types/node/querystring.d.ts",
3655
- "../../../node_modules/joi/lib/index.d.ts",
3656
- "../../../node_modules/webpack/types.d.ts",
3657
- "../../docusaurus-types/node_modules/commander/typings/index.d.ts"
3658
- ],
3659
- "../src/index.ts": [
3660
- "../../docusaurus-types/src/index.d.ts",
3661
- "../src/codeTranslationsUtils.ts",
3662
- "../src/escapePath.ts",
3663
- "../src/markdownLinks.ts",
3664
- "../src/markdownParser.ts",
3665
- "../src/posixPath.ts"
3666
- ]
3667
- },
3668
- "semanticDiagnosticsPerFile": [
3669
- "../../../node_modules/@babel/parser/typings/babel-parser.d.ts",
3670
- "../../../node_modules/@babel/types/lib/index.d.ts",
3671
- "../../../node_modules/@types/anymatch/index.d.ts",
3672
- "../../../node_modules/@types/babel__core/index.d.ts",
3673
- "../../../node_modules/@types/babel__generator/index.d.ts",
3674
- "../../../node_modules/@types/babel__template/index.d.ts",
3675
- "../../../node_modules/@types/babel__traverse/index.d.ts",
3676
- "../../../node_modules/@types/body-parser/index.d.ts",
3677
- "../../../node_modules/@types/cheerio/index.d.ts",
3678
- "../../../node_modules/@types/clean-css/index.d.ts",
3679
- "../../../node_modules/@types/color-convert/conversions.d.ts",
3680
- "../../../node_modules/@types/color-convert/index.d.ts",
3681
- "../../../node_modules/@types/color-convert/route.d.ts",
3682
- "../../../node_modules/@types/color-name/index.d.ts",
3683
- "../../../node_modules/@types/color/index.d.ts",
3684
- "../../../node_modules/@types/connect-history-api-fallback/index.d.ts",
3685
- "../../../node_modules/@types/connect/index.d.ts",
3686
- "../../../node_modules/@types/cssnano/index.d.ts",
3687
- "../../../node_modules/@types/cssnano/node_modules/postcss/lib/postcss.d.ts",
3688
- "../../../node_modules/@types/decompress/index.d.ts",
3689
- "../../../node_modules/@types/dedent/index.d.ts",
3690
- "../../../node_modules/@types/detect-port/index.d.ts",
3691
- "../../../node_modules/@types/download/index.d.ts",
3692
- "../../../node_modules/@types/eslint-scope/index.d.ts",
3693
- "../../../node_modules/@types/eslint/ts3.1/helpers.d.ts",
3694
- "../../../node_modules/@types/eslint/ts3.1/index.d.ts",
3695
- "../../../node_modules/@types/estree/index.d.ts",
3696
- "../../../node_modules/@types/events/index.d.ts",
3697
- "../../../node_modules/@types/express-serve-static-core/index.d.ts",
3698
- "../../../node_modules/@types/express/index.d.ts",
3699
- "../../../node_modules/@types/fs-extra/index.d.ts",
3700
- "../../../node_modules/@types/github-slugger/index.d.ts",
3701
- "../../../node_modules/@types/glob/index.d.ts",
3702
- "../../../node_modules/@types/got/index.d.ts",
3703
- "../../../node_modules/@types/graceful-fs/index.d.ts",
3704
- "../../../node_modules/@types/hast/index.d.ts",
3705
- "../../../node_modules/@types/history/DOMUtils.d.ts",
3706
- "../../../node_modules/@types/history/LocationUtils.d.ts",
3707
- "../../../node_modules/@types/history/PathUtils.d.ts",
3708
- "../../../node_modules/@types/history/createBrowserHistory.d.ts",
3709
- "../../../node_modules/@types/history/createHashHistory.d.ts",
3710
- "../../../node_modules/@types/history/createMemoryHistory.d.ts",
3711
- "../../../node_modules/@types/history/index.d.ts",
3712
- "../../../node_modules/@types/html-minifier-terser/index.d.ts",
3713
- "../../../node_modules/@types/html-minifier/index.d.ts",
3714
- "../../../node_modules/@types/html-webpack-plugin/index.d.ts",
3715
- "../../../node_modules/@types/http-proxy-middleware/index.d.ts",
3716
- "../../../node_modules/@types/http-proxy/index.d.ts",
3717
- "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
3718
- "../../../node_modules/@types/istanbul-lib-report/index.d.ts",
3719
- "../../../node_modules/@types/istanbul-reports/index.d.ts",
3720
- "../../../node_modules/@types/jest/index.d.ts",
3721
- "../../../node_modules/@types/js-yaml/index.d.ts",
3722
- "../../../node_modules/@types/jscodeshift/index.d.ts",
3723
- "../../../node_modules/@types/jscodeshift/src/Collection.d.ts",
3724
- "../../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts",
3725
- "../../../node_modules/@types/jscodeshift/src/collections/Node.d.ts",
3726
- "../../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts",
3727
- "../../../node_modules/@types/jscodeshift/src/core.d.ts",
3728
- "../../../node_modules/@types/jscodeshift/src/template.d.ts",
3729
- "../../../node_modules/@types/json-schema/index.d.ts",
3730
- "../../../node_modules/@types/json5/index.d.ts",
3731
- "../../../node_modules/@types/katex/contrib/auto-render.d.ts",
3732
- "../../../node_modules/@types/katex/contrib/index.d.ts",
3733
- "../../../node_modules/@types/katex/contrib/katex2tex.d.ts",
3734
- "../../../node_modules/@types/katex/index.d.ts",
3735
- "../../../node_modules/@types/loader-utils/index.d.ts",
3736
- "../../../node_modules/@types/lodash/common/array.d.ts",
3737
- "../../../node_modules/@types/lodash/common/collection.d.ts",
3738
- "../../../node_modules/@types/lodash/common/common.d.ts",
3739
- "../../../node_modules/@types/lodash/common/date.d.ts",
3740
- "../../../node_modules/@types/lodash/common/function.d.ts",
3741
- "../../../node_modules/@types/lodash/common/lang.d.ts",
3742
- "../../../node_modules/@types/lodash/common/math.d.ts",
3743
- "../../../node_modules/@types/lodash/common/number.d.ts",
3744
- "../../../node_modules/@types/lodash/common/object.d.ts",
3745
- "../../../node_modules/@types/lodash/common/seq.d.ts",
3746
- "../../../node_modules/@types/lodash/common/string.d.ts",
3747
- "../../../node_modules/@types/lodash/common/util.d.ts",
3748
- "../../../node_modules/@types/lodash/index.d.ts",
3749
- "../../../node_modules/@types/mdast/index.d.ts",
3750
- "../../../node_modules/@types/mime/index.d.ts",
3751
- "../../../node_modules/@types/minimatch/index.d.ts",
3752
- "../../../node_modules/@types/minimist/index.d.ts",
3753
- "../../../node_modules/@types/mkdirp/index.d.ts",
3754
- "../../../node_modules/@types/node-fetch/externals.d.ts",
3755
- "../../../node_modules/@types/node-fetch/index.d.ts",
3756
- "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts",
3757
- "../../../node_modules/@types/node/assert.d.ts",
3758
- "../../../node_modules/@types/node/async_hooks.d.ts",
3759
- "../../../node_modules/@types/node/base.d.ts",
3760
- "../../../node_modules/@types/node/buffer.d.ts",
3761
- "../../../node_modules/@types/node/child_process.d.ts",
3762
- "../../../node_modules/@types/node/cluster.d.ts",
3763
- "../../../node_modules/@types/node/console.d.ts",
3764
- "../../../node_modules/@types/node/constants.d.ts",
3765
- "../../../node_modules/@types/node/crypto.d.ts",
3766
- "../../../node_modules/@types/node/dgram.d.ts",
3767
- "../../../node_modules/@types/node/dns.d.ts",
3768
- "../../../node_modules/@types/node/domain.d.ts",
3769
- "../../../node_modules/@types/node/events.d.ts",
3770
- "../../../node_modules/@types/node/fs.d.ts",
3771
- "../../../node_modules/@types/node/fs/promises.d.ts",
3772
- "../../../node_modules/@types/node/globals.d.ts",
3773
- "../../../node_modules/@types/node/globals.global.d.ts",
3774
- "../../../node_modules/@types/node/http.d.ts",
3775
- "../../../node_modules/@types/node/http2.d.ts",
3776
- "../../../node_modules/@types/node/https.d.ts",
3777
- "../../../node_modules/@types/node/index.d.ts",
3778
- "../../../node_modules/@types/node/inspector.d.ts",
3779
- "../../../node_modules/@types/node/module.d.ts",
3780
- "../../../node_modules/@types/node/net.d.ts",
3781
- "../../../node_modules/@types/node/os.d.ts",
3782
- "../../../node_modules/@types/node/path.d.ts",
3783
- "../../../node_modules/@types/node/perf_hooks.d.ts",
3784
- "../../../node_modules/@types/node/process.d.ts",
3785
- "../../../node_modules/@types/node/punycode.d.ts",
3786
- "../../../node_modules/@types/node/querystring.d.ts",
3787
- "../../../node_modules/@types/node/readline.d.ts",
3788
- "../../../node_modules/@types/node/repl.d.ts",
3789
- "../../../node_modules/@types/node/stream.d.ts",
3790
- "../../../node_modules/@types/node/string_decoder.d.ts",
3791
- "../../../node_modules/@types/node/timers.d.ts",
3792
- "../../../node_modules/@types/node/tls.d.ts",
3793
- "../../../node_modules/@types/node/trace_events.d.ts",
3794
- "../../../node_modules/@types/node/ts3.4/base.d.ts",
3795
- "../../../node_modules/@types/node/ts3.6/base.d.ts",
3796
- "../../../node_modules/@types/node/tty.d.ts",
3797
- "../../../node_modules/@types/node/url.d.ts",
3798
- "../../../node_modules/@types/node/util.d.ts",
3799
- "../../../node_modules/@types/node/v8.d.ts",
3800
- "../../../node_modules/@types/node/vm.d.ts",
3801
- "../../../node_modules/@types/node/wasi.d.ts",
3802
- "../../../node_modules/@types/node/worker_threads.d.ts",
3803
- "../../../node_modules/@types/node/zlib.d.ts",
3804
- "../../../node_modules/@types/normalize-package-data/index.d.ts",
3805
- "../../../node_modules/@types/nprogress/index.d.ts",
3806
- "../../../node_modules/@types/parse-json/index.d.ts",
3807
- "../../../node_modules/@types/parse5/index.d.ts",
3808
- "../../../node_modules/@types/picomatch/constants.d.ts",
3809
- "../../../node_modules/@types/picomatch/index.d.ts",
3810
- "../../../node_modules/@types/picomatch/parse.d.ts",
3811
- "../../../node_modules/@types/prettier/index.d.ts",
3812
- "../../../node_modules/@types/prismjs/index.d.ts",
3813
- "../../../node_modules/@types/prompts/index.d.ts",
3814
- "../../../node_modules/@types/prop-types/index.d.ts",
3815
- "../../../node_modules/@types/q/index.d.ts",
3816
- "../../../node_modules/@types/qs/index.d.ts",
3817
- "../../../node_modules/@types/range-parser/index.d.ts",
3818
- "../../../node_modules/@types/react-dev-utils/index.d.ts",
3819
- "../../../node_modules/@types/react-helmet/index.d.ts",
3820
- "../../../node_modules/@types/react-loadable/index.d.ts",
3821
- "../../../node_modules/@types/react-router-config/index.d.ts",
3822
- "../../../node_modules/@types/react-router-dom/index.d.ts",
3823
- "../../../node_modules/@types/react-router/index.d.ts",
3824
- "../../../node_modules/@types/react/global.d.ts",
3825
- "../../../node_modules/@types/react/index.d.ts",
3826
- "../../../node_modules/@types/relateurl/index.d.ts",
3827
- "../../../node_modules/@types/resolve/index.d.ts",
3828
- "../../../node_modules/@types/sax/index.d.ts",
3829
- "../../../node_modules/@types/semver/classes/comparator.d.ts",
3830
- "../../../node_modules/@types/semver/classes/range.d.ts",
3831
- "../../../node_modules/@types/semver/classes/semver.d.ts",
3832
- "../../../node_modules/@types/semver/functions/clean.d.ts",
3833
- "../../../node_modules/@types/semver/functions/cmp.d.ts",
3834
- "../../../node_modules/@types/semver/functions/coerce.d.ts",
3835
- "../../../node_modules/@types/semver/functions/compare-build.d.ts",
3836
- "../../../node_modules/@types/semver/functions/compare-loose.d.ts",
3837
- "../../../node_modules/@types/semver/functions/compare.d.ts",
3838
- "../../../node_modules/@types/semver/functions/diff.d.ts",
3839
- "../../../node_modules/@types/semver/functions/eq.d.ts",
3840
- "../../../node_modules/@types/semver/functions/gt.d.ts",
3841
- "../../../node_modules/@types/semver/functions/gte.d.ts",
3842
- "../../../node_modules/@types/semver/functions/inc.d.ts",
3843
- "../../../node_modules/@types/semver/functions/lt.d.ts",
3844
- "../../../node_modules/@types/semver/functions/lte.d.ts",
3845
- "../../../node_modules/@types/semver/functions/major.d.ts",
3846
- "../../../node_modules/@types/semver/functions/minor.d.ts",
3847
- "../../../node_modules/@types/semver/functions/neq.d.ts",
3848
- "../../../node_modules/@types/semver/functions/parse.d.ts",
3849
- "../../../node_modules/@types/semver/functions/patch.d.ts",
3850
- "../../../node_modules/@types/semver/functions/prerelease.d.ts",
3851
- "../../../node_modules/@types/semver/functions/rcompare.d.ts",
3852
- "../../../node_modules/@types/semver/functions/rsort.d.ts",
3853
- "../../../node_modules/@types/semver/functions/satisfies.d.ts",
3854
- "../../../node_modules/@types/semver/functions/sort.d.ts",
3855
- "../../../node_modules/@types/semver/functions/valid.d.ts",
3856
- "../../../node_modules/@types/semver/index.d.ts",
3857
- "../../../node_modules/@types/semver/internals/identifiers.d.ts",
3858
- "../../../node_modules/@types/semver/ranges/gtr.d.ts",
3859
- "../../../node_modules/@types/semver/ranges/intersects.d.ts",
3860
- "../../../node_modules/@types/semver/ranges/ltr.d.ts",
3861
- "../../../node_modules/@types/semver/ranges/max-satisfying.d.ts",
3862
- "../../../node_modules/@types/semver/ranges/min-satisfying.d.ts",
3863
- "../../../node_modules/@types/semver/ranges/min-version.d.ts",
3864
- "../../../node_modules/@types/semver/ranges/outside.d.ts",
3865
- "../../../node_modules/@types/semver/ranges/to-comparators.d.ts",
3866
- "../../../node_modules/@types/semver/ranges/valid.d.ts",
3867
- "../../../node_modules/@types/serve-static/index.d.ts",
3868
- "../../../node_modules/@types/shelljs/index.d.ts",
3869
- "../../../node_modules/@types/source-list-map/index.d.ts",
3870
- "../../../node_modules/@types/stack-utils/index.d.ts",
3871
- "../../../node_modules/@types/tapable/index.d.ts",
3872
- "../../../node_modules/@types/uglify-js/index.d.ts",
3873
- "../../../node_modules/@types/unist/index.d.ts",
3874
- "../../../node_modules/@types/wait-on/index.d.ts",
3875
- "../../../node_modules/@types/webpack-dev-server/index.d.ts",
3876
- "../../../node_modules/@types/webpack-sources/index.d.ts",
3877
- "../../../node_modules/@types/webpack/index.d.ts",
3878
- "../../../node_modules/@types/yargs-parser/index.d.ts",
3879
- "../../../node_modules/@types/yargs/index.d.ts",
3880
- "../../../node_modules/ajv/lib/ajv.d.ts",
3881
- "../../../node_modules/ast-types/fork.d.ts",
3882
- "../../../node_modules/ast-types/gen/builders.d.ts",
3883
- "../../../node_modules/ast-types/gen/kinds.d.ts",
3884
- "../../../node_modules/ast-types/gen/namedTypes.d.ts",
3885
- "../../../node_modules/ast-types/gen/nodes.d.ts",
3886
- "../../../node_modules/ast-types/gen/visitor.d.ts",
3887
- "../../../node_modules/ast-types/lib/node-path.d.ts",
3888
- "../../../node_modules/ast-types/lib/path-visitor.d.ts",
3889
- "../../../node_modules/ast-types/lib/path.d.ts",
3890
- "../../../node_modules/ast-types/lib/scope.d.ts",
3891
- "../../../node_modules/ast-types/lib/types.d.ts",
3892
- "../../../node_modules/ast-types/main.d.ts",
3893
- "../../../node_modules/ast-types/types.d.ts",
3894
- "../../../node_modules/chalk/index.d.ts",
3895
- "../../../node_modules/csstype/index.d.ts",
3896
- "../../../node_modules/gray-matter/gray-matter.d.ts",
3897
- "../../../node_modules/jest-diff/build/cleanupSemantic.d.ts",
3898
- "../../../node_modules/jest-diff/build/diffLines.d.ts",
3899
- "../../../node_modules/jest-diff/build/index.d.ts",
3900
- "../../../node_modules/jest-diff/build/printDiffs.d.ts",
3901
- "../../../node_modules/jest-diff/build/types.d.ts",
3902
- "../../../node_modules/joi/lib/index.d.ts",
3903
- "../../../node_modules/pretty-format/build/index.d.ts",
3904
- "../../../node_modules/pretty-format/build/types.d.ts",
3905
- "../../../node_modules/recast/lib/options.d.ts",
3906
- "../../../node_modules/recast/lib/parser.d.ts",
3907
- "../../../node_modules/recast/lib/printer.d.ts",
3908
- "../../../node_modules/recast/lib/types.d.ts",
3909
- "../../../node_modules/recast/main.d.ts",
3910
- "../../../node_modules/schema-utils/declarations/ValidationError.d.ts",
3911
- "../../../node_modules/schema-utils/declarations/index.d.ts",
3912
- "../../../node_modules/schema-utils/declarations/validate.d.ts",
3913
- "../../../node_modules/source-map/source-map.d.ts",
3914
- "../../../node_modules/tapable/tapable.d.ts",
3915
- "../../../node_modules/tslib/tslib.d.ts",
3916
- "../../../node_modules/typescript/lib/lib.dom.d.ts",
3917
- "../../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
3918
- "../../../node_modules/typescript/lib/lib.es2015.core.d.ts",
3919
- "../../../node_modules/typescript/lib/lib.es2015.d.ts",
3920
- "../../../node_modules/typescript/lib/lib.es2015.generator.d.ts",
3921
- "../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts",
3922
- "../../../node_modules/typescript/lib/lib.es2015.promise.d.ts",
3923
- "../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts",
3924
- "../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts",
3925
- "../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts",
3926
- "../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
3927
- "../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts",
3928
- "../../../node_modules/typescript/lib/lib.es2016.d.ts",
3929
- "../../../node_modules/typescript/lib/lib.es2017.d.ts",
3930
- "../../../node_modules/typescript/lib/lib.es2017.intl.d.ts",
3931
- "../../../node_modules/typescript/lib/lib.es2017.object.d.ts",
3932
- "../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts",
3933
- "../../../node_modules/typescript/lib/lib.es2017.string.d.ts",
3934
- "../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts",
3935
- "../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts",
3936
- "../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts",
3937
- "../../../node_modules/typescript/lib/lib.es2018.d.ts",
3938
- "../../../node_modules/typescript/lib/lib.es2018.intl.d.ts",
3939
- "../../../node_modules/typescript/lib/lib.es2018.promise.d.ts",
3940
- "../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts",
3941
- "../../../node_modules/typescript/lib/lib.es2019.array.d.ts",
3942
- "../../../node_modules/typescript/lib/lib.es2019.d.ts",
3943
- "../../../node_modules/typescript/lib/lib.es2019.object.d.ts",
3944
- "../../../node_modules/typescript/lib/lib.es2019.string.d.ts",
3945
- "../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts",
3946
- "../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts",
3947
- "../../../node_modules/typescript/lib/lib.es2020.d.ts",
3948
- "../../../node_modules/typescript/lib/lib.es2020.intl.d.ts",
3949
- "../../../node_modules/typescript/lib/lib.es2020.promise.d.ts",
3950
- "../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts",
3951
- "../../../node_modules/typescript/lib/lib.es2020.string.d.ts",
3952
- "../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts",
3953
- "../../../node_modules/typescript/lib/lib.es5.d.ts",
3954
- "../../../node_modules/typescript/lib/lib.esnext.d.ts",
3955
- "../../../node_modules/typescript/lib/lib.esnext.intl.d.ts",
3956
- "../../../node_modules/typescript/lib/lib.esnext.promise.d.ts",
3957
- "../../../node_modules/typescript/lib/lib.esnext.string.d.ts",
3958
- "../../../node_modules/typescript/lib/lib.esnext.weakref.d.ts",
3959
- "../../../node_modules/webpack/types.d.ts",
3960
- "../../docusaurus-types/node_modules/commander/typings/index.d.ts",
3961
- "../../docusaurus-types/src/index.d.ts",
3962
- "../node_modules/escape-string-regexp/index.d.ts",
3963
- "../src/codeTranslationsUtils.ts",
3964
- "../src/escapePath.ts",
3965
- "../src/index.ts",
3966
- "../src/markdownLinks.ts",
3967
- "../src/markdownParser.ts",
3968
- "../src/posixPath.ts"
3969
- ]
3970
- },
3971
- "version": "4.2.3"
3972
- }