tsconfig.tsbuildinfo 148 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895
  1. {
  2. "program": {
  3. "fileInfos": {
  4. "../../node_modules/typescript/lib/lib.es5.d.ts": {
  5. "version": "70ae6416528e68c2ee7b62892200d2ca631759943d4429f8b779b947ff1e124d",
  6. "signature": "70ae6416528e68c2ee7b62892200d2ca631759943d4429f8b779b947ff1e124d",
  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.webworker.d.ts": {
  30. "version": "4396961c83faf0553f263e9cd17e9428d025c2d522cdde93e2f0f3b5c8d713b3",
  31. "signature": "4396961c83faf0553f263e9cd17e9428d025c2d522cdde93e2f0f3b5c8d713b3",
  32. "affectsGlobalScope": true
  33. },
  34. "../../node_modules/typescript/lib/lib.es2015.core.d.ts": {
  35. "version": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
  36. "signature": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
  37. "affectsGlobalScope": true
  38. },
  39. "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": {
  40. "version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
  41. "signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
  42. "affectsGlobalScope": true
  43. },
  44. "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": {
  45. "version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
  46. "signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
  47. "affectsGlobalScope": true
  48. },
  49. "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
  50. "version": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
  51. "signature": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
  52. "affectsGlobalScope": true
  53. },
  54. "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": {
  55. "version": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
  56. "signature": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
  57. "affectsGlobalScope": true
  58. },
  59. "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
  60. "version": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
  61. "signature": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
  62. "affectsGlobalScope": true
  63. },
  64. "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
  65. "version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
  66. "signature": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
  67. "affectsGlobalScope": true
  68. },
  69. "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
  70. "version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
  71. "signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
  72. "affectsGlobalScope": true
  73. },
  74. "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
  75. "version": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
  76. "signature": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
  77. "affectsGlobalScope": true
  78. },
  79. "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
  80. "version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
  81. "signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
  82. "affectsGlobalScope": true
  83. },
  84. "../../node_modules/typescript/lib/lib.es2017.object.d.ts": {
  85. "version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
  86. "signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
  87. "affectsGlobalScope": true
  88. },
  89. "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
  90. "version": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
  91. "signature": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
  92. "affectsGlobalScope": true
  93. },
  94. "../../node_modules/typescript/lib/lib.es2017.string.d.ts": {
  95. "version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
  96. "signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
  97. "affectsGlobalScope": true
  98. },
  99. "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": {
  100. "version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
  101. "signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
  102. "affectsGlobalScope": true
  103. },
  104. "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
  105. "version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
  106. "signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
  107. "affectsGlobalScope": true
  108. },
  109. "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
  110. "version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
  111. "signature": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
  112. "affectsGlobalScope": true
  113. },
  114. "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
  115. "version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
  116. "signature": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
  117. "affectsGlobalScope": true
  118. },
  119. "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": {
  120. "version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
  121. "signature": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
  122. "affectsGlobalScope": true
  123. },
  124. "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": {
  125. "version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
  126. "signature": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
  127. "affectsGlobalScope": true
  128. },
  129. "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
  130. "version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
  131. "signature": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
  132. "affectsGlobalScope": true
  133. },
  134. "../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
  135. "version": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
  136. "signature": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
  137. "affectsGlobalScope": true
  138. },
  139. "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
  140. "version": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
  141. "signature": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
  142. "affectsGlobalScope": true
  143. },
  144. "../../infra/type-overrides.d.ts": {
  145. "version": "d20887f4ff14c46bd3174af2b3c952103bbc02e5d191289246bf424fe30e66cc",
  146. "signature": "d20887f4ff14c46bd3174af2b3c952103bbc02e5d191289246bf424fe30e66cc",
  147. "affectsGlobalScope": true
  148. },
  149. "../workbox-core/_version.d.ts": {
  150. "version": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
  151. "signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
  152. "affectsGlobalScope": false
  153. },
  154. "../workbox-core/_private/workboxerror.d.ts": {
  155. "version": "f1c2a1ce3b67ce6a401ccec27d731f1c134e71c78585cb72a124eb5e1a43a345",
  156. "signature": "f1c2a1ce3b67ce6a401ccec27d731f1c134e71c78585cb72a124eb5e1a43a345",
  157. "affectsGlobalScope": false
  158. },
  159. "../workbox-core/_private/assert.d.ts": {
  160. "version": "c4223e70650aab009e6ee9e5eb310ff4114f0b3a4e3169e8800731b43f0b8079",
  161. "signature": "c4223e70650aab009e6ee9e5eb310ff4114f0b3a4e3169e8800731b43f0b8079",
  162. "affectsGlobalScope": false
  163. },
  164. "../workbox-core/_private/cachenames.d.ts": {
  165. "version": "d2cecc057aba8f3ab68764a206ee738179e20cbe7c9c63aa2ad7a76a9b5a4814",
  166. "signature": "d2cecc057aba8f3ab68764a206ee738179e20cbe7c9c63aa2ad7a76a9b5a4814",
  167. "affectsGlobalScope": false
  168. },
  169. "../workbox-core/types.d.ts": {
  170. "version": "73d4b9eedb4b74e4a8cd7e3397786bdedc51acffd40e97703d3a69e3a6740728",
  171. "signature": "73d4b9eedb4b74e4a8cd7e3397786bdedc51acffd40e97703d3a69e3a6740728",
  172. "affectsGlobalScope": false
  173. },
  174. "../workbox-core/_private/cachewrapper.d.ts": {
  175. "version": "048272b1678d9ec36838ef0b88189cb1e9e054e513ecce36ddf1290701f15693",
  176. "signature": "048272b1678d9ec36838ef0b88189cb1e9e054e513ecce36ddf1290701f15693",
  177. "affectsGlobalScope": false
  178. },
  179. "../workbox-core/_private/fetchwrapper.d.ts": {
  180. "version": "d383213d29ae4e4bd14d10cf393ce8b207684cb299b769ae7be13fee00de74d8",
  181. "signature": "d383213d29ae4e4bd14d10cf393ce8b207684cb299b769ae7be13fee00de74d8",
  182. "affectsGlobalScope": false
  183. },
  184. "../workbox-core/_private/logger.d.ts": {
  185. "version": "d763b9ef68a16f3896187af5b51b5a959b479218cc65c2930bcb440cbbf10728",
  186. "signature": "d763b9ef68a16f3896187af5b51b5a959b479218cc65c2930bcb440cbbf10728",
  187. "affectsGlobalScope": true
  188. },
  189. "../workbox-core/copyresponse.d.ts": {
  190. "version": "e99c3df15e63842ba9db38005372577e3827df8bf804f62fa783c54b14b2cf9c",
  191. "signature": "e99c3df15e63842ba9db38005372577e3827df8bf804f62fa783c54b14b2cf9c",
  192. "affectsGlobalScope": false
  193. },
  194. "./src/_version.ts": {
  195. "version": "b361454b2a04742a0d2f5f37a257242f9aee57e01305ad11cf7b838976fa4122",
  196. "signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
  197. "affectsGlobalScope": true
  198. },
  199. "./src/_types.ts": {
  200. "version": "f478c9981d8ed078622b2e09ef2f1368cbdfac04ba79494ab2b878ed79522b3f",
  201. "signature": "4eee22b41c086241b92a5b10c65673ff4d287355327f7f224f2270644b015bf4",
  202. "affectsGlobalScope": false
  203. },
  204. "./src/utils/createcachekey.ts": {
  205. "version": "19da95d47588e92b617e5565f283f00b8cb36007b734f78f021482b95513f6bc",
  206. "signature": "3b6f35eb915d5419e198d6f5d27bacec910e2aebe24c0f2d88852b81638c5858",
  207. "affectsGlobalScope": false
  208. },
  209. "./src/utils/printcleanupdetails.ts": {
  210. "version": "c659a0410fd435f17ebf0209a4fd52ea97e793a46f1409afcd7bb9891a2e731e",
  211. "signature": "e805abbf4ec0cea80a1f9211226773bc66b7ffaf2f43c3fb793e3bff7f25484c",
  212. "affectsGlobalScope": false
  213. },
  214. "./src/utils/printinstalldetails.ts": {
  215. "version": "0ca3de8db90e85cd8476f2f160425bd994853a8f033c9d48efbf846f3fd99f49",
  216. "signature": "196a1ded6fc2b94264ecaf9bbe41a5862eb2d179b394f3bf9e6fe6177cd425d9",
  217. "affectsGlobalScope": false
  218. },
  219. "./src/precachecontroller.ts": {
  220. "version": "ccf3a533a27b95c22658e75e480018f25a1a97464d263513fa092125a68716cb",
  221. "signature": "c6be09887334c93b53e5c22d8ffba9f33200fcfcaa27295447333d61587b54ce",
  222. "affectsGlobalScope": false
  223. },
  224. "./src/utils/precacheplugins.ts": {
  225. "version": "1787f9c64925ad254758b4e71c3b2d2b116a21af0fbb2642a323f084df2a5b66",
  226. "signature": "c89f50432a4eb6b9ae1256c45ef2c6fe9a39002ebddf240fde3817ecddd0f496",
  227. "affectsGlobalScope": false
  228. },
  229. "./src/addplugins.ts": {
  230. "version": "0bee003d291afe67124cce9e392cc69a385c8818f79e23cf7c35138ba5e622ff",
  231. "signature": "621cc6bb16d60070fb872576cbc0e83a3c504ee7c3738a56c0a5b9e4b61f837e",
  232. "affectsGlobalScope": false
  233. },
  234. "../workbox-core/_private/getfriendlyurl.d.ts": {
  235. "version": "9fd40388bab591ded1f8c05b64fbfe3e342c6cd70d594d5238f42dd2186980ff",
  236. "signature": "9fd40388bab591ded1f8c05b64fbfe3e342c6cd70d594d5238f42dd2186980ff",
  237. "affectsGlobalScope": false
  238. },
  239. "./src/utils/getorcreateprecachecontroller.ts": {
  240. "version": "0d2fb144462da91f1a2be9a8cb9e61d7552813b93e3ac2e40d86a7790f62adf2",
  241. "signature": "1319e659c3f79ed86ff73ec6752bffac628907b738ea890dbc73e466fc3d1ea1",
  242. "affectsGlobalScope": false
  243. },
  244. "./src/utils/removeignoredsearchparams.ts": {
  245. "version": "5baca6b2680c094e3ecc8f30fb3d1e1e56533d56b756f93f83c975d91cb1d1ab",
  246. "signature": "6d80b8e6f1f41d97935f29f5b10ae5d4b8566b80cd41b94bff27db47c348d332",
  247. "affectsGlobalScope": false
  248. },
  249. "./src/utils/generateurlvariations.ts": {
  250. "version": "74e5d6de6bc5bae07f19e0b0ccae9de2d6a19623a3c5a82b32a4de86b1227fd4",
  251. "signature": "1f27c62a7242488f340d7dd12a1733311fbe9b0fe745168edbfd45fcabdbc349",
  252. "affectsGlobalScope": false
  253. },
  254. "./src/utils/getcachekeyforurl.ts": {
  255. "version": "5cb8a112d44deca9d321c46b7837a328172f8d180109bd92708c27cd63ff3728",
  256. "signature": "bce53e7b3fe32b07df62b00d7ecb83b7734d6f872e71fb28270cc7f271f6f13a",
  257. "affectsGlobalScope": false
  258. },
  259. "./src/utils/addfetchlistener.ts": {
  260. "version": "0203cd49db0c068d55aedb8edcb3929ccfb79f83a18006b44fbf396d4627c666",
  261. "signature": "c3472774bb0cd6afbc5d256e6219405fe3b3610c05dec8e179655a429504ac65",
  262. "affectsGlobalScope": false
  263. },
  264. "./src/addroute.ts": {
  265. "version": "2d868199c9e399a6ddcd6f39824be2559af9d9df9f9bdc968eda6f5ffcc61781",
  266. "signature": "b3dc8e06cf0b744a56b77db0139ef3f0c16a9d01b7f02e939aeb909cf4a5385c",
  267. "affectsGlobalScope": false
  268. },
  269. "./src/utils/deleteoutdatedcaches.ts": {
  270. "version": "a48e55fece219e0a733a5f22fc49594b930d56b74a03e37bc3368d9553e97a6b",
  271. "signature": "f72fd8a87b5221b8ac323c93542de1db0c3925b2ccdd7613fb579ce9283bbd20",
  272. "affectsGlobalScope": false
  273. },
  274. "./src/cleanupoutdatedcaches.ts": {
  275. "version": "877a851cebcfbb5074dc56ec3f807030171dcac8c8d6c16f27391e7bfa59fc09",
  276. "signature": "47cfc8b947d74e6afeec3482b08a4d49914c13ba386047b7fcb619689abb1d2d",
  277. "affectsGlobalScope": false
  278. },
  279. "./src/createhandler.ts": {
  280. "version": "b1e9b17a65fb2550afe910a20989c33785b3d5942230f1b16ff6a4866ba3de1c",
  281. "signature": "14c50a9091d52bd0bede5e4e950fc4bcf8c1cc3cb83bec42a12dba162d3ee793",
  282. "affectsGlobalScope": false
  283. },
  284. "./src/createhandlerboundtourl.ts": {
  285. "version": "b119e28e6e5f58425e1cf35bba7d19d7e0757be109eaafa0aba954792a11096f",
  286. "signature": "cb2e21a7a83de82e9729bde4aa176f7562a026ef8c091e7ac50c1a7604dbfe1a",
  287. "affectsGlobalScope": false
  288. },
  289. "./src/getcachekeyforurl.ts": {
  290. "version": "d7cdc5464cfaf2e691b0e169f4a1b75147a5418d0f815c1d470abecb3293de2b",
  291. "signature": "c3300736faf2163569b5824a46f403b1eacbcc1aa8883c7687599615fb3b8c12",
  292. "affectsGlobalScope": false
  293. },
  294. "./src/matchprecache.ts": {
  295. "version": "649676040b56ae2cbc8e98fc2d04973b51a9c08aa154c8c23f38b10c5560c2a3",
  296. "signature": "9d4f88245890822ccc5974d9734844080258ecd6bc4bc2e12e9af5e0588382db",
  297. "affectsGlobalScope": false
  298. },
  299. "./src/precache.ts": {
  300. "version": "f406f8c53a12ad03271709c8071d3cfa43f670993fa56f472c5be7a3484b379c",
  301. "signature": "14038a9e257d7dcaacc30f50a6d7aec3025ec728273ed102efa088d5da8aada0",
  302. "affectsGlobalScope": true
  303. },
  304. "./src/precacheandroute.ts": {
  305. "version": "1fe6a6482904310e5a59bb15b8b50bc34bdb915f67727dcdf8d3a2efcc9ee06e",
  306. "signature": "93fb95e140efa371d0f5ae9038cfc5953d15289b350d1c8368d707b15fa8f283",
  307. "affectsGlobalScope": true
  308. },
  309. "./src/index.ts": {
  310. "version": "42c13df9cac3a6416f0f944d949cb2960cf5cacd58d30794ca1908a648c96654",
  311. "signature": "06d0004a571bc2a07a22f8a46b73805d2fb8c86b99f6e9d533016dcca83fdac3",
  312. "affectsGlobalScope": false
  313. },
  314. "../../node_modules/@types/color-name/index.d.ts": {
  315. "version": "f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",
  316. "signature": "f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",
  317. "affectsGlobalScope": false
  318. },
  319. "../../node_modules/@types/eslint-visitor-keys/index.d.ts": {
  320. "version": "725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",
  321. "signature": "725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",
  322. "affectsGlobalScope": false
  323. },
  324. "../../node_modules/@types/estree/index.d.ts": {
  325. "version": "89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b",
  326. "signature": "89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b",
  327. "affectsGlobalScope": false
  328. },
  329. "../../node_modules/@types/node/ts3.1/globals.d.ts": {
  330. "version": "6fc83519155969f2457d2454908d68830a6f6480974914c024eaf4e3248a2fd1",
  331. "signature": "6fc83519155969f2457d2454908d68830a6f6480974914c024eaf4e3248a2fd1",
  332. "affectsGlobalScope": true
  333. },
  334. "../../node_modules/@types/node/ts3.1/async_hooks.d.ts": {
  335. "version": "93a45c42b3b0d24b09a0303b987407e22e13adab7d2e49f3bd7332ca30afcf82",
  336. "signature": "93a45c42b3b0d24b09a0303b987407e22e13adab7d2e49f3bd7332ca30afcf82",
  337. "affectsGlobalScope": false
  338. },
  339. "../../node_modules/@types/node/ts3.1/buffer.d.ts": {
  340. "version": "bc6a78961535181265845bf9b9e8a147ffd0ca275097ceb670a9b92afa825152",
  341. "signature": "bc6a78961535181265845bf9b9e8a147ffd0ca275097ceb670a9b92afa825152",
  342. "affectsGlobalScope": false
  343. },
  344. "../../node_modules/@types/node/ts3.1/child_process.d.ts": {
  345. "version": "714e21572208da98a16594de5e42ee54dbbebca7e69e956d2dac010564378c45",
  346. "signature": "714e21572208da98a16594de5e42ee54dbbebca7e69e956d2dac010564378c45",
  347. "affectsGlobalScope": false
  348. },
  349. "../../node_modules/@types/node/ts3.1/cluster.d.ts": {
  350. "version": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
  351. "signature": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
  352. "affectsGlobalScope": false
  353. },
  354. "../../node_modules/@types/node/ts3.1/console.d.ts": {
  355. "version": "51851805d06a6878796c3a00ccf0839fe18111a38d1bae84964c269f16bcc2b7",
  356. "signature": "51851805d06a6878796c3a00ccf0839fe18111a38d1bae84964c269f16bcc2b7",
  357. "affectsGlobalScope": true
  358. },
  359. "../../node_modules/@types/node/ts3.1/constants.d.ts": {
  360. "version": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
  361. "signature": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
  362. "affectsGlobalScope": false
  363. },
  364. "../../node_modules/@types/node/ts3.1/crypto.d.ts": {
  365. "version": "c5cc5f3a1a963e05947bb1c823d06c3758e0d352c9a97afddc3fd5a6d5c955cd",
  366. "signature": "c5cc5f3a1a963e05947bb1c823d06c3758e0d352c9a97afddc3fd5a6d5c955cd",
  367. "affectsGlobalScope": false
  368. },
  369. "../../node_modules/@types/node/ts3.1/dgram.d.ts": {
  370. "version": "7ecfe97b43aa6c8b8f90caa599d5648bb559962e74e6f038f73a77320569dd78",
  371. "signature": "7ecfe97b43aa6c8b8f90caa599d5648bb559962e74e6f038f73a77320569dd78",
  372. "affectsGlobalScope": false
  373. },
  374. "../../node_modules/@types/node/ts3.1/dns.d.ts": {
  375. "version": "7db7569fbb3e2b01ba8751c761cdd3f0debd104170d5665b7dc20a11630df3a9",
  376. "signature": "7db7569fbb3e2b01ba8751c761cdd3f0debd104170d5665b7dc20a11630df3a9",
  377. "affectsGlobalScope": false
  378. },
  379. "../../node_modules/@types/node/ts3.1/domain.d.ts": {
  380. "version": "cde4d7f6274468180fa39847b183aec22626e8212ff885d535c53f4cd7c225fd",
  381. "signature": "cde4d7f6274468180fa39847b183aec22626e8212ff885d535c53f4cd7c225fd",
  382. "affectsGlobalScope": true
  383. },
  384. "../../node_modules/@types/node/ts3.1/events.d.ts": {
  385. "version": "072b0ac82ae8fe05b0d4f2eadb7f6edd0ebd84175ecad2f9e09261290a86bcee",
  386. "signature": "072b0ac82ae8fe05b0d4f2eadb7f6edd0ebd84175ecad2f9e09261290a86bcee",
  387. "affectsGlobalScope": true
  388. },
  389. "../../node_modules/@types/node/ts3.1/fs.d.ts": {
  390. "version": "5a1eba6d050430241b27463e4917e1d30d3f5e242f47cab42619e4f7c5dea486",
  391. "signature": "5a1eba6d050430241b27463e4917e1d30d3f5e242f47cab42619e4f7c5dea486",
  392. "affectsGlobalScope": false
  393. },
  394. "../../node_modules/@types/node/ts3.1/fs/promises.d.ts": {
  395. "version": "fb28748ff8d015f52e99daee4f454e57cec1a22141f1257c317f3630a15edeb7",
  396. "signature": "fb28748ff8d015f52e99daee4f454e57cec1a22141f1257c317f3630a15edeb7",
  397. "affectsGlobalScope": false
  398. },
  399. "../../node_modules/@types/node/ts3.1/http.d.ts": {
  400. "version": "27534007150d3d80f12fe48dc815b32bf9b92a7de058b52bfc21a256e9d18966",
  401. "signature": "27534007150d3d80f12fe48dc815b32bf9b92a7de058b52bfc21a256e9d18966",
  402. "affectsGlobalScope": false
  403. },
  404. "../../node_modules/@types/node/ts3.1/http2.d.ts": {
  405. "version": "5d9394b829cfd504b2fe17287aaad8ce1dcfb2a2183c962a90a85b96da2c1c90",
  406. "signature": "5d9394b829cfd504b2fe17287aaad8ce1dcfb2a2183c962a90a85b96da2c1c90",
  407. "affectsGlobalScope": false
  408. },
  409. "../../node_modules/@types/node/ts3.1/https.d.ts": {
  410. "version": "c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a",
  411. "signature": "c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a",
  412. "affectsGlobalScope": false
  413. },
  414. "../../node_modules/@types/node/ts3.1/inspector.d.ts": {
  415. "version": "6c3857edaeeaaf43812f527830ebeece9266b6e8eb5271ab6d2f0008306c9947",
  416. "signature": "6c3857edaeeaaf43812f527830ebeece9266b6e8eb5271ab6d2f0008306c9947",
  417. "affectsGlobalScope": false
  418. },
  419. "../../node_modules/@types/node/ts3.1/module.d.ts": {
  420. "version": "bc6a77e750f4d34584e46b1405b771fb69a224197dd6bafe5b0392a29a70b665",
  421. "signature": "bc6a77e750f4d34584e46b1405b771fb69a224197dd6bafe5b0392a29a70b665",
  422. "affectsGlobalScope": false
  423. },
  424. "../../node_modules/@types/node/ts3.1/net.d.ts": {
  425. "version": "46cac76114704902baa535b30fb66a26aeaf9430f3b3ab44746e329f12e85498",
  426. "signature": "46cac76114704902baa535b30fb66a26aeaf9430f3b3ab44746e329f12e85498",
  427. "affectsGlobalScope": false
  428. },
  429. "../../node_modules/@types/node/ts3.1/os.d.ts": {
  430. "version": "ed4ae81196cccc10f297d228bca8d02e31058e6d723a3c5bc4be5fb3c61c6a34",
  431. "signature": "ed4ae81196cccc10f297d228bca8d02e31058e6d723a3c5bc4be5fb3c61c6a34",
  432. "affectsGlobalScope": false
  433. },
  434. "../../node_modules/@types/node/ts3.1/path.d.ts": {
  435. "version": "84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35",
  436. "signature": "84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35",
  437. "affectsGlobalScope": false
  438. },
  439. "../../node_modules/@types/node/ts3.1/perf_hooks.d.ts": {
  440. "version": "0b6098fedb648cab8091cca2b022a5c729b6ef18da923852033f495907cb1a45",
  441. "signature": "0b6098fedb648cab8091cca2b022a5c729b6ef18da923852033f495907cb1a45",
  442. "affectsGlobalScope": false
  443. },
  444. "../../node_modules/@types/node/ts3.1/process.d.ts": {
  445. "version": "3b421841e978ea425f634dcef9093890a6f2c245e49164101e970acd534972a8",
  446. "signature": "3b421841e978ea425f634dcef9093890a6f2c245e49164101e970acd534972a8",
  447. "affectsGlobalScope": true
  448. },
  449. "../../node_modules/@types/node/ts3.1/punycode.d.ts": {
  450. "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
  451. "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
  452. "affectsGlobalScope": false
  453. },
  454. "../../node_modules/@types/node/ts3.1/querystring.d.ts": {
  455. "version": "884560fda6c3868f925f022adc3a1289fe6507bbb45adb10fa1bbcc73a941bb0",
  456. "signature": "884560fda6c3868f925f022adc3a1289fe6507bbb45adb10fa1bbcc73a941bb0",
  457. "affectsGlobalScope": false
  458. },
  459. "../../node_modules/@types/node/ts3.1/readline.d.ts": {
  460. "version": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
  461. "signature": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
  462. "affectsGlobalScope": false
  463. },
  464. "../../node_modules/@types/node/ts3.1/repl.d.ts": {
  465. "version": "dd3706b25d06fe23c73d16079e8c66ac775831ef419da00716bf2aee530a04a4",
  466. "signature": "dd3706b25d06fe23c73d16079e8c66ac775831ef419da00716bf2aee530a04a4",
  467. "affectsGlobalScope": false
  468. },
  469. "../../node_modules/@types/node/ts3.1/stream.d.ts": {
  470. "version": "1298327149e93a60c24a3b5db6048f7cc8fd4e3259e91d05fc44306a04b1b873",
  471. "signature": "1298327149e93a60c24a3b5db6048f7cc8fd4e3259e91d05fc44306a04b1b873",
  472. "affectsGlobalScope": false
  473. },
  474. "../../node_modules/@types/node/ts3.1/string_decoder.d.ts": {
  475. "version": "d67e08745494b000da9410c1ae2fdc9965fc6d593fe0f381a47491f75417d457",
  476. "signature": "d67e08745494b000da9410c1ae2fdc9965fc6d593fe0f381a47491f75417d457",
  477. "affectsGlobalScope": false
  478. },
  479. "../../node_modules/@types/node/ts3.1/timers.d.ts": {
  480. "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
  481. "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
  482. "affectsGlobalScope": false
  483. },
  484. "../../node_modules/@types/node/ts3.1/tls.d.ts": {
  485. "version": "3181290a158e54a78c1a57c41791ec1cbdc860ae565916daa1bf4e425b7edac7",
  486. "signature": "3181290a158e54a78c1a57c41791ec1cbdc860ae565916daa1bf4e425b7edac7",
  487. "affectsGlobalScope": false
  488. },
  489. "../../node_modules/@types/node/ts3.1/trace_events.d.ts": {
  490. "version": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
  491. "signature": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
  492. "affectsGlobalScope": false
  493. },
  494. "../../node_modules/@types/node/ts3.1/tty.d.ts": {
  495. "version": "3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748",
  496. "signature": "3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748",
  497. "affectsGlobalScope": false
  498. },
  499. "../../node_modules/@types/node/ts3.1/url.d.ts": {
  500. "version": "826d48e49c905cedb906cbde6ccaf758827ff5867d4daa006b5a79e0fb489357",
  501. "signature": "826d48e49c905cedb906cbde6ccaf758827ff5867d4daa006b5a79e0fb489357",
  502. "affectsGlobalScope": false
  503. },
  504. "../../node_modules/@types/node/ts3.1/util.d.ts": {
  505. "version": "baa711b17f67390c60eac3c70a1391b23a8e3833cb723b2d7336d4817a22455c",
  506. "signature": "baa711b17f67390c60eac3c70a1391b23a8e3833cb723b2d7336d4817a22455c",
  507. "affectsGlobalScope": false
  508. },
  509. "../../node_modules/@types/node/ts3.1/v8.d.ts": {
  510. "version": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
  511. "signature": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
  512. "affectsGlobalScope": false
  513. },
  514. "../../node_modules/@types/node/ts3.1/vm.d.ts": {
  515. "version": "a1136cf18dbe1b9b600c65538fd48609a1a4772d115a0c1d775839fe6544487c",
  516. "signature": "a1136cf18dbe1b9b600c65538fd48609a1a4772d115a0c1d775839fe6544487c",
  517. "affectsGlobalScope": false
  518. },
  519. "../../node_modules/@types/node/ts3.1/worker_threads.d.ts": {
  520. "version": "e8482f41c6e001657302dcb3a1ba30359a0983574caee9405ef863cb9eac3b95",
  521. "signature": "e8482f41c6e001657302dcb3a1ba30359a0983574caee9405ef863cb9eac3b95",
  522. "affectsGlobalScope": false
  523. },
  524. "../../node_modules/@types/node/ts3.1/zlib.d.ts": {
  525. "version": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
  526. "signature": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
  527. "affectsGlobalScope": false
  528. },
  529. "../../node_modules/@types/node/ts3.1/base.d.ts": {
  530. "version": "328c57762da32e49f410588955f8d1daf9f2a5cf59437fbcd197119a2590e15f",
  531. "signature": "328c57762da32e49f410588955f8d1daf9f2a5cf59437fbcd197119a2590e15f",
  532. "affectsGlobalScope": false
  533. },
  534. "../../node_modules/@types/node/ts3.4/fs.d.ts": {
  535. "version": "df9091bc09522870e0fc29f5c0f747841916962d05b0f96a02c79c6860b28755",
  536. "signature": "df9091bc09522870e0fc29f5c0f747841916962d05b0f96a02c79c6860b28755",
  537. "affectsGlobalScope": false
  538. },
  539. "../../node_modules/@types/node/ts3.4/process.d.ts": {
  540. "version": "397810d9057c5e8848c7a483993ead84a6504a7900bd2a29d715ce09dbb912ff",
  541. "signature": "397810d9057c5e8848c7a483993ead84a6504a7900bd2a29d715ce09dbb912ff",
  542. "affectsGlobalScope": true
  543. },
  544. "../../node_modules/@types/node/ts3.4/util.d.ts": {
  545. "version": "e27cf5991f16fd25dffb7136376cd417974540e984a4b1e0b26aa52c92aed7ae",
  546. "signature": "e27cf5991f16fd25dffb7136376cd417974540e984a4b1e0b26aa52c92aed7ae",
  547. "affectsGlobalScope": false
  548. },
  549. "../../node_modules/@types/node/ts3.4/globals.d.ts": {
  550. "version": "4dc1f3918747b7960d67ed631526b9f2cde9f3dad49c092b177a2b16dc4f7c9f",
  551. "signature": "4dc1f3918747b7960d67ed631526b9f2cde9f3dad49c092b177a2b16dc4f7c9f",
  552. "affectsGlobalScope": true
  553. },
  554. "../../node_modules/@types/node/ts3.4/base.d.ts": {
  555. "version": "333327fe52a97f3940539513b0e3b47e1e6df97cd9132975a496bbd1ada22026",
  556. "signature": "333327fe52a97f3940539513b0e3b47e1e6df97cd9132975a496bbd1ada22026",
  557. "affectsGlobalScope": false
  558. },
  559. "../../node_modules/@types/node/ts3.6/globals.global.d.ts": {
  560. "version": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
  561. "signature": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
  562. "affectsGlobalScope": true
  563. },
  564. "../../node_modules/@types/node/ts3.6/wasi.d.ts": {
  565. "version": "0b3fef11ea6208c4cb3715c9aa108766ce98fc726bfba68cc23b25ce944ce9c0",
  566. "signature": "0b3fef11ea6208c4cb3715c9aa108766ce98fc726bfba68cc23b25ce944ce9c0",
  567. "affectsGlobalScope": false
  568. },
  569. "../../node_modules/@types/node/ts3.6/base.d.ts": {
  570. "version": "947affd97f392fae63e91ce355c1ada75ef2290ed8353f37d3c7138b9bf811fc",
  571. "signature": "947affd97f392fae63e91ce355c1ada75ef2290ed8353f37d3c7138b9bf811fc",
  572. "affectsGlobalScope": false
  573. },
  574. "../../node_modules/@types/node/assert.d.ts": {
  575. "version": "a8b842671d535d14f533fd8dbfacebceacf5195069d720425d572d5cc5ab3dc4",
  576. "signature": "a8b842671d535d14f533fd8dbfacebceacf5195069d720425d572d5cc5ab3dc4",
  577. "affectsGlobalScope": false
  578. },
  579. "../../node_modules/@types/node/base.d.ts": {
  580. "version": "d20072cb51d8baad944bedd935a25c7f10c29744e9a648d2c72c215337356077",
  581. "signature": "d20072cb51d8baad944bedd935a25c7f10c29744e9a648d2c72c215337356077",
  582. "affectsGlobalScope": false
  583. },
  584. "../../node_modules/@types/node/index.d.ts": {
  585. "version": "98a637a0675858025e5be25c133dcdc10a0640a25e7cd610a512389b1676bc30",
  586. "signature": "98a637a0675858025e5be25c133dcdc10a0640a25e7cd610a512389b1676bc30",
  587. "affectsGlobalScope": false
  588. },
  589. "../../node_modules/@types/minimatch/index.d.ts": {
  590. "version": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633",
  591. "signature": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633",
  592. "affectsGlobalScope": false
  593. },
  594. "../../node_modules/@types/glob/index.d.ts": {
  595. "version": "393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0",
  596. "signature": "393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0",
  597. "affectsGlobalScope": false
  598. },
  599. "../../node_modules/@types/json-schema/index.d.ts": {
  600. "version": "b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024",
  601. "signature": "b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024",
  602. "affectsGlobalScope": false
  603. },
  604. "../../node_modules/@types/minimist/index.d.ts": {
  605. "version": "3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e",
  606. "signature": "3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e",
  607. "affectsGlobalScope": false
  608. },
  609. "../../node_modules/@types/normalize-package-data/index.d.ts": {
  610. "version": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613",
  611. "signature": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613",
  612. "affectsGlobalScope": false
  613. },
  614. "../../node_modules/@types/resolve/index.d.ts": {
  615. "version": "2880728492d6a6baa55411d14cc42fa55714a24b1d1d27ff9a8a610abd47c761",
  616. "signature": "2880728492d6a6baa55411d14cc42fa55714a24b1d1d27ff9a8a610abd47c761",
  617. "affectsGlobalScope": false
  618. },
  619. "../../node_modules/@types/yauzl/index.d.ts": {
  620. "version": "3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26",
  621. "signature": "3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26",
  622. "affectsGlobalScope": false
  623. }
  624. },
  625. "options": {
  626. "composite": true,
  627. "declaration": true,
  628. "lib": [
  629. "lib.es2017.d.ts",
  630. "lib.webworker.d.ts"
  631. ],
  632. "module": 99,
  633. "moduleResolution": 2,
  634. "noFallthroughCasesInSwitch": true,
  635. "noImplicitReturns": true,
  636. "noUnusedLocals": true,
  637. "noUnusedParameters": true,
  638. "preserveConstEnums": true,
  639. "strict": true,
  640. "target": 99,
  641. "tsBuildInfoFile": "./tsconfig.tsbuildinfo",
  642. "outDir": "./",
  643. "rootDir": "./src",
  644. "configFilePath": "./tsconfig.json"
  645. },
  646. "referencedMap": {
  647. "../../infra/type-overrides.d.ts": [
  648. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  649. "../../node_modules/@types/node/ts3.1/process.d.ts",
  650. "../../node_modules/@types/node/ts3.1/util.d.ts",
  651. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  652. "../../node_modules/@types/node/ts3.4/process.d.ts",
  653. "../../node_modules/@types/node/ts3.4/util.d.ts"
  654. ],
  655. "../../node_modules/@types/color-name/index.d.ts": [
  656. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  657. "../../node_modules/@types/node/ts3.1/process.d.ts",
  658. "../../node_modules/@types/node/ts3.1/util.d.ts",
  659. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  660. "../../node_modules/@types/node/ts3.4/process.d.ts",
  661. "../../node_modules/@types/node/ts3.4/util.d.ts"
  662. ],
  663. "../../node_modules/@types/eslint-visitor-keys/index.d.ts": [
  664. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  665. "../../node_modules/@types/node/ts3.1/process.d.ts",
  666. "../../node_modules/@types/node/ts3.1/util.d.ts",
  667. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  668. "../../node_modules/@types/node/ts3.4/process.d.ts",
  669. "../../node_modules/@types/node/ts3.4/util.d.ts"
  670. ],
  671. "../../node_modules/@types/estree/index.d.ts": [
  672. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  673. "../../node_modules/@types/node/ts3.1/process.d.ts",
  674. "../../node_modules/@types/node/ts3.1/util.d.ts",
  675. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  676. "../../node_modules/@types/node/ts3.4/process.d.ts",
  677. "../../node_modules/@types/node/ts3.4/util.d.ts"
  678. ],
  679. "../../node_modules/@types/glob/index.d.ts": [
  680. "../../node_modules/@types/minimatch/index.d.ts",
  681. "../../node_modules/@types/node/index.d.ts",
  682. "../../node_modules/@types/node/ts3.1/events.d.ts",
  683. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  684. "../../node_modules/@types/node/ts3.1/process.d.ts",
  685. "../../node_modules/@types/node/ts3.1/util.d.ts",
  686. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  687. "../../node_modules/@types/node/ts3.4/process.d.ts",
  688. "../../node_modules/@types/node/ts3.4/util.d.ts"
  689. ],
  690. "../../node_modules/@types/json-schema/index.d.ts": [
  691. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  692. "../../node_modules/@types/node/ts3.1/process.d.ts",
  693. "../../node_modules/@types/node/ts3.1/util.d.ts",
  694. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  695. "../../node_modules/@types/node/ts3.4/process.d.ts",
  696. "../../node_modules/@types/node/ts3.4/util.d.ts"
  697. ],
  698. "../../node_modules/@types/minimatch/index.d.ts": [
  699. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  700. "../../node_modules/@types/node/ts3.1/process.d.ts",
  701. "../../node_modules/@types/node/ts3.1/util.d.ts",
  702. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  703. "../../node_modules/@types/node/ts3.4/process.d.ts",
  704. "../../node_modules/@types/node/ts3.4/util.d.ts"
  705. ],
  706. "../../node_modules/@types/minimist/index.d.ts": [
  707. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  708. "../../node_modules/@types/node/ts3.1/process.d.ts",
  709. "../../node_modules/@types/node/ts3.1/util.d.ts",
  710. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  711. "../../node_modules/@types/node/ts3.4/process.d.ts",
  712. "../../node_modules/@types/node/ts3.4/util.d.ts"
  713. ],
  714. "../../node_modules/@types/node/assert.d.ts": [
  715. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  716. "../../node_modules/@types/node/ts3.1/process.d.ts",
  717. "../../node_modules/@types/node/ts3.1/util.d.ts",
  718. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  719. "../../node_modules/@types/node/ts3.4/process.d.ts",
  720. "../../node_modules/@types/node/ts3.4/util.d.ts"
  721. ],
  722. "../../node_modules/@types/node/base.d.ts": [
  723. "../../node_modules/@types/node/assert.d.ts",
  724. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  725. "../../node_modules/@types/node/ts3.1/process.d.ts",
  726. "../../node_modules/@types/node/ts3.1/util.d.ts",
  727. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  728. "../../node_modules/@types/node/ts3.4/process.d.ts",
  729. "../../node_modules/@types/node/ts3.4/util.d.ts",
  730. "../../node_modules/@types/node/ts3.6/base.d.ts"
  731. ],
  732. "../../node_modules/@types/node/index.d.ts": [
  733. "../../node_modules/@types/node/base.d.ts",
  734. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  735. "../../node_modules/@types/node/ts3.1/process.d.ts",
  736. "../../node_modules/@types/node/ts3.1/util.d.ts",
  737. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  738. "../../node_modules/@types/node/ts3.4/process.d.ts",
  739. "../../node_modules/@types/node/ts3.4/util.d.ts"
  740. ],
  741. "../../node_modules/@types/node/ts3.1/async_hooks.d.ts": [
  742. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  743. "../../node_modules/@types/node/ts3.1/process.d.ts",
  744. "../../node_modules/@types/node/ts3.1/util.d.ts",
  745. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  746. "../../node_modules/@types/node/ts3.4/process.d.ts",
  747. "../../node_modules/@types/node/ts3.4/util.d.ts"
  748. ],
  749. "../../node_modules/@types/node/ts3.1/base.d.ts": [
  750. "../../node_modules/@types/node/ts3.1/async_hooks.d.ts",
  751. "../../node_modules/@types/node/ts3.1/buffer.d.ts",
  752. "../../node_modules/@types/node/ts3.1/child_process.d.ts",
  753. "../../node_modules/@types/node/ts3.1/cluster.d.ts",
  754. "../../node_modules/@types/node/ts3.1/console.d.ts",
  755. "../../node_modules/@types/node/ts3.1/constants.d.ts",
  756. "../../node_modules/@types/node/ts3.1/crypto.d.ts",
  757. "../../node_modules/@types/node/ts3.1/dgram.d.ts",
  758. "../../node_modules/@types/node/ts3.1/dns.d.ts",
  759. "../../node_modules/@types/node/ts3.1/domain.d.ts",
  760. "../../node_modules/@types/node/ts3.1/events.d.ts",
  761. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  762. "../../node_modules/@types/node/ts3.1/fs/promises.d.ts",
  763. "../../node_modules/@types/node/ts3.1/globals.d.ts",
  764. "../../node_modules/@types/node/ts3.1/http.d.ts",
  765. "../../node_modules/@types/node/ts3.1/http2.d.ts",
  766. "../../node_modules/@types/node/ts3.1/https.d.ts",
  767. "../../node_modules/@types/node/ts3.1/inspector.d.ts",
  768. "../../node_modules/@types/node/ts3.1/module.d.ts",
  769. "../../node_modules/@types/node/ts3.1/net.d.ts",
  770. "../../node_modules/@types/node/ts3.1/os.d.ts",
  771. "../../node_modules/@types/node/ts3.1/path.d.ts",
  772. "../../node_modules/@types/node/ts3.1/perf_hooks.d.ts",
  773. "../../node_modules/@types/node/ts3.1/process.d.ts",
  774. "../../node_modules/@types/node/ts3.1/punycode.d.ts",
  775. "../../node_modules/@types/node/ts3.1/querystring.d.ts",
  776. "../../node_modules/@types/node/ts3.1/readline.d.ts",
  777. "../../node_modules/@types/node/ts3.1/repl.d.ts",
  778. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  779. "../../node_modules/@types/node/ts3.1/string_decoder.d.ts",
  780. "../../node_modules/@types/node/ts3.1/timers.d.ts",
  781. "../../node_modules/@types/node/ts3.1/tls.d.ts",
  782. "../../node_modules/@types/node/ts3.1/trace_events.d.ts",
  783. "../../node_modules/@types/node/ts3.1/tty.d.ts",
  784. "../../node_modules/@types/node/ts3.1/url.d.ts",
  785. "../../node_modules/@types/node/ts3.1/util.d.ts",
  786. "../../node_modules/@types/node/ts3.1/v8.d.ts",
  787. "../../node_modules/@types/node/ts3.1/vm.d.ts",
  788. "../../node_modules/@types/node/ts3.1/worker_threads.d.ts",
  789. "../../node_modules/@types/node/ts3.1/zlib.d.ts",
  790. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  791. "../../node_modules/@types/node/ts3.4/process.d.ts",
  792. "../../node_modules/@types/node/ts3.4/util.d.ts"
  793. ],
  794. "../../node_modules/@types/node/ts3.1/buffer.d.ts": [
  795. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  796. "../../node_modules/@types/node/ts3.1/process.d.ts",
  797. "../../node_modules/@types/node/ts3.1/util.d.ts",
  798. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  799. "../../node_modules/@types/node/ts3.4/process.d.ts",
  800. "../../node_modules/@types/node/ts3.4/util.d.ts"
  801. ],
  802. "../../node_modules/@types/node/ts3.1/child_process.d.ts": [
  803. "../../node_modules/@types/node/ts3.1/events.d.ts",
  804. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  805. "../../node_modules/@types/node/ts3.1/net.d.ts",
  806. "../../node_modules/@types/node/ts3.1/process.d.ts",
  807. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  808. "../../node_modules/@types/node/ts3.1/util.d.ts",
  809. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  810. "../../node_modules/@types/node/ts3.4/process.d.ts",
  811. "../../node_modules/@types/node/ts3.4/util.d.ts"
  812. ],
  813. "../../node_modules/@types/node/ts3.1/cluster.d.ts": [
  814. "../../node_modules/@types/node/ts3.1/child_process.d.ts",
  815. "../../node_modules/@types/node/ts3.1/events.d.ts",
  816. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  817. "../../node_modules/@types/node/ts3.1/net.d.ts",
  818. "../../node_modules/@types/node/ts3.1/process.d.ts",
  819. "../../node_modules/@types/node/ts3.1/util.d.ts",
  820. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  821. "../../node_modules/@types/node/ts3.4/process.d.ts",
  822. "../../node_modules/@types/node/ts3.4/util.d.ts"
  823. ],
  824. "../../node_modules/@types/node/ts3.1/console.d.ts": [
  825. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  826. "../../node_modules/@types/node/ts3.1/process.d.ts",
  827. "../../node_modules/@types/node/ts3.1/util.d.ts",
  828. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  829. "../../node_modules/@types/node/ts3.4/process.d.ts",
  830. "../../node_modules/@types/node/ts3.4/util.d.ts"
  831. ],
  832. "../../node_modules/@types/node/ts3.1/constants.d.ts": [
  833. "../../node_modules/@types/node/ts3.1/crypto.d.ts",
  834. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  835. "../../node_modules/@types/node/ts3.1/os.d.ts",
  836. "../../node_modules/@types/node/ts3.1/process.d.ts",
  837. "../../node_modules/@types/node/ts3.1/util.d.ts",
  838. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  839. "../../node_modules/@types/node/ts3.4/process.d.ts",
  840. "../../node_modules/@types/node/ts3.4/util.d.ts"
  841. ],
  842. "../../node_modules/@types/node/ts3.1/crypto.d.ts": [
  843. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  844. "../../node_modules/@types/node/ts3.1/process.d.ts",
  845. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  846. "../../node_modules/@types/node/ts3.1/util.d.ts",
  847. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  848. "../../node_modules/@types/node/ts3.4/process.d.ts",
  849. "../../node_modules/@types/node/ts3.4/util.d.ts"
  850. ],
  851. "../../node_modules/@types/node/ts3.1/dgram.d.ts": [
  852. "../../node_modules/@types/node/ts3.1/dns.d.ts",
  853. "../../node_modules/@types/node/ts3.1/events.d.ts",
  854. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  855. "../../node_modules/@types/node/ts3.1/net.d.ts",
  856. "../../node_modules/@types/node/ts3.1/process.d.ts",
  857. "../../node_modules/@types/node/ts3.1/util.d.ts",
  858. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  859. "../../node_modules/@types/node/ts3.4/process.d.ts",
  860. "../../node_modules/@types/node/ts3.4/util.d.ts"
  861. ],
  862. "../../node_modules/@types/node/ts3.1/dns.d.ts": [
  863. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  864. "../../node_modules/@types/node/ts3.1/process.d.ts",
  865. "../../node_modules/@types/node/ts3.1/util.d.ts",
  866. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  867. "../../node_modules/@types/node/ts3.4/process.d.ts",
  868. "../../node_modules/@types/node/ts3.4/util.d.ts"
  869. ],
  870. "../../node_modules/@types/node/ts3.1/domain.d.ts": [
  871. "../../node_modules/@types/node/ts3.1/events.d.ts",
  872. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  873. "../../node_modules/@types/node/ts3.1/process.d.ts",
  874. "../../node_modules/@types/node/ts3.1/util.d.ts",
  875. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  876. "../../node_modules/@types/node/ts3.4/process.d.ts",
  877. "../../node_modules/@types/node/ts3.4/util.d.ts"
  878. ],
  879. "../../node_modules/@types/node/ts3.1/events.d.ts": [
  880. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  881. "../../node_modules/@types/node/ts3.1/process.d.ts",
  882. "../../node_modules/@types/node/ts3.1/util.d.ts",
  883. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  884. "../../node_modules/@types/node/ts3.4/process.d.ts",
  885. "../../node_modules/@types/node/ts3.4/util.d.ts"
  886. ],
  887. "../../node_modules/@types/node/ts3.1/fs.d.ts": [
  888. "../../node_modules/@types/node/ts3.1/events.d.ts",
  889. "../../node_modules/@types/node/ts3.1/fs/promises.d.ts",
  890. "../../node_modules/@types/node/ts3.1/process.d.ts",
  891. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  892. "../../node_modules/@types/node/ts3.1/url.d.ts",
  893. "../../node_modules/@types/node/ts3.1/util.d.ts",
  894. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  895. "../../node_modules/@types/node/ts3.4/process.d.ts",
  896. "../../node_modules/@types/node/ts3.4/util.d.ts"
  897. ],
  898. "../../node_modules/@types/node/ts3.1/fs/promises.d.ts": [
  899. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  900. "../../node_modules/@types/node/ts3.1/process.d.ts",
  901. "../../node_modules/@types/node/ts3.1/util.d.ts",
  902. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  903. "../../node_modules/@types/node/ts3.4/process.d.ts",
  904. "../../node_modules/@types/node/ts3.4/util.d.ts"
  905. ],
  906. "../../node_modules/@types/node/ts3.1/globals.d.ts": [
  907. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  908. "../../node_modules/@types/node/ts3.1/process.d.ts",
  909. "../../node_modules/@types/node/ts3.1/util.d.ts",
  910. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  911. "../../node_modules/@types/node/ts3.4/process.d.ts",
  912. "../../node_modules/@types/node/ts3.4/util.d.ts"
  913. ],
  914. "../../node_modules/@types/node/ts3.1/http.d.ts": [
  915. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  916. "../../node_modules/@types/node/ts3.1/net.d.ts",
  917. "../../node_modules/@types/node/ts3.1/process.d.ts",
  918. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  919. "../../node_modules/@types/node/ts3.1/url.d.ts",
  920. "../../node_modules/@types/node/ts3.1/util.d.ts",
  921. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  922. "../../node_modules/@types/node/ts3.4/process.d.ts",
  923. "../../node_modules/@types/node/ts3.4/util.d.ts"
  924. ],
  925. "../../node_modules/@types/node/ts3.1/http2.d.ts": [
  926. "../../node_modules/@types/node/ts3.1/events.d.ts",
  927. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  928. "../../node_modules/@types/node/ts3.1/http.d.ts",
  929. "../../node_modules/@types/node/ts3.1/net.d.ts",
  930. "../../node_modules/@types/node/ts3.1/process.d.ts",
  931. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  932. "../../node_modules/@types/node/ts3.1/tls.d.ts",
  933. "../../node_modules/@types/node/ts3.1/url.d.ts",
  934. "../../node_modules/@types/node/ts3.1/util.d.ts",
  935. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  936. "../../node_modules/@types/node/ts3.4/process.d.ts",
  937. "../../node_modules/@types/node/ts3.4/util.d.ts"
  938. ],
  939. "../../node_modules/@types/node/ts3.1/https.d.ts": [
  940. "../../node_modules/@types/node/ts3.1/events.d.ts",
  941. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  942. "../../node_modules/@types/node/ts3.1/http.d.ts",
  943. "../../node_modules/@types/node/ts3.1/process.d.ts",
  944. "../../node_modules/@types/node/ts3.1/tls.d.ts",
  945. "../../node_modules/@types/node/ts3.1/url.d.ts",
  946. "../../node_modules/@types/node/ts3.1/util.d.ts",
  947. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  948. "../../node_modules/@types/node/ts3.4/process.d.ts",
  949. "../../node_modules/@types/node/ts3.4/util.d.ts"
  950. ],
  951. "../../node_modules/@types/node/ts3.1/inspector.d.ts": [
  952. "../../node_modules/@types/node/ts3.1/events.d.ts",
  953. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  954. "../../node_modules/@types/node/ts3.1/process.d.ts",
  955. "../../node_modules/@types/node/ts3.1/util.d.ts",
  956. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  957. "../../node_modules/@types/node/ts3.4/process.d.ts",
  958. "../../node_modules/@types/node/ts3.4/util.d.ts"
  959. ],
  960. "../../node_modules/@types/node/ts3.1/module.d.ts": [
  961. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  962. "../../node_modules/@types/node/ts3.1/process.d.ts",
  963. "../../node_modules/@types/node/ts3.1/url.d.ts",
  964. "../../node_modules/@types/node/ts3.1/util.d.ts",
  965. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  966. "../../node_modules/@types/node/ts3.4/process.d.ts",
  967. "../../node_modules/@types/node/ts3.4/util.d.ts"
  968. ],
  969. "../../node_modules/@types/node/ts3.1/net.d.ts": [
  970. "../../node_modules/@types/node/ts3.1/dns.d.ts",
  971. "../../node_modules/@types/node/ts3.1/events.d.ts",
  972. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  973. "../../node_modules/@types/node/ts3.1/process.d.ts",
  974. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  975. "../../node_modules/@types/node/ts3.1/util.d.ts",
  976. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  977. "../../node_modules/@types/node/ts3.4/process.d.ts",
  978. "../../node_modules/@types/node/ts3.4/util.d.ts"
  979. ],
  980. "../../node_modules/@types/node/ts3.1/os.d.ts": [
  981. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  982. "../../node_modules/@types/node/ts3.1/process.d.ts",
  983. "../../node_modules/@types/node/ts3.1/util.d.ts",
  984. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  985. "../../node_modules/@types/node/ts3.4/process.d.ts",
  986. "../../node_modules/@types/node/ts3.4/util.d.ts"
  987. ],
  988. "../../node_modules/@types/node/ts3.1/path.d.ts": [
  989. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  990. "../../node_modules/@types/node/ts3.1/process.d.ts",
  991. "../../node_modules/@types/node/ts3.1/util.d.ts",
  992. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  993. "../../node_modules/@types/node/ts3.4/process.d.ts",
  994. "../../node_modules/@types/node/ts3.4/util.d.ts"
  995. ],
  996. "../../node_modules/@types/node/ts3.1/perf_hooks.d.ts": [
  997. "../../node_modules/@types/node/ts3.1/async_hooks.d.ts",
  998. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  999. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1000. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1001. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1002. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1003. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1004. ],
  1005. "../../node_modules/@types/node/ts3.1/process.d.ts": [
  1006. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1007. "../../node_modules/@types/node/ts3.1/tty.d.ts",
  1008. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1009. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1010. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1011. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1012. ],
  1013. "../../node_modules/@types/node/ts3.1/punycode.d.ts": [
  1014. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1015. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1016. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1017. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1018. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1019. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1020. ],
  1021. "../../node_modules/@types/node/ts3.1/querystring.d.ts": [
  1022. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1023. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1024. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1025. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1026. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1027. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1028. ],
  1029. "../../node_modules/@types/node/ts3.1/readline.d.ts": [
  1030. "../../node_modules/@types/node/ts3.1/events.d.ts",
  1031. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1032. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1033. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  1034. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1035. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1036. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1037. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1038. ],
  1039. "../../node_modules/@types/node/ts3.1/repl.d.ts": [
  1040. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1041. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1042. "../../node_modules/@types/node/ts3.1/readline.d.ts",
  1043. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1044. "../../node_modules/@types/node/ts3.1/vm.d.ts",
  1045. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1046. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1047. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1048. ],
  1049. "../../node_modules/@types/node/ts3.1/stream.d.ts": [
  1050. "../../node_modules/@types/node/ts3.1/events.d.ts",
  1051. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1052. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1053. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1054. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1055. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1056. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1057. ],
  1058. "../../node_modules/@types/node/ts3.1/string_decoder.d.ts": [
  1059. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1060. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1061. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1062. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1063. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1064. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1065. ],
  1066. "../../node_modules/@types/node/ts3.1/timers.d.ts": [
  1067. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1068. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1069. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1070. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1071. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1072. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1073. ],
  1074. "../../node_modules/@types/node/ts3.1/tls.d.ts": [
  1075. "../../node_modules/@types/node/ts3.1/crypto.d.ts",
  1076. "../../node_modules/@types/node/ts3.1/dns.d.ts",
  1077. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1078. "../../node_modules/@types/node/ts3.1/net.d.ts",
  1079. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1080. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  1081. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1082. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1083. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1084. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1085. ],
  1086. "../../node_modules/@types/node/ts3.1/trace_events.d.ts": [
  1087. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1088. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1089. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1090. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1091. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1092. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1093. ],
  1094. "../../node_modules/@types/node/ts3.1/tty.d.ts": [
  1095. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1096. "../../node_modules/@types/node/ts3.1/net.d.ts",
  1097. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1098. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1099. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1100. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1101. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1102. ],
  1103. "../../node_modules/@types/node/ts3.1/url.d.ts": [
  1104. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1105. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1106. "../../node_modules/@types/node/ts3.1/querystring.d.ts",
  1107. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1108. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1109. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1110. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1111. ],
  1112. "../../node_modules/@types/node/ts3.1/util.d.ts": [
  1113. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1114. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1115. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1116. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1117. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1118. ],
  1119. "../../node_modules/@types/node/ts3.1/v8.d.ts": [
  1120. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1121. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1122. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  1123. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1124. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1125. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1126. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1127. ],
  1128. "../../node_modules/@types/node/ts3.1/vm.d.ts": [
  1129. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1130. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1131. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1132. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1133. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1134. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1135. ],
  1136. "../../node_modules/@types/node/ts3.1/worker_threads.d.ts": [
  1137. "../../node_modules/@types/node/ts3.1/events.d.ts",
  1138. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1139. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1140. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  1141. "../../node_modules/@types/node/ts3.1/url.d.ts",
  1142. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1143. "../../node_modules/@types/node/ts3.1/vm.d.ts",
  1144. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1145. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1146. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1147. ],
  1148. "../../node_modules/@types/node/ts3.1/zlib.d.ts": [
  1149. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1150. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1151. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  1152. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1153. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1154. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1155. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1156. ],
  1157. "../../node_modules/@types/node/ts3.4/base.d.ts": [
  1158. "../../node_modules/@types/node/ts3.1/base.d.ts",
  1159. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1160. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1161. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1162. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1163. "../../node_modules/@types/node/ts3.4/globals.d.ts",
  1164. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1165. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1166. ],
  1167. "../../node_modules/@types/node/ts3.4/fs.d.ts": [
  1168. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1169. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1170. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1171. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1172. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1173. ],
  1174. "../../node_modules/@types/node/ts3.4/globals.d.ts": [
  1175. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1176. "../../node_modules/@types/node/ts3.1/globals.d.ts",
  1177. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1178. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1179. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1180. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1181. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1182. ],
  1183. "../../node_modules/@types/node/ts3.4/process.d.ts": [
  1184. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1185. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1186. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1187. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1188. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1189. ],
  1190. "../../node_modules/@types/node/ts3.4/util.d.ts": [
  1191. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1192. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1193. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1194. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1195. "../../node_modules/@types/node/ts3.4/process.d.ts"
  1196. ],
  1197. "../../node_modules/@types/node/ts3.6/base.d.ts": [
  1198. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1199. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1200. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1201. "../../node_modules/@types/node/ts3.4/base.d.ts",
  1202. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1203. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1204. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1205. "../../node_modules/@types/node/ts3.6/globals.global.d.ts",
  1206. "../../node_modules/@types/node/ts3.6/wasi.d.ts"
  1207. ],
  1208. "../../node_modules/@types/node/ts3.6/globals.global.d.ts": [
  1209. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1210. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1211. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1212. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1213. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1214. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1215. ],
  1216. "../../node_modules/@types/node/ts3.6/wasi.d.ts": [
  1217. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1218. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1219. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1220. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1221. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1222. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1223. ],
  1224. "../../node_modules/@types/normalize-package-data/index.d.ts": [
  1225. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1226. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1227. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1228. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1229. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1230. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1231. ],
  1232. "../../node_modules/@types/resolve/index.d.ts": [
  1233. "../../node_modules/@types/node/index.d.ts",
  1234. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1235. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1236. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1237. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1238. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1239. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1240. ],
  1241. "../../node_modules/@types/yauzl/index.d.ts": [
  1242. "../../node_modules/@types/node/index.d.ts",
  1243. "../../node_modules/@types/node/ts3.1/events.d.ts",
  1244. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1245. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1246. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  1247. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1248. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1249. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1250. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1251. ],
  1252. "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
  1253. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1254. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1255. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1256. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1257. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1258. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1259. ],
  1260. "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [
  1261. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1262. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1263. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1264. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1265. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1266. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1267. ],
  1268. "../../node_modules/typescript/lib/lib.es2015.d.ts": [
  1269. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1270. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1271. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1272. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1273. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1274. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1275. ],
  1276. "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
  1277. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1278. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1279. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1280. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1281. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1282. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1283. ],
  1284. "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
  1285. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1286. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1287. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1288. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1289. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1290. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1291. ],
  1292. "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
  1293. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1294. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1295. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1296. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1297. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1298. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1299. ],
  1300. "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
  1301. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1302. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1303. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1304. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1305. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1306. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1307. ],
  1308. "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
  1309. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1310. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1311. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1312. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1313. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1314. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1315. ],
  1316. "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
  1317. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1318. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1319. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1320. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1321. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1322. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1323. ],
  1324. "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
  1325. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1326. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1327. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1328. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1329. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1330. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1331. ],
  1332. "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
  1333. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1334. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1335. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1336. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1337. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1338. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1339. ],
  1340. "../../node_modules/typescript/lib/lib.es2016.d.ts": [
  1341. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1342. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1343. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1344. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1345. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1346. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1347. ],
  1348. "../../node_modules/typescript/lib/lib.es2017.d.ts": [
  1349. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1350. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1351. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1352. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1353. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1354. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1355. ],
  1356. "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
  1357. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1358. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1359. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1360. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1361. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1362. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1363. ],
  1364. "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [
  1365. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1366. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1367. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1368. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1369. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1370. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1371. ],
  1372. "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
  1373. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1374. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1375. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1376. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1377. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1378. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1379. ],
  1380. "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [
  1381. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1382. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1383. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1384. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1385. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1386. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1387. ],
  1388. "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
  1389. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1390. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1391. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1392. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1393. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1394. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1395. ],
  1396. "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
  1397. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1398. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1399. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1400. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1401. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1402. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1403. ],
  1404. "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
  1405. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1406. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1407. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1408. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1409. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1410. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1411. ],
  1412. "../../node_modules/typescript/lib/lib.es2018.d.ts": [
  1413. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1414. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1415. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1416. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1417. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1418. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1419. ],
  1420. "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
  1421. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1422. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1423. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1424. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1425. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1426. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1427. ],
  1428. "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
  1429. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1430. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1431. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1432. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1433. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1434. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1435. ],
  1436. "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
  1437. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1438. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1439. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1440. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1441. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1442. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1443. ],
  1444. "../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
  1445. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1446. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1447. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1448. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1449. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1450. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1451. ],
  1452. "../../node_modules/typescript/lib/lib.es5.d.ts": [
  1453. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1454. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1455. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1456. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1457. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1458. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1459. ],
  1460. "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
  1461. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1462. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1463. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1464. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1465. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1466. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1467. ],
  1468. "../../node_modules/typescript/lib/lib.webworker.d.ts": [
  1469. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1470. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1471. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1472. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1473. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1474. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1475. ],
  1476. "../workbox-core/_private/assert.d.ts": [
  1477. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1478. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1479. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1480. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1481. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1482. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1483. "../workbox-core/_private/workboxerror.d.ts"
  1484. ],
  1485. "../workbox-core/_private/cachenames.d.ts": [
  1486. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1487. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1488. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1489. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1490. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1491. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1492. ],
  1493. "../workbox-core/_private/cachewrapper.d.ts": [
  1494. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1495. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1496. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1497. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1498. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1499. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1500. "../workbox-core/types.d.ts"
  1501. ],
  1502. "../workbox-core/_private/fetchwrapper.d.ts": [
  1503. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1504. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1505. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1506. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1507. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1508. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1509. "../workbox-core/types.d.ts"
  1510. ],
  1511. "../workbox-core/_private/getfriendlyurl.d.ts": [
  1512. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1513. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1514. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1515. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1516. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1517. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1518. ],
  1519. "../workbox-core/_private/logger.d.ts": [
  1520. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1521. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1522. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1523. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1524. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1525. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1526. ],
  1527. "../workbox-core/_private/workboxerror.d.ts": [
  1528. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1529. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1530. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1531. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1532. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1533. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1534. ],
  1535. "../workbox-core/_version.d.ts": [
  1536. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1537. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1538. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1539. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1540. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1541. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1542. ],
  1543. "../workbox-core/copyresponse.d.ts": [
  1544. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1545. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1546. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1547. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1548. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1549. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1550. ],
  1551. "../workbox-core/types.d.ts": [
  1552. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1553. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1554. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1555. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1556. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1557. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1558. ],
  1559. "./src/_types.ts": [
  1560. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1561. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1562. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1563. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1564. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1565. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1566. ],
  1567. "./src/_version.ts": [
  1568. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1569. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1570. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1571. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1572. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1573. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1574. ],
  1575. "./src/addplugins.ts": [
  1576. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1577. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1578. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1579. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1580. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1581. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1582. "../workbox-core/types.d.ts",
  1583. "./src/utils/precacheplugins.ts"
  1584. ],
  1585. "./src/addroute.ts": [
  1586. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1587. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1588. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1589. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1590. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1591. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1592. "./src/utils/addfetchlistener.ts"
  1593. ],
  1594. "./src/cleanupoutdatedcaches.ts": [
  1595. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1596. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1597. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1598. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1599. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1600. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1601. "../workbox-core/_private/cachenames.d.ts",
  1602. "../workbox-core/_private/logger.d.ts",
  1603. "./src/utils/deleteoutdatedcaches.ts"
  1604. ],
  1605. "./src/createhandler.ts": [
  1606. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1607. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1608. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1609. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1610. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1611. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1612. "./src/utils/getorcreateprecachecontroller.ts"
  1613. ],
  1614. "./src/createhandlerboundtourl.ts": [
  1615. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1616. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1617. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1618. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1619. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1620. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1621. "./src/utils/getorcreateprecachecontroller.ts"
  1622. ],
  1623. "./src/getcachekeyforurl.ts": [
  1624. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1625. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1626. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1627. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1628. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1629. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1630. "./src/utils/getorcreateprecachecontroller.ts"
  1631. ],
  1632. "./src/index.ts": [
  1633. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1634. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1635. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1636. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1637. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1638. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1639. "./src/addplugins.ts",
  1640. "./src/addroute.ts",
  1641. "./src/cleanupoutdatedcaches.ts",
  1642. "./src/createhandler.ts",
  1643. "./src/createhandlerboundtourl.ts",
  1644. "./src/getcachekeyforurl.ts",
  1645. "./src/matchprecache.ts",
  1646. "./src/precache.ts",
  1647. "./src/precacheandroute.ts",
  1648. "./src/precachecontroller.ts"
  1649. ],
  1650. "./src/matchprecache.ts": [
  1651. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1652. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1653. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1654. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1655. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1656. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1657. "./src/utils/getorcreateprecachecontroller.ts"
  1658. ],
  1659. "./src/precache.ts": [
  1660. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1661. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1662. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1663. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1664. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1665. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1666. "../workbox-core/_private/logger.d.ts",
  1667. "./src/_types.ts",
  1668. "./src/utils/getorcreateprecachecontroller.ts",
  1669. "./src/utils/precacheplugins.ts"
  1670. ],
  1671. "./src/precacheandroute.ts": [
  1672. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1673. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1674. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1675. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1676. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1677. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1678. "./src/_types.ts",
  1679. "./src/addroute.ts",
  1680. "./src/precache.ts",
  1681. "./src/utils/addfetchlistener.ts"
  1682. ],
  1683. "./src/precachecontroller.ts": [
  1684. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1685. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1686. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1687. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1688. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1689. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1690. "../workbox-core/_private/assert.d.ts",
  1691. "../workbox-core/_private/cachenames.d.ts",
  1692. "../workbox-core/_private/cachewrapper.d.ts",
  1693. "../workbox-core/_private/fetchwrapper.d.ts",
  1694. "../workbox-core/_private/logger.d.ts",
  1695. "../workbox-core/_private/workboxerror.d.ts",
  1696. "../workbox-core/copyresponse.d.ts",
  1697. "../workbox-core/types.d.ts",
  1698. "./src/_types.ts",
  1699. "./src/utils/createcachekey.ts",
  1700. "./src/utils/printcleanupdetails.ts",
  1701. "./src/utils/printinstalldetails.ts"
  1702. ],
  1703. "./src/utils/addfetchlistener.ts": [
  1704. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1705. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1706. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1707. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1708. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1709. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1710. "../workbox-core/_private/cachenames.d.ts",
  1711. "../workbox-core/_private/getfriendlyurl.d.ts",
  1712. "../workbox-core/_private/logger.d.ts",
  1713. "./src/_types.ts",
  1714. "./src/utils/getcachekeyforurl.ts"
  1715. ],
  1716. "./src/utils/createcachekey.ts": [
  1717. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1718. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1719. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1720. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1721. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1722. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1723. "../workbox-core/_private/workboxerror.d.ts",
  1724. "./src/_types.ts"
  1725. ],
  1726. "./src/utils/deleteoutdatedcaches.ts": [
  1727. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1728. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1729. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1730. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1731. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1732. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1733. ],
  1734. "./src/utils/generateurlvariations.ts": [
  1735. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1736. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1737. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1738. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1739. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1740. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1741. "./src/utils/addfetchlistener.ts",
  1742. "./src/utils/removeignoredsearchparams.ts"
  1743. ],
  1744. "./src/utils/getcachekeyforurl.ts": [
  1745. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1746. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1747. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1748. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1749. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1750. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1751. "./src/utils/addfetchlistener.ts",
  1752. "./src/utils/generateurlvariations.ts",
  1753. "./src/utils/getorcreateprecachecontroller.ts"
  1754. ],
  1755. "./src/utils/getorcreateprecachecontroller.ts": [
  1756. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1757. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1758. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1759. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1760. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1761. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1762. "./src/precachecontroller.ts"
  1763. ],
  1764. "./src/utils/precacheplugins.ts": [
  1765. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1766. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1767. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1768. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1769. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1770. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1771. "../workbox-core/types.d.ts"
  1772. ],
  1773. "./src/utils/printcleanupdetails.ts": [
  1774. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1775. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1776. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1777. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1778. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1779. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1780. "../workbox-core/_private/logger.d.ts"
  1781. ],
  1782. "./src/utils/printinstalldetails.ts": [
  1783. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1784. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1785. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1786. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1787. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1788. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1789. "../workbox-core/_private/logger.d.ts"
  1790. ],
  1791. "./src/utils/removeignoredsearchparams.ts": [
  1792. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1793. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1794. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1795. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1796. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1797. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1798. ]
  1799. },
  1800. "exportedModulesMap": {
  1801. "../../infra/type-overrides.d.ts": [
  1802. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1803. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1804. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1805. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1806. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1807. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1808. ],
  1809. "../../node_modules/@types/color-name/index.d.ts": [
  1810. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1811. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1812. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1813. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1814. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1815. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1816. ],
  1817. "../../node_modules/@types/eslint-visitor-keys/index.d.ts": [
  1818. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1819. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1820. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1821. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1822. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1823. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1824. ],
  1825. "../../node_modules/@types/estree/index.d.ts": [
  1826. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1827. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1828. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1829. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1830. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1831. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1832. ],
  1833. "../../node_modules/@types/glob/index.d.ts": [
  1834. "../../node_modules/@types/minimatch/index.d.ts",
  1835. "../../node_modules/@types/node/index.d.ts",
  1836. "../../node_modules/@types/node/ts3.1/events.d.ts",
  1837. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1838. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1839. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1840. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1841. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1842. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1843. ],
  1844. "../../node_modules/@types/json-schema/index.d.ts": [
  1845. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1846. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1847. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1848. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1849. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1850. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1851. ],
  1852. "../../node_modules/@types/minimatch/index.d.ts": [
  1853. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1854. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1855. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1856. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1857. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1858. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1859. ],
  1860. "../../node_modules/@types/minimist/index.d.ts": [
  1861. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1862. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1863. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1864. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1865. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1866. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1867. ],
  1868. "../../node_modules/@types/node/assert.d.ts": [
  1869. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1870. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1871. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1872. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1873. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1874. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1875. ],
  1876. "../../node_modules/@types/node/base.d.ts": [
  1877. "../../node_modules/@types/node/assert.d.ts",
  1878. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1879. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1880. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1881. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1882. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1883. "../../node_modules/@types/node/ts3.4/util.d.ts",
  1884. "../../node_modules/@types/node/ts3.6/base.d.ts"
  1885. ],
  1886. "../../node_modules/@types/node/index.d.ts": [
  1887. "../../node_modules/@types/node/base.d.ts",
  1888. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1889. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1890. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1891. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1892. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1893. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1894. ],
  1895. "../../node_modules/@types/node/ts3.1/async_hooks.d.ts": [
  1896. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1897. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1898. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1899. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1900. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1901. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1902. ],
  1903. "../../node_modules/@types/node/ts3.1/base.d.ts": [
  1904. "../../node_modules/@types/node/ts3.1/async_hooks.d.ts",
  1905. "../../node_modules/@types/node/ts3.1/buffer.d.ts",
  1906. "../../node_modules/@types/node/ts3.1/child_process.d.ts",
  1907. "../../node_modules/@types/node/ts3.1/cluster.d.ts",
  1908. "../../node_modules/@types/node/ts3.1/console.d.ts",
  1909. "../../node_modules/@types/node/ts3.1/constants.d.ts",
  1910. "../../node_modules/@types/node/ts3.1/crypto.d.ts",
  1911. "../../node_modules/@types/node/ts3.1/dgram.d.ts",
  1912. "../../node_modules/@types/node/ts3.1/dns.d.ts",
  1913. "../../node_modules/@types/node/ts3.1/domain.d.ts",
  1914. "../../node_modules/@types/node/ts3.1/events.d.ts",
  1915. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1916. "../../node_modules/@types/node/ts3.1/fs/promises.d.ts",
  1917. "../../node_modules/@types/node/ts3.1/globals.d.ts",
  1918. "../../node_modules/@types/node/ts3.1/http.d.ts",
  1919. "../../node_modules/@types/node/ts3.1/http2.d.ts",
  1920. "../../node_modules/@types/node/ts3.1/https.d.ts",
  1921. "../../node_modules/@types/node/ts3.1/inspector.d.ts",
  1922. "../../node_modules/@types/node/ts3.1/module.d.ts",
  1923. "../../node_modules/@types/node/ts3.1/net.d.ts",
  1924. "../../node_modules/@types/node/ts3.1/os.d.ts",
  1925. "../../node_modules/@types/node/ts3.1/path.d.ts",
  1926. "../../node_modules/@types/node/ts3.1/perf_hooks.d.ts",
  1927. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1928. "../../node_modules/@types/node/ts3.1/punycode.d.ts",
  1929. "../../node_modules/@types/node/ts3.1/querystring.d.ts",
  1930. "../../node_modules/@types/node/ts3.1/readline.d.ts",
  1931. "../../node_modules/@types/node/ts3.1/repl.d.ts",
  1932. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  1933. "../../node_modules/@types/node/ts3.1/string_decoder.d.ts",
  1934. "../../node_modules/@types/node/ts3.1/timers.d.ts",
  1935. "../../node_modules/@types/node/ts3.1/tls.d.ts",
  1936. "../../node_modules/@types/node/ts3.1/trace_events.d.ts",
  1937. "../../node_modules/@types/node/ts3.1/tty.d.ts",
  1938. "../../node_modules/@types/node/ts3.1/url.d.ts",
  1939. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1940. "../../node_modules/@types/node/ts3.1/v8.d.ts",
  1941. "../../node_modules/@types/node/ts3.1/vm.d.ts",
  1942. "../../node_modules/@types/node/ts3.1/worker_threads.d.ts",
  1943. "../../node_modules/@types/node/ts3.1/zlib.d.ts",
  1944. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1945. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1946. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1947. ],
  1948. "../../node_modules/@types/node/ts3.1/buffer.d.ts": [
  1949. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1950. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1951. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1952. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1953. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1954. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1955. ],
  1956. "../../node_modules/@types/node/ts3.1/child_process.d.ts": [
  1957. "../../node_modules/@types/node/ts3.1/events.d.ts",
  1958. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1959. "../../node_modules/@types/node/ts3.1/net.d.ts",
  1960. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1961. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  1962. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1963. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1964. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1965. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1966. ],
  1967. "../../node_modules/@types/node/ts3.1/cluster.d.ts": [
  1968. "../../node_modules/@types/node/ts3.1/child_process.d.ts",
  1969. "../../node_modules/@types/node/ts3.1/events.d.ts",
  1970. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1971. "../../node_modules/@types/node/ts3.1/net.d.ts",
  1972. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1973. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1974. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1975. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1976. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1977. ],
  1978. "../../node_modules/@types/node/ts3.1/console.d.ts": [
  1979. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1980. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1981. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1982. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1983. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1984. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1985. ],
  1986. "../../node_modules/@types/node/ts3.1/constants.d.ts": [
  1987. "../../node_modules/@types/node/ts3.1/crypto.d.ts",
  1988. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1989. "../../node_modules/@types/node/ts3.1/os.d.ts",
  1990. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1991. "../../node_modules/@types/node/ts3.1/util.d.ts",
  1992. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  1993. "../../node_modules/@types/node/ts3.4/process.d.ts",
  1994. "../../node_modules/@types/node/ts3.4/util.d.ts"
  1995. ],
  1996. "../../node_modules/@types/node/ts3.1/crypto.d.ts": [
  1997. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  1998. "../../node_modules/@types/node/ts3.1/process.d.ts",
  1999. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2000. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2001. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2002. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2003. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2004. ],
  2005. "../../node_modules/@types/node/ts3.1/dgram.d.ts": [
  2006. "../../node_modules/@types/node/ts3.1/dns.d.ts",
  2007. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2008. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2009. "../../node_modules/@types/node/ts3.1/net.d.ts",
  2010. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2011. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2012. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2013. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2014. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2015. ],
  2016. "../../node_modules/@types/node/ts3.1/dns.d.ts": [
  2017. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2018. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2019. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2020. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2021. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2022. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2023. ],
  2024. "../../node_modules/@types/node/ts3.1/domain.d.ts": [
  2025. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2026. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2027. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2028. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2029. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2030. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2031. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2032. ],
  2033. "../../node_modules/@types/node/ts3.1/events.d.ts": [
  2034. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2035. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2036. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2037. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2038. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2039. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2040. ],
  2041. "../../node_modules/@types/node/ts3.1/fs.d.ts": [
  2042. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2043. "../../node_modules/@types/node/ts3.1/fs/promises.d.ts",
  2044. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2045. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2046. "../../node_modules/@types/node/ts3.1/url.d.ts",
  2047. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2048. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2049. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2050. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2051. ],
  2052. "../../node_modules/@types/node/ts3.1/fs/promises.d.ts": [
  2053. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2054. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2055. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2056. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2057. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2058. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2059. ],
  2060. "../../node_modules/@types/node/ts3.1/globals.d.ts": [
  2061. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2062. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2063. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2064. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2065. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2066. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2067. ],
  2068. "../../node_modules/@types/node/ts3.1/http.d.ts": [
  2069. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2070. "../../node_modules/@types/node/ts3.1/net.d.ts",
  2071. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2072. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2073. "../../node_modules/@types/node/ts3.1/url.d.ts",
  2074. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2075. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2076. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2077. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2078. ],
  2079. "../../node_modules/@types/node/ts3.1/http2.d.ts": [
  2080. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2081. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2082. "../../node_modules/@types/node/ts3.1/http.d.ts",
  2083. "../../node_modules/@types/node/ts3.1/net.d.ts",
  2084. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2085. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2086. "../../node_modules/@types/node/ts3.1/tls.d.ts",
  2087. "../../node_modules/@types/node/ts3.1/url.d.ts",
  2088. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2089. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2090. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2091. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2092. ],
  2093. "../../node_modules/@types/node/ts3.1/https.d.ts": [
  2094. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2095. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2096. "../../node_modules/@types/node/ts3.1/http.d.ts",
  2097. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2098. "../../node_modules/@types/node/ts3.1/tls.d.ts",
  2099. "../../node_modules/@types/node/ts3.1/url.d.ts",
  2100. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2101. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2102. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2103. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2104. ],
  2105. "../../node_modules/@types/node/ts3.1/inspector.d.ts": [
  2106. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2107. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2108. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2109. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2110. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2111. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2112. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2113. ],
  2114. "../../node_modules/@types/node/ts3.1/module.d.ts": [
  2115. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2116. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2117. "../../node_modules/@types/node/ts3.1/url.d.ts",
  2118. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2119. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2120. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2121. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2122. ],
  2123. "../../node_modules/@types/node/ts3.1/net.d.ts": [
  2124. "../../node_modules/@types/node/ts3.1/dns.d.ts",
  2125. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2126. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2127. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2128. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2129. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2130. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2131. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2132. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2133. ],
  2134. "../../node_modules/@types/node/ts3.1/os.d.ts": [
  2135. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2136. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2137. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2138. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2139. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2140. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2141. ],
  2142. "../../node_modules/@types/node/ts3.1/path.d.ts": [
  2143. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2144. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2145. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2146. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2147. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2148. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2149. ],
  2150. "../../node_modules/@types/node/ts3.1/perf_hooks.d.ts": [
  2151. "../../node_modules/@types/node/ts3.1/async_hooks.d.ts",
  2152. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2153. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2154. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2155. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2156. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2157. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2158. ],
  2159. "../../node_modules/@types/node/ts3.1/process.d.ts": [
  2160. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2161. "../../node_modules/@types/node/ts3.1/tty.d.ts",
  2162. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2163. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2164. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2165. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2166. ],
  2167. "../../node_modules/@types/node/ts3.1/punycode.d.ts": [
  2168. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2169. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2170. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2171. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2172. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2173. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2174. ],
  2175. "../../node_modules/@types/node/ts3.1/querystring.d.ts": [
  2176. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2177. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2178. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2179. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2180. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2181. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2182. ],
  2183. "../../node_modules/@types/node/ts3.1/readline.d.ts": [
  2184. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2185. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2186. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2187. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2188. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2189. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2190. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2191. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2192. ],
  2193. "../../node_modules/@types/node/ts3.1/repl.d.ts": [
  2194. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2195. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2196. "../../node_modules/@types/node/ts3.1/readline.d.ts",
  2197. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2198. "../../node_modules/@types/node/ts3.1/vm.d.ts",
  2199. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2200. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2201. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2202. ],
  2203. "../../node_modules/@types/node/ts3.1/stream.d.ts": [
  2204. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2205. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2206. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2207. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2208. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2209. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2210. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2211. ],
  2212. "../../node_modules/@types/node/ts3.1/string_decoder.d.ts": [
  2213. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2214. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2215. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2216. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2217. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2218. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2219. ],
  2220. "../../node_modules/@types/node/ts3.1/timers.d.ts": [
  2221. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2222. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2223. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2224. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2225. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2226. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2227. ],
  2228. "../../node_modules/@types/node/ts3.1/tls.d.ts": [
  2229. "../../node_modules/@types/node/ts3.1/crypto.d.ts",
  2230. "../../node_modules/@types/node/ts3.1/dns.d.ts",
  2231. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2232. "../../node_modules/@types/node/ts3.1/net.d.ts",
  2233. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2234. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2235. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2236. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2237. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2238. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2239. ],
  2240. "../../node_modules/@types/node/ts3.1/trace_events.d.ts": [
  2241. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2242. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2243. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2244. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2245. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2246. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2247. ],
  2248. "../../node_modules/@types/node/ts3.1/tty.d.ts": [
  2249. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2250. "../../node_modules/@types/node/ts3.1/net.d.ts",
  2251. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2252. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2253. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2254. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2255. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2256. ],
  2257. "../../node_modules/@types/node/ts3.1/url.d.ts": [
  2258. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2259. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2260. "../../node_modules/@types/node/ts3.1/querystring.d.ts",
  2261. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2262. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2263. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2264. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2265. ],
  2266. "../../node_modules/@types/node/ts3.1/util.d.ts": [
  2267. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2268. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2269. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2270. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2271. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2272. ],
  2273. "../../node_modules/@types/node/ts3.1/v8.d.ts": [
  2274. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2275. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2276. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2277. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2278. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2279. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2280. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2281. ],
  2282. "../../node_modules/@types/node/ts3.1/vm.d.ts": [
  2283. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2284. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2285. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2286. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2287. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2288. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2289. ],
  2290. "../../node_modules/@types/node/ts3.1/worker_threads.d.ts": [
  2291. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2292. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2293. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2294. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2295. "../../node_modules/@types/node/ts3.1/url.d.ts",
  2296. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2297. "../../node_modules/@types/node/ts3.1/vm.d.ts",
  2298. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2299. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2300. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2301. ],
  2302. "../../node_modules/@types/node/ts3.1/zlib.d.ts": [
  2303. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2304. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2305. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2306. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2307. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2308. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2309. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2310. ],
  2311. "../../node_modules/@types/node/ts3.4/base.d.ts": [
  2312. "../../node_modules/@types/node/ts3.1/base.d.ts",
  2313. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2314. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2315. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2316. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2317. "../../node_modules/@types/node/ts3.4/globals.d.ts",
  2318. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2319. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2320. ],
  2321. "../../node_modules/@types/node/ts3.4/fs.d.ts": [
  2322. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2323. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2324. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2325. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2326. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2327. ],
  2328. "../../node_modules/@types/node/ts3.4/globals.d.ts": [
  2329. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2330. "../../node_modules/@types/node/ts3.1/globals.d.ts",
  2331. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2332. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2333. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2334. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2335. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2336. ],
  2337. "../../node_modules/@types/node/ts3.4/process.d.ts": [
  2338. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2339. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2340. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2341. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2342. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2343. ],
  2344. "../../node_modules/@types/node/ts3.4/util.d.ts": [
  2345. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2346. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2347. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2348. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2349. "../../node_modules/@types/node/ts3.4/process.d.ts"
  2350. ],
  2351. "../../node_modules/@types/node/ts3.6/base.d.ts": [
  2352. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2353. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2354. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2355. "../../node_modules/@types/node/ts3.4/base.d.ts",
  2356. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2357. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2358. "../../node_modules/@types/node/ts3.4/util.d.ts",
  2359. "../../node_modules/@types/node/ts3.6/globals.global.d.ts",
  2360. "../../node_modules/@types/node/ts3.6/wasi.d.ts"
  2361. ],
  2362. "../../node_modules/@types/node/ts3.6/globals.global.d.ts": [
  2363. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2364. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2365. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2366. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2367. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2368. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2369. ],
  2370. "../../node_modules/@types/node/ts3.6/wasi.d.ts": [
  2371. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2372. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2373. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2374. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2375. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2376. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2377. ],
  2378. "../../node_modules/@types/normalize-package-data/index.d.ts": [
  2379. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2380. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2381. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2382. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2383. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2384. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2385. ],
  2386. "../../node_modules/@types/resolve/index.d.ts": [
  2387. "../../node_modules/@types/node/index.d.ts",
  2388. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2389. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2390. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2391. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2392. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2393. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2394. ],
  2395. "../../node_modules/@types/yauzl/index.d.ts": [
  2396. "../../node_modules/@types/node/index.d.ts",
  2397. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2398. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2399. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2400. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2401. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2402. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2403. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2404. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2405. ],
  2406. "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
  2407. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2408. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2409. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2410. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2411. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2412. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2413. ],
  2414. "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [
  2415. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2416. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2417. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2418. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2419. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2420. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2421. ],
  2422. "../../node_modules/typescript/lib/lib.es2015.d.ts": [
  2423. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2424. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2425. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2426. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2427. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2428. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2429. ],
  2430. "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
  2431. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2432. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2433. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2434. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2435. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2436. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2437. ],
  2438. "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
  2439. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2440. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2441. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2442. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2443. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2444. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2445. ],
  2446. "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
  2447. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2448. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2449. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2450. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2451. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2452. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2453. ],
  2454. "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
  2455. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2456. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2457. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2458. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2459. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2460. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2461. ],
  2462. "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
  2463. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2464. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2465. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2466. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2467. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2468. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2469. ],
  2470. "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
  2471. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2472. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2473. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2474. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2475. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2476. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2477. ],
  2478. "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
  2479. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2480. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2481. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2482. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2483. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2484. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2485. ],
  2486. "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
  2487. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2488. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2489. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2490. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2491. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2492. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2493. ],
  2494. "../../node_modules/typescript/lib/lib.es2016.d.ts": [
  2495. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2496. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2497. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2498. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2499. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2500. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2501. ],
  2502. "../../node_modules/typescript/lib/lib.es2017.d.ts": [
  2503. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2504. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2505. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2506. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2507. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2508. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2509. ],
  2510. "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
  2511. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2512. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2513. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2514. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2515. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2516. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2517. ],
  2518. "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [
  2519. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2520. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2521. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2522. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2523. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2524. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2525. ],
  2526. "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
  2527. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2528. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2529. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2530. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2531. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2532. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2533. ],
  2534. "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [
  2535. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2536. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2537. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2538. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2539. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2540. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2541. ],
  2542. "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
  2543. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2544. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2545. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2546. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2547. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2548. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2549. ],
  2550. "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
  2551. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2552. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2553. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2554. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2555. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2556. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2557. ],
  2558. "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
  2559. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2560. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2561. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2562. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2563. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2564. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2565. ],
  2566. "../../node_modules/typescript/lib/lib.es2018.d.ts": [
  2567. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2568. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2569. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2570. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2571. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2572. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2573. ],
  2574. "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
  2575. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2576. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2577. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2578. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2579. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2580. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2581. ],
  2582. "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
  2583. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2584. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2585. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2586. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2587. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2588. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2589. ],
  2590. "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
  2591. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2592. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2593. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2594. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2595. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2596. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2597. ],
  2598. "../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
  2599. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2600. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2601. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2602. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2603. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2604. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2605. ],
  2606. "../../node_modules/typescript/lib/lib.es5.d.ts": [
  2607. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2608. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2609. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2610. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2611. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2612. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2613. ],
  2614. "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
  2615. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2616. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2617. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2618. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2619. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2620. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2621. ],
  2622. "../../node_modules/typescript/lib/lib.webworker.d.ts": [
  2623. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2624. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2625. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2626. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2627. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2628. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2629. ],
  2630. "../workbox-core/_private/assert.d.ts": [
  2631. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2632. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2633. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2634. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2635. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2636. "../../node_modules/@types/node/ts3.4/util.d.ts",
  2637. "../workbox-core/_private/workboxerror.d.ts"
  2638. ],
  2639. "../workbox-core/_private/cachenames.d.ts": [
  2640. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2641. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2642. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2643. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2644. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2645. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2646. ],
  2647. "../workbox-core/_private/cachewrapper.d.ts": [
  2648. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2649. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2650. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2651. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2652. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2653. "../../node_modules/@types/node/ts3.4/util.d.ts",
  2654. "../workbox-core/types.d.ts"
  2655. ],
  2656. "../workbox-core/_private/fetchwrapper.d.ts": [
  2657. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2658. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2659. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2660. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2661. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2662. "../../node_modules/@types/node/ts3.4/util.d.ts",
  2663. "../workbox-core/types.d.ts"
  2664. ],
  2665. "../workbox-core/_private/getfriendlyurl.d.ts": [
  2666. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2667. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2668. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2669. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2670. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2671. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2672. ],
  2673. "../workbox-core/_private/logger.d.ts": [
  2674. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2675. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2676. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2677. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2678. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2679. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2680. ],
  2681. "../workbox-core/_private/workboxerror.d.ts": [
  2682. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2683. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2684. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2685. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2686. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2687. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2688. ],
  2689. "../workbox-core/_version.d.ts": [
  2690. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2691. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2692. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2693. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2694. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2695. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2696. ],
  2697. "../workbox-core/copyresponse.d.ts": [
  2698. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2699. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2700. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2701. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2702. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2703. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2704. ],
  2705. "../workbox-core/types.d.ts": [
  2706. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2707. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2708. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2709. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2710. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2711. "../../node_modules/@types/node/ts3.4/util.d.ts"
  2712. ],
  2713. "./src/addplugins.ts": [
  2714. "../workbox-core/types.d.ts"
  2715. ],
  2716. "./src/addroute.ts": [
  2717. "./src/utils/addfetchlistener.ts"
  2718. ],
  2719. "./src/createhandler.ts": [
  2720. "../workbox-core/types.d.ts"
  2721. ],
  2722. "./src/createhandlerboundtourl.ts": [
  2723. "../workbox-core/types.d.ts"
  2724. ],
  2725. "./src/index.ts": [
  2726. "./src/addplugins.ts",
  2727. "./src/addroute.ts",
  2728. "./src/cleanupoutdatedcaches.ts",
  2729. "./src/createhandler.ts",
  2730. "./src/createhandlerboundtourl.ts",
  2731. "./src/getcachekeyforurl.ts",
  2732. "./src/matchprecache.ts",
  2733. "./src/precache.ts",
  2734. "./src/precacheandroute.ts",
  2735. "./src/precachecontroller.ts"
  2736. ],
  2737. "./src/precache.ts": [
  2738. "./src/_types.ts"
  2739. ],
  2740. "./src/precacheandroute.ts": [
  2741. "./src/_types.ts",
  2742. "./src/utils/addfetchlistener.ts"
  2743. ],
  2744. "./src/precachecontroller.ts": [
  2745. "../workbox-core/types.d.ts",
  2746. "./src/_types.ts"
  2747. ],
  2748. "./src/utils/addfetchlistener.ts": [
  2749. "./src/_types.ts"
  2750. ],
  2751. "./src/utils/createcachekey.ts": [
  2752. "./src/_types.ts"
  2753. ],
  2754. "./src/utils/generateurlvariations.ts": [
  2755. "./src/utils/addfetchlistener.ts"
  2756. ],
  2757. "./src/utils/getcachekeyforurl.ts": [
  2758. "./src/utils/addfetchlistener.ts"
  2759. ],
  2760. "./src/utils/getorcreateprecachecontroller.ts": [
  2761. "./src/precachecontroller.ts"
  2762. ],
  2763. "./src/utils/precacheplugins.ts": [
  2764. "../workbox-core/types.d.ts"
  2765. ]
  2766. },
  2767. "semanticDiagnosticsPerFile": [
  2768. "../../infra/type-overrides.d.ts",
  2769. "../../node_modules/@types/color-name/index.d.ts",
  2770. "../../node_modules/@types/eslint-visitor-keys/index.d.ts",
  2771. "../../node_modules/@types/estree/index.d.ts",
  2772. "../../node_modules/@types/glob/index.d.ts",
  2773. "../../node_modules/@types/json-schema/index.d.ts",
  2774. "../../node_modules/@types/minimatch/index.d.ts",
  2775. "../../node_modules/@types/minimist/index.d.ts",
  2776. "../../node_modules/@types/node/assert.d.ts",
  2777. "../../node_modules/@types/node/base.d.ts",
  2778. "../../node_modules/@types/node/index.d.ts",
  2779. "../../node_modules/@types/node/ts3.1/async_hooks.d.ts",
  2780. "../../node_modules/@types/node/ts3.1/base.d.ts",
  2781. "../../node_modules/@types/node/ts3.1/buffer.d.ts",
  2782. "../../node_modules/@types/node/ts3.1/child_process.d.ts",
  2783. "../../node_modules/@types/node/ts3.1/cluster.d.ts",
  2784. "../../node_modules/@types/node/ts3.1/console.d.ts",
  2785. "../../node_modules/@types/node/ts3.1/constants.d.ts",
  2786. "../../node_modules/@types/node/ts3.1/crypto.d.ts",
  2787. "../../node_modules/@types/node/ts3.1/dgram.d.ts",
  2788. "../../node_modules/@types/node/ts3.1/dns.d.ts",
  2789. "../../node_modules/@types/node/ts3.1/domain.d.ts",
  2790. "../../node_modules/@types/node/ts3.1/events.d.ts",
  2791. "../../node_modules/@types/node/ts3.1/fs.d.ts",
  2792. "../../node_modules/@types/node/ts3.1/fs/promises.d.ts",
  2793. "../../node_modules/@types/node/ts3.1/globals.d.ts",
  2794. "../../node_modules/@types/node/ts3.1/http.d.ts",
  2795. "../../node_modules/@types/node/ts3.1/http2.d.ts",
  2796. "../../node_modules/@types/node/ts3.1/https.d.ts",
  2797. "../../node_modules/@types/node/ts3.1/inspector.d.ts",
  2798. "../../node_modules/@types/node/ts3.1/module.d.ts",
  2799. "../../node_modules/@types/node/ts3.1/net.d.ts",
  2800. "../../node_modules/@types/node/ts3.1/os.d.ts",
  2801. "../../node_modules/@types/node/ts3.1/path.d.ts",
  2802. "../../node_modules/@types/node/ts3.1/perf_hooks.d.ts",
  2803. "../../node_modules/@types/node/ts3.1/process.d.ts",
  2804. "../../node_modules/@types/node/ts3.1/punycode.d.ts",
  2805. "../../node_modules/@types/node/ts3.1/querystring.d.ts",
  2806. "../../node_modules/@types/node/ts3.1/readline.d.ts",
  2807. "../../node_modules/@types/node/ts3.1/repl.d.ts",
  2808. "../../node_modules/@types/node/ts3.1/stream.d.ts",
  2809. "../../node_modules/@types/node/ts3.1/string_decoder.d.ts",
  2810. "../../node_modules/@types/node/ts3.1/timers.d.ts",
  2811. "../../node_modules/@types/node/ts3.1/tls.d.ts",
  2812. "../../node_modules/@types/node/ts3.1/trace_events.d.ts",
  2813. "../../node_modules/@types/node/ts3.1/tty.d.ts",
  2814. "../../node_modules/@types/node/ts3.1/url.d.ts",
  2815. "../../node_modules/@types/node/ts3.1/util.d.ts",
  2816. "../../node_modules/@types/node/ts3.1/v8.d.ts",
  2817. "../../node_modules/@types/node/ts3.1/vm.d.ts",
  2818. "../../node_modules/@types/node/ts3.1/worker_threads.d.ts",
  2819. "../../node_modules/@types/node/ts3.1/zlib.d.ts",
  2820. "../../node_modules/@types/node/ts3.4/base.d.ts",
  2821. "../../node_modules/@types/node/ts3.4/fs.d.ts",
  2822. "../../node_modules/@types/node/ts3.4/globals.d.ts",
  2823. "../../node_modules/@types/node/ts3.4/process.d.ts",
  2824. "../../node_modules/@types/node/ts3.4/util.d.ts",
  2825. "../../node_modules/@types/node/ts3.6/base.d.ts",
  2826. "../../node_modules/@types/node/ts3.6/globals.global.d.ts",
  2827. "../../node_modules/@types/node/ts3.6/wasi.d.ts",
  2828. "../../node_modules/@types/normalize-package-data/index.d.ts",
  2829. "../../node_modules/@types/resolve/index.d.ts",
  2830. "../../node_modules/@types/yauzl/index.d.ts",
  2831. "../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
  2832. "../../node_modules/typescript/lib/lib.es2015.core.d.ts",
  2833. "../../node_modules/typescript/lib/lib.es2015.d.ts",
  2834. "../../node_modules/typescript/lib/lib.es2015.generator.d.ts",
  2835. "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts",
  2836. "../../node_modules/typescript/lib/lib.es2015.promise.d.ts",
  2837. "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts",
  2838. "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts",
  2839. "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts",
  2840. "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
  2841. "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts",
  2842. "../../node_modules/typescript/lib/lib.es2016.d.ts",
  2843. "../../node_modules/typescript/lib/lib.es2017.d.ts",
  2844. "../../node_modules/typescript/lib/lib.es2017.intl.d.ts",
  2845. "../../node_modules/typescript/lib/lib.es2017.object.d.ts",
  2846. "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts",
  2847. "../../node_modules/typescript/lib/lib.es2017.string.d.ts",
  2848. "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts",
  2849. "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts",
  2850. "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts",
  2851. "../../node_modules/typescript/lib/lib.es2018.d.ts",
  2852. "../../node_modules/typescript/lib/lib.es2018.intl.d.ts",
  2853. "../../node_modules/typescript/lib/lib.es2018.promise.d.ts",
  2854. "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts",
  2855. "../../node_modules/typescript/lib/lib.es2020.bigint.d.ts",
  2856. "../../node_modules/typescript/lib/lib.es5.d.ts",
  2857. "../../node_modules/typescript/lib/lib.esnext.intl.d.ts",
  2858. "../../node_modules/typescript/lib/lib.webworker.d.ts",
  2859. "../workbox-core/_private/assert.d.ts",
  2860. "../workbox-core/_private/cachenames.d.ts",
  2861. "../workbox-core/_private/cachewrapper.d.ts",
  2862. "../workbox-core/_private/fetchwrapper.d.ts",
  2863. "../workbox-core/_private/getfriendlyurl.d.ts",
  2864. "../workbox-core/_private/logger.d.ts",
  2865. "../workbox-core/_private/workboxerror.d.ts",
  2866. "../workbox-core/_version.d.ts",
  2867. "../workbox-core/copyresponse.d.ts",
  2868. "../workbox-core/types.d.ts",
  2869. "./src/_types.ts",
  2870. "./src/_version.ts",
  2871. "./src/addplugins.ts",
  2872. "./src/addroute.ts",
  2873. "./src/cleanupoutdatedcaches.ts",
  2874. "./src/createhandler.ts",
  2875. "./src/createhandlerboundtourl.ts",
  2876. "./src/getcachekeyforurl.ts",
  2877. "./src/index.ts",
  2878. "./src/matchprecache.ts",
  2879. "./src/precache.ts",
  2880. "./src/precacheandroute.ts",
  2881. "./src/precachecontroller.ts",
  2882. "./src/utils/addfetchlistener.ts",
  2883. "./src/utils/createcachekey.ts",
  2884. "./src/utils/deleteoutdatedcaches.ts",
  2885. "./src/utils/generateurlvariations.ts",
  2886. "./src/utils/getcachekeyforurl.ts",
  2887. "./src/utils/getorcreateprecachecontroller.ts",
  2888. "./src/utils/precacheplugins.ts",
  2889. "./src/utils/printcleanupdetails.ts",
  2890. "./src/utils/printinstalldetails.ts",
  2891. "./src/utils/removeignoredsearchparams.ts"
  2892. ]
  2893. },
  2894. "version": "3.9.7"
  2895. }