chrome-devtools-frontend 1.0.1506453 → 1.0.1510180

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1613) hide show
  1. package/config/owner/COMMON_OWNERS +1 -0
  2. package/eslint.config.mjs +39 -5
  3. package/front_end/Images/src/gdp-logo-standalone.svg +9 -0
  4. package/front_end/core/host/AidaClient.ts +26 -0
  5. package/front_end/core/host/GdpClient.ts +151 -0
  6. package/front_end/core/host/InspectorFrontendHost.ts +7 -0
  7. package/front_end/core/host/InspectorFrontendHostAPI.ts +29 -1
  8. package/front_end/core/host/UserMetrics.ts +0 -25
  9. package/front_end/core/host/host.ts +2 -0
  10. package/front_end/core/root/Runtime.ts +15 -1
  11. package/front_end/core/sdk/CSSMatchedStyles.ts +183 -48
  12. package/front_end/core/sdk/CSSPropertyParser.ts +7 -7
  13. package/front_end/core/sdk/CSSPropertyParserMatchers.ts +175 -37
  14. package/front_end/core/sdk/CSSStyleSheetHeader.ts +5 -0
  15. package/front_end/core/sdk/DOMModel.ts +58 -0
  16. package/front_end/core/sdk/FrameAssociated.ts +4 -1
  17. package/front_end/core/sdk/Script.ts +5 -1
  18. package/front_end/core/sdk/SourceMap.ts +10 -2
  19. package/front_end/core/sdk/SourceMapCache.ts +54 -0
  20. package/front_end/core/sdk/SourceMapManager.ts +20 -7
  21. package/front_end/core/sdk/sdk.ts +2 -0
  22. package/front_end/devtools_compatibility.js +0 -1
  23. package/front_end/entrypoints/main/GlobalAiButton.ts +71 -1
  24. package/front_end/entrypoints/main/MainImpl.ts +6 -27
  25. package/front_end/entrypoints/main/globalAiButton.css +1 -1
  26. package/front_end/entrypoints/main/main-meta.ts +15 -0
  27. package/front_end/generated/InspectorBackendCommands.js +3 -2
  28. package/front_end/generated/SupportedCSSProperties.js +23 -7
  29. package/front_end/generated/protocol-mapping.d.ts +8 -1
  30. package/front_end/generated/protocol-proxy-api.d.ts +6 -1
  31. package/front_end/generated/protocol.ts +17 -4
  32. package/front_end/models/ai_assistance/ConversationHandler.ts +34 -54
  33. package/front_end/models/ai_assistance/ExtensionScope.ts +3 -12
  34. package/front_end/models/ai_assistance/README.md +1 -1
  35. package/front_end/models/ai_assistance/agents/AiAgent.ts +1 -3
  36. package/front_end/models/ai_assistance/agents/FileAgent.ts +0 -6
  37. package/front_end/models/ai_assistance/agents/NetworkAgent.ts +16 -15
  38. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +32 -16
  39. package/front_end/models/ai_assistance/agents/StylingAgent.ts +199 -23
  40. package/front_end/models/ai_assistance/ai_assistance.ts +2 -0
  41. package/front_end/models/ai_assistance/data_formatters/FileFormatter.ts +4 -1
  42. package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +8 -5
  43. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +248 -83
  44. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +303 -94
  45. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +442 -93
  46. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +35 -17
  47. package/front_end/models/ai_assistance/data_formatters/Types.ts +9 -0
  48. package/front_end/models/ai_code_completion/AiCodeCompletion.ts +114 -2
  49. package/front_end/models/autofill_manager/AutofillManager.ts +0 -11
  50. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +64 -6
  51. package/front_end/models/bindings/ResourceScriptMapping.ts +6 -0
  52. package/front_end/models/emulation/DeviceModeModel.ts +13 -14
  53. package/front_end/models/extensions/ExtensionPanel.ts +6 -6
  54. package/front_end/models/extensions/ExtensionServer.ts +2 -0
  55. package/front_end/models/extensions/ExtensionView.ts +4 -0
  56. package/front_end/{ui/legacy/Geometry.ts → models/geometry/GeometryImpl.ts} +4 -4
  57. package/front_end/models/geometry/geometry.ts +5 -0
  58. package/front_end/models/javascript_metadata/NativeFunctions.js +4 -4
  59. package/front_end/models/network_time_calculator/Calculator.ts +14 -0
  60. package/front_end/{panels/network → models/network_time_calculator}/NetworkTimeCalculator.ts +4 -4
  61. package/front_end/models/network_time_calculator/network_time_calculator.ts +6 -0
  62. package/front_end/models/persistence/EditFileSystemView.ts +4 -0
  63. package/front_end/models/persistence/NetworkPersistenceManager.ts +2 -0
  64. package/front_end/models/persistence/PersistenceActions.ts +2 -0
  65. package/front_end/models/persistence/PersistenceUtils.ts +2 -0
  66. package/front_end/models/persistence/WorkspaceSettingsTab.ts +6 -0
  67. package/front_end/models/persistence/persistence-meta.ts +2 -0
  68. package/front_end/models/stack_trace/StackTrace.ts +18 -0
  69. package/front_end/models/stack_trace/StackTraceImpl.ts +4 -1
  70. package/front_end/models/stack_trace/StackTraceModel.ts +4 -3
  71. package/front_end/models/trace/ModelImpl.ts +2 -1
  72. package/front_end/models/trace/Processor.ts +3 -30
  73. package/front_end/models/trace/handlers/AnimationFramesHandler.ts +10 -11
  74. package/front_end/models/trace/handlers/AnimationHandler.ts +4 -4
  75. package/front_end/models/trace/handlers/AsyncJSCallsHandler.ts +8 -9
  76. package/front_end/models/trace/handlers/AuctionWorkletsHandler.ts +10 -10
  77. package/front_end/models/trace/handlers/DOMStatsHandler.ts +2 -2
  78. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +59 -51
  79. package/front_end/models/trace/handlers/FlowsHandler.ts +10 -10
  80. package/front_end/models/trace/handlers/FramesHandler.ts +2 -2
  81. package/front_end/models/trace/handlers/GPUHandler.ts +2 -2
  82. package/front_end/models/trace/handlers/ImagePaintingHandler.ts +12 -12
  83. package/front_end/models/trace/handlers/InitiatorsHandler.ts +18 -20
  84. package/front_end/models/trace/handlers/InvalidationsHandler.ts +6 -6
  85. package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +4 -3
  86. package/front_end/models/trace/handlers/LargestTextPaintHandler.ts +2 -2
  87. package/front_end/models/trace/handlers/LayerTreeHandler.ts +10 -10
  88. package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +28 -28
  89. package/front_end/models/trace/handlers/MemoryHandler.ts +2 -2
  90. package/front_end/models/trace/handlers/MetaHandler.ts +18 -18
  91. package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +25 -23
  92. package/front_end/models/trace/handlers/PageFramesHandler.ts +2 -2
  93. package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +5 -5
  94. package/front_end/models/trace/handlers/RendererHandler.ts +18 -18
  95. package/front_end/models/trace/handlers/SamplesHandler.ts +6 -9
  96. package/front_end/models/trace/handlers/ScreenshotsHandler.ts +8 -8
  97. package/front_end/models/trace/handlers/ScriptsHandler.ts +2 -2
  98. package/front_end/models/trace/handlers/SelectorStatsHandler.ts +4 -4
  99. package/front_end/models/trace/handlers/UserInteractionsHandler.ts +14 -14
  100. package/front_end/models/trace/handlers/UserTimingsHandler.ts +10 -10
  101. package/front_end/models/trace/handlers/WarningsHandler.ts +12 -12
  102. package/front_end/models/trace/handlers/WorkersHandler.ts +6 -6
  103. package/front_end/models/trace/helpers/Extensions.ts +10 -10
  104. package/front_end/models/trace/helpers/Trace.ts +3 -3
  105. package/front_end/models/trace/insights/ForcedReflow.ts +4 -0
  106. package/front_end/models/trace/insights/NetworkDependencyTree.ts +4 -0
  107. package/front_end/models/trace/insights/ThirdParties.ts +4 -0
  108. package/front_end/models/trace/types/Extensions.ts +27 -17
  109. package/front_end/models/trace/types/Overlays.ts +1 -3
  110. package/front_end/models/trace/types/TraceEvents.ts +2 -5
  111. package/front_end/models/workspace/FileManager.ts +1 -0
  112. package/front_end/panels/accessibility/ARIAAttributesView.ts +2 -60
  113. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +22 -4
  114. package/front_end/panels/ai_assistance/PatchWidget.ts +1 -1
  115. package/front_end/panels/ai_assistance/SelectWorkspaceDialog.ts +2 -1
  116. package/front_end/panels/ai_assistance/ai_assistance-meta.ts +9 -9
  117. package/front_end/panels/ai_assistance/components/ChatView.ts +44 -2
  118. package/front_end/panels/animation/AnimationUI.ts +2 -1
  119. package/front_end/panels/application/KeyValueStorageItemsView.ts +2 -1
  120. package/front_end/panels/application/components/BackForwardCacheStrings.ts +9 -9
  121. package/front_end/panels/autofill/AutofillView.ts +15 -10
  122. package/front_end/panels/browser_debugger/CSPViolationBreakpointsSidebarPane.ts +5 -6
  123. package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +174 -272
  124. package/front_end/panels/browser_debugger/EventListenerBreakpointsSidebarPane.ts +9 -6
  125. package/front_end/panels/browser_debugger/categorizedBreakpointsSidebarPane.css +1 -1
  126. package/front_end/panels/common/BadgeNotification.ts +121 -0
  127. package/front_end/panels/common/FreDialog.ts +4 -3
  128. package/front_end/panels/common/badgeNotification.css +74 -0
  129. package/front_end/panels/common/common.ts +3 -1
  130. package/front_end/panels/console/ConsolePrompt.ts +2 -3
  131. package/front_end/panels/console/ConsoleView.ts +8 -8
  132. package/front_end/panels/console/ConsoleViewMessage.ts +14 -13
  133. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +2 -1
  134. package/front_end/panels/elements/CSSRuleValidator.ts +0 -57
  135. package/front_end/panels/elements/ElementsTreeElement.ts +12 -4
  136. package/front_end/panels/elements/ElementsTreeOutlineRenderer.ts +8 -5
  137. package/front_end/panels/elements/PropertyRenderer.ts +1 -1
  138. package/front_end/panels/elements/StylePropertyTreeElement.ts +110 -9
  139. package/front_end/panels/emulation/DeviceModeView.ts +6 -5
  140. package/front_end/panels/layer_viewer/Layers3DView.ts +9 -9
  141. package/front_end/panels/layers/LayerTreeModel.ts +5 -5
  142. package/front_end/panels/lighthouse/LighthouseStatusView.ts +2 -1
  143. package/front_end/panels/lighthouse/LighthouseTimespanView.ts +2 -1
  144. package/front_end/panels/media/MainView.ts +48 -18
  145. package/front_end/panels/media/MediaModel.ts +4 -4
  146. package/front_end/panels/media/PlayerListView.ts +7 -0
  147. package/front_end/panels/mobile_throttling/ThrottlingManager.ts +2 -2
  148. package/front_end/panels/network/NetworkDataGridNode.ts +4 -5
  149. package/front_end/panels/network/NetworkItemView.ts +2 -2
  150. package/front_end/panels/network/NetworkLogView.ts +10 -15
  151. package/front_end/panels/network/NetworkLogViewColumns.ts +6 -8
  152. package/front_end/panels/network/NetworkOverview.ts +6 -4
  153. package/front_end/panels/network/NetworkPanel.ts +5 -5
  154. package/front_end/panels/network/NetworkWaterfallColumn.ts +5 -5
  155. package/front_end/panels/network/RequestTimingView.ts +7 -6
  156. package/front_end/panels/network/network.ts +1 -3
  157. package/front_end/panels/profiler/HeapTimelineOverview.ts +2 -1
  158. package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +2 -1
  159. package/front_end/panels/sensors/SensorsView.ts +10 -9
  160. package/front_end/panels/settings/AISettingsTab.ts +2 -2
  161. package/front_end/panels/settings/SettingsScreen.ts +19 -9
  162. package/front_end/panels/settings/components/SyncSection.ts +136 -3
  163. package/front_end/panels/settings/components/syncSection.css +54 -0
  164. package/front_end/panels/sources/AiCodeCompletionPlugin.ts +26 -9
  165. package/front_end/panels/sources/CSSPlugin.ts +5 -4
  166. package/front_end/panels/timeline/CountersGraph.ts +1 -1
  167. package/front_end/panels/timeline/ExtensionTrackAppender.ts +2 -2
  168. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +3 -3
  169. package/front_end/panels/timeline/TimelineDetailsView.ts +41 -26
  170. package/front_end/panels/timeline/TimelinePaintProfilerView.ts +2 -1
  171. package/front_end/panels/timeline/TimelinePanel.ts +58 -59
  172. package/front_end/panels/timeline/TimelineUIUtils.ts +89 -20
  173. package/front_end/panels/timeline/TimingsTrackAppender.ts +10 -7
  174. package/front_end/panels/timeline/components/insights/CLSCulprits.ts +1 -11
  175. package/front_end/panels/timeline/components/insights/ForcedReflow.ts +4 -0
  176. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +2 -3
  177. package/front_end/panels/timeline/components/insights/NetworkDependencyTree.ts +4 -0
  178. package/front_end/panels/timeline/components/insights/ThirdParties.ts +4 -0
  179. package/front_end/panels/timeline/extensions/ExtensionUI.ts +1 -1
  180. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +1 -1
  181. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +3 -12
  182. package/front_end/panels/timeline/utils/AIContext.ts +14 -1
  183. package/front_end/panels/whats_new/ReleaseNoteText.ts +11 -11
  184. package/front_end/panels/whats_new/resources/WNDT.md +6 -6
  185. package/front_end/services/tracing/tracing.ts +0 -2
  186. package/front_end/tsconfig.json +1 -0
  187. package/front_end/ui/components/buttons/button.css +4 -0
  188. package/front_end/ui/components/highlighting/HighlightManager.ts +19 -9
  189. package/front_end/ui/legacy/ARIAUtils.ts +1 -1
  190. package/front_end/ui/legacy/DockController.ts +1 -1
  191. package/front_end/ui/legacy/GlassPane.ts +2 -1
  192. package/front_end/ui/legacy/InspectorView.ts +41 -14
  193. package/front_end/ui/legacy/ResizerWidget.ts +45 -50
  194. package/front_end/ui/legacy/SoftDropDown.ts +2 -2
  195. package/front_end/ui/legacy/SplitWidget.ts +341 -357
  196. package/front_end/ui/legacy/SuggestBox.ts +2 -2
  197. package/front_end/ui/legacy/TabbedPane.ts +5 -5
  198. package/front_end/ui/legacy/Treeoutline.ts +227 -32
  199. package/front_end/ui/legacy/UIUtils.ts +72 -17
  200. package/front_end/ui/legacy/Widget.ts +15 -14
  201. package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +6 -14
  202. package/front_end/ui/legacy/components/inline_editor/AnimationTimingModel.ts +3 -3
  203. package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +15 -14
  204. package/front_end/ui/legacy/components/inline_editor/BezierUI.ts +6 -5
  205. package/front_end/ui/legacy/components/inline_editor/CSSAngleUtils.ts +7 -6
  206. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +13 -12
  207. package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +2 -1
  208. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +10 -11
  209. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +3 -2
  210. package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +7 -5
  211. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +3 -13
  212. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +2 -3
  213. package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +2 -1
  214. package/front_end/ui/legacy/components/source_frame/XMLView.ts +268 -295
  215. package/front_end/ui/legacy/components/source_frame/xmlTree.css +10 -8
  216. package/front_end/ui/legacy/components/source_frame/xmlView.css +3 -1
  217. package/front_end/ui/legacy/inspectorCommon.css +3 -2
  218. package/front_end/ui/legacy/legacy.ts +0 -2
  219. package/front_end/ui/visual_logging/KnownContextValues.ts +8 -4
  220. package/package.json +2 -2
  221. package/.gemini/commands/migrate-e2e-non-hosted.toml +0 -43
  222. package/.gemini/commands/review.toml +0 -85
  223. package/.github/workflows/auto-close-prs.yml +0 -30
  224. package/.vscode/devtools-workspace-launch.json +0 -43
  225. package/.vscode/devtools-workspace-settings.json +0 -12
  226. package/.vscode/devtools-workspace-tasks.json +0 -66
  227. package/.vscode/extensions.json +0 -3
  228. package/codereview.settings +0 -4
  229. package/config/gni/devtools_grd_files.gni +0 -2646
  230. package/config/gni/devtools_image_files.gni +0 -309
  231. package/config/gni/i18n.gni +0 -115
  232. package/extensions/cxx_debugging/CMakeLists.txt +0 -162
  233. package/extensions/cxx_debugging/README.md +0 -81
  234. package/extensions/cxx_debugging/e2e/MochaRootHooks.ts +0 -110
  235. package/extensions/cxx_debugging/e2e/OptionsPageTests.ts +0 -36
  236. package/extensions/cxx_debugging/e2e/StandaloneTestDriver.ts +0 -20
  237. package/extensions/cxx_debugging/e2e/TestDriver.ts +0 -311
  238. package/extensions/cxx_debugging/e2e/cxx-debugging-extension-helpers.ts +0 -62
  239. package/extensions/cxx_debugging/e2e/resources/huge-source-file.cc +0 -29
  240. package/extensions/cxx_debugging/e2e/resources/pointers.cc +0 -40
  241. package/extensions/cxx_debugging/e2e/resources/scope-view-non-primitives.c +0 -30
  242. package/extensions/cxx_debugging/e2e/resources/scope-view-non-primitives.cpp +0 -49
  243. package/extensions/cxx_debugging/e2e/resources/scope-view-primitives.c +0 -19
  244. package/extensions/cxx_debugging/e2e/resources/stepping-with-state.c +0 -31
  245. package/extensions/cxx_debugging/e2e/resources/test_wasm_simd.c +0 -13
  246. package/extensions/cxx_debugging/e2e/resources/vector.cc +0 -14
  247. package/extensions/cxx_debugging/e2e/resources/wchar.cc +0 -22
  248. package/extensions/cxx_debugging/e2e/runner.py +0 -542
  249. package/extensions/cxx_debugging/e2e/runner.py.vpython +0 -5
  250. package/extensions/cxx_debugging/e2e/runner.py.vpython3 +0 -5
  251. package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +0 -59
  252. package/extensions/cxx_debugging/e2e/tests/cpp_eval.yaml +0 -37
  253. package/extensions/cxx_debugging/e2e/tests/pointer.yaml +0 -42
  254. package/extensions/cxx_debugging/e2e/tests/scope_view_non_primitives.yaml +0 -35
  255. package/extensions/cxx_debugging/e2e/tests/scope_view_non_primitives_cpp.yaml +0 -44
  256. package/extensions/cxx_debugging/e2e/tests/scope_view_primitives.yaml +0 -31
  257. package/extensions/cxx_debugging/e2e/tests/stepping_with_state.yaml +0 -64
  258. package/extensions/cxx_debugging/e2e/tests/string_view.yaml +0 -32
  259. package/extensions/cxx_debugging/e2e/tests/test_big_dwo.yaml +0 -21
  260. package/extensions/cxx_debugging/e2e/tests/test_linear_memory_inspector.yaml +0 -11
  261. package/extensions/cxx_debugging/e2e/tests/test_loop.yaml +0 -34
  262. package/extensions/cxx_debugging/e2e/tests/test_wasm_simd.yaml +0 -42
  263. package/extensions/cxx_debugging/e2e/tests/vector.yaml +0 -26
  264. package/extensions/cxx_debugging/e2e/tests/wchar.yaml +0 -52
  265. package/extensions/cxx_debugging/e2e/tsconfig.json +0 -24
  266. package/extensions/cxx_debugging/lib/ApiContext.cc +0 -627
  267. package/extensions/cxx_debugging/lib/ApiContext.h +0 -119
  268. package/extensions/cxx_debugging/lib/CMakeLists.txt +0 -53
  269. package/extensions/cxx_debugging/lib/Expressions.cc +0 -303
  270. package/extensions/cxx_debugging/lib/Expressions.h +0 -53
  271. package/extensions/cxx_debugging/lib/Variables.cc +0 -101
  272. package/extensions/cxx_debugging/lib/Variables.h +0 -65
  273. package/extensions/cxx_debugging/lib/WasmModule.cc +0 -573
  274. package/extensions/cxx_debugging/lib/WasmModule.h +0 -126
  275. package/extensions/cxx_debugging/lib/WasmVendorPlugins.cc +0 -172
  276. package/extensions/cxx_debugging/lib/WasmVendorPlugins.h +0 -329
  277. package/extensions/cxx_debugging/lib/api.h +0 -593
  278. package/extensions/cxx_debugging/lib/api.h.in +0 -86
  279. package/extensions/cxx_debugging/src/CMakeLists.txt +0 -158
  280. package/extensions/cxx_debugging/src/CreditsItem.ts +0 -126
  281. package/extensions/cxx_debugging/src/CustomFormatters.ts +0 -689
  282. package/extensions/cxx_debugging/src/DWARFSymbols.ts +0 -613
  283. package/extensions/cxx_debugging/src/DevToolsPlugin.html +0 -7
  284. package/extensions/cxx_debugging/src/DevToolsPluginForTests.html +0 -6
  285. package/extensions/cxx_debugging/src/DevToolsPluginHost.ts +0 -145
  286. package/extensions/cxx_debugging/src/DevToolsPluginWorker.ts +0 -120
  287. package/extensions/cxx_debugging/src/DevToolsPluginWorkerMain.ts +0 -9
  288. package/extensions/cxx_debugging/src/ExtensionOptions.html +0 -24
  289. package/extensions/cxx_debugging/src/ExtensionOptions.ts +0 -705
  290. package/extensions/cxx_debugging/src/Formatters.ts +0 -282
  291. package/extensions/cxx_debugging/src/GlobMatch.ts +0 -51
  292. package/extensions/cxx_debugging/src/MEMFSResourceLoader.ts +0 -102
  293. package/extensions/cxx_debugging/src/ModuleConfiguration.ts +0 -117
  294. package/extensions/cxx_debugging/src/ModuleConfigurationList.ts +0 -239
  295. package/extensions/cxx_debugging/src/SymbolsBackend.cc +0 -262
  296. package/extensions/cxx_debugging/src/SymbolsBackend.cc.in +0 -139
  297. package/extensions/cxx_debugging/src/SymbolsBackend.d.ts +0 -179
  298. package/extensions/cxx_debugging/src/SymbolsBackend.d.ts.in +0 -108
  299. package/extensions/cxx_debugging/src/TestDriver.js +0 -21
  300. package/extensions/cxx_debugging/src/WasmTypes.ts +0 -119
  301. package/extensions/cxx_debugging/src/WorkerRPC.ts +0 -158
  302. package/extensions/cxx_debugging/src/index.html +0 -69
  303. package/extensions/cxx_debugging/src/manifest.json.in +0 -22
  304. package/extensions/cxx_debugging/src/rollup.config.in.js +0 -33
  305. package/extensions/cxx_debugging/tests/CMakeLists.txt +0 -146
  306. package/extensions/cxx_debugging/tests/CreditsItem_test.ts +0 -50
  307. package/extensions/cxx_debugging/tests/CustomFormatters_test.ts +0 -307
  308. package/extensions/cxx_debugging/tests/DevToolsPluginTestWorker.ts +0 -43
  309. package/extensions/cxx_debugging/tests/DevToolsPlugin_test.ts +0 -345
  310. package/extensions/cxx_debugging/tests/Externref_test.ts +0 -63
  311. package/extensions/cxx_debugging/tests/Formatters_test.ts +0 -284
  312. package/extensions/cxx_debugging/tests/GlobMatch_test.ts +0 -58
  313. package/extensions/cxx_debugging/tests/Interpreter_test.ts +0 -219
  314. package/extensions/cxx_debugging/tests/LLDBEvalExtensions.h +0 -154
  315. package/extensions/cxx_debugging/tests/LLDBEvalTests.d.ts +0 -24
  316. package/extensions/cxx_debugging/tests/ModuleConfiguration_test.ts +0 -136
  317. package/extensions/cxx_debugging/tests/RealBackend.ts +0 -482
  318. package/extensions/cxx_debugging/tests/SymbolsBackendTests.d.ts +0 -12
  319. package/extensions/cxx_debugging/tests/SymbolsBackend_test.ts +0 -39
  320. package/extensions/cxx_debugging/tests/TestUtils.ts +0 -250
  321. package/extensions/cxx_debugging/tests/WasmModule_test.cc +0 -332
  322. package/extensions/cxx_debugging/tests/build-artifacts.js.in +0 -10
  323. package/extensions/cxx_debugging/tests/inputs/CMakeLists.txt +0 -141
  324. package/extensions/cxx_debugging/tests/inputs/addr_index.s +0 -97
  325. package/extensions/cxx_debugging/tests/inputs/addresses.cc +0 -25
  326. package/extensions/cxx_debugging/tests/inputs/classstatic.s +0 -119
  327. package/extensions/cxx_debugging/tests/inputs/dw_opcodes.def +0 -66
  328. package/extensions/cxx_debugging/tests/inputs/embedded.s +0 -124
  329. package/extensions/cxx_debugging/tests/inputs/enums.s +0 -376
  330. package/extensions/cxx_debugging/tests/inputs/externref.js +0 -22
  331. package/extensions/cxx_debugging/tests/inputs/externref.s +0 -207
  332. package/extensions/cxx_debugging/tests/inputs/globals.s +0 -443
  333. package/extensions/cxx_debugging/tests/inputs/hello-split-missing-dwo.s +0 -92
  334. package/extensions/cxx_debugging/tests/inputs/hello-split.s +0 -134
  335. package/extensions/cxx_debugging/tests/inputs/hello.s +0 -70
  336. package/extensions/cxx_debugging/tests/inputs/helper.s +0 -130
  337. package/extensions/cxx_debugging/tests/inputs/inline.s +0 -196
  338. package/extensions/cxx_debugging/tests/inputs/namespaces.s +0 -207
  339. package/extensions/cxx_debugging/tests/inputs/page.html +0 -6
  340. package/extensions/cxx_debugging/tests/inputs/page.js +0 -35
  341. package/extensions/cxx_debugging/tests/inputs/shadowing.s +0 -121
  342. package/extensions/cxx_debugging/tests/inputs/split-dwarf.s +0 -126
  343. package/extensions/cxx_debugging/tests/inputs/string_view.cc +0 -40
  344. package/extensions/cxx_debugging/tests/inputs/windows_paths.s +0 -70
  345. package/extensions/cxx_debugging/tests/karma.conf.in.js +0 -133
  346. package/extensions/cxx_debugging/tests/karma_preload.html +0 -12
  347. package/extensions/cxx_debugging/third_party/.clang-format +0 -1
  348. package/extensions/cxx_debugging/third_party/lit-html/CHANGELOG.md +0 -247
  349. package/extensions/cxx_debugging/third_party/lit-html/LICENSE +0 -28
  350. package/extensions/cxx_debugging/third_party/lit-html/README.chromium +0 -13
  351. package/extensions/cxx_debugging/third_party/lit-html/README.md +0 -47
  352. package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.d.ts +0 -33
  353. package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.d.ts.map +0 -1
  354. package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.js +0 -108
  355. package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.js.map +0 -1
  356. package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.d.ts +0 -34
  357. package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.d.ts.map +0 -1
  358. package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.js +0 -91
  359. package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.js.map +0 -1
  360. package/extensions/cxx_debugging/third_party/lit-html/directives/cache.d.ts +0 -30
  361. package/extensions/cxx_debugging/third_party/lit-html/directives/cache.d.ts.map +0 -1
  362. package/extensions/cxx_debugging/third_party/lit-html/directives/cache.js +0 -77
  363. package/extensions/cxx_debugging/third_party/lit-html/directives/cache.js.map +0 -1
  364. package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.d.ts +0 -28
  365. package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.d.ts.map +0 -1
  366. package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.js +0 -101
  367. package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.js.map +0 -1
  368. package/extensions/cxx_debugging/third_party/lit-html/directives/guard.d.ts +0 -49
  369. package/extensions/cxx_debugging/third_party/lit-html/directives/guard.d.ts.map +0 -1
  370. package/extensions/cxx_debugging/third_party/lit-html/directives/guard.js +0 -69
  371. package/extensions/cxx_debugging/third_party/lit-html/directives/guard.js.map +0 -1
  372. package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.d.ts +0 -22
  373. package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.d.ts.map +0 -1
  374. package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.js +0 -37
  375. package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.js.map +0 -1
  376. package/extensions/cxx_debugging/third_party/lit-html/directives/live.d.ts +0 -38
  377. package/extensions/cxx_debugging/third_party/lit-html/directives/live.d.ts.map +0 -1
  378. package/extensions/cxx_debugging/third_party/lit-html/directives/live.js +0 -73
  379. package/extensions/cxx_debugging/third_party/lit-html/directives/live.js.map +0 -1
  380. package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.d.ts +0 -37
  381. package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.d.ts.map +0 -1
  382. package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.js +0 -415
  383. package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.js.map +0 -1
  384. package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.d.ts +0 -36
  385. package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.d.ts.map +0 -1
  386. package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.js +0 -78
  387. package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.js.map +0 -1
  388. package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.d.ts +0 -23
  389. package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.d.ts.map +0 -1
  390. package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.js +0 -41
  391. package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.js.map +0 -1
  392. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.d.ts +0 -23
  393. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.d.ts.map +0 -1
  394. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.js +0 -44
  395. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.js.map +0 -1
  396. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.d.ts +0 -23
  397. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.d.ts.map +0 -1
  398. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.js +0 -61
  399. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.js.map +0 -1
  400. package/extensions/cxx_debugging/third_party/lit-html/directives/until.d.ts +0 -35
  401. package/extensions/cxx_debugging/third_party/lit-html/directives/until.d.ts.map +0 -1
  402. package/extensions/cxx_debugging/third_party/lit-html/directives/until.js +0 -86
  403. package/extensions/cxx_debugging/third_party/lit-html/directives/until.js.map +0 -1
  404. package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.d.ts +0 -39
  405. package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.d.ts.map +0 -1
  406. package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.js +0 -52
  407. package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.js.map +0 -1
  408. package/extensions/cxx_debugging/third_party/lit-html/lib/directive.d.ts +0 -59
  409. package/extensions/cxx_debugging/third_party/lit-html/lib/directive.d.ts.map +0 -1
  410. package/extensions/cxx_debugging/third_party/lit-html/lib/directive.js +0 -63
  411. package/extensions/cxx_debugging/third_party/lit-html/lib/directive.js.map +0 -1
  412. package/extensions/cxx_debugging/third_party/lit-html/lib/dom.d.ts +0 -29
  413. package/extensions/cxx_debugging/third_party/lit-html/lib/dom.d.ts.map +0 -1
  414. package/extensions/cxx_debugging/third_party/lit-html/lib/dom.js +0 -44
  415. package/extensions/cxx_debugging/third_party/lit-html/lib/dom.js.map +0 -1
  416. package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.d.ts +0 -38
  417. package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.d.ts.map +0 -1
  418. package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.js +0 -125
  419. package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.js.map +0 -1
  420. package/extensions/cxx_debugging/third_party/lit-html/lib/part.d.ts +0 -46
  421. package/extensions/cxx_debugging/third_party/lit-html/lib/part.d.ts.map +0 -1
  422. package/extensions/cxx_debugging/third_party/lit-html/lib/part.js +0 -23
  423. package/extensions/cxx_debugging/third_party/lit-html/lib/part.js.map +0 -1
  424. package/extensions/cxx_debugging/third_party/lit-html/lib/parts.d.ts +0 -148
  425. package/extensions/cxx_debugging/third_party/lit-html/lib/parts.d.ts.map +0 -1
  426. package/extensions/cxx_debugging/third_party/lit-html/lib/parts.js +0 -476
  427. package/extensions/cxx_debugging/third_party/lit-html/lib/parts.js.map +0 -1
  428. package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.d.ts +0 -19
  429. package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.d.ts.map +0 -1
  430. package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.js +0 -14
  431. package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.js.map +0 -1
  432. package/extensions/cxx_debugging/third_party/lit-html/lib/render.d.ts +0 -33
  433. package/extensions/cxx_debugging/third_party/lit-html/lib/render.d.ts.map +0 -1
  434. package/extensions/cxx_debugging/third_party/lit-html/lib/render.js +0 -43
  435. package/extensions/cxx_debugging/third_party/lit-html/lib/render.js.map +0 -1
  436. package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.d.ts +0 -83
  437. package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.d.ts.map +0 -1
  438. package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.js +0 -286
  439. package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.js.map +0 -1
  440. package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.d.ts +0 -57
  441. package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.d.ts.map +0 -1
  442. package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.js +0 -48
  443. package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.js.map +0 -1
  444. package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.d.ts +0 -30
  445. package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.d.ts.map +0 -1
  446. package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.js +0 -134
  447. package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.js.map +0 -1
  448. package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.d.ts +0 -46
  449. package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.d.ts.map +0 -1
  450. package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.js +0 -14
  451. package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.js.map +0 -1
  452. package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.d.ts +0 -42
  453. package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.d.ts.map +0 -1
  454. package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.js +0 -131
  455. package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.js.map +0 -1
  456. package/extensions/cxx_debugging/third_party/lit-html/lib/template.d.ts +0 -92
  457. package/extensions/cxx_debugging/third_party/lit-html/lib/template.d.ts.map +0 -1
  458. package/extensions/cxx_debugging/third_party/lit-html/lib/template.js +0 -215
  459. package/extensions/cxx_debugging/third_party/lit-html/lib/template.js.map +0 -1
  460. package/extensions/cxx_debugging/third_party/lit-html/lit-html.d.ts +0 -42
  461. package/extensions/cxx_debugging/third_party/lit-html/lit-html.d.ts.map +0 -1
  462. package/extensions/cxx_debugging/third_party/lit-html/lit-html.js +0 -59
  463. package/extensions/cxx_debugging/third_party/lit-html/lit-html.js.map +0 -1
  464. package/extensions/cxx_debugging/third_party/lit-html/package.json +0 -84
  465. package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.d.ts +0 -24
  466. package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.d.ts.map +0 -1
  467. package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.js +0 -60
  468. package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.js.map +0 -1
  469. package/extensions/cxx_debugging/third_party/lit-html/src/directives/async-append.ts +0 -100
  470. package/extensions/cxx_debugging/third_party/lit-html/src/directives/async-replace.ts +0 -82
  471. package/extensions/cxx_debugging/third_party/lit-html/src/directives/cache.ts +0 -90
  472. package/extensions/cxx_debugging/third_party/lit-html/src/directives/class-map.ts +0 -118
  473. package/extensions/cxx_debugging/third_party/lit-html/src/directives/guard.ts +0 -74
  474. package/extensions/cxx_debugging/third_party/lit-html/src/directives/if-defined.ts +0 -40
  475. package/extensions/cxx_debugging/third_party/lit-html/src/directives/live.ts +0 -76
  476. package/extensions/cxx_debugging/third_party/lit-html/src/directives/repeat.ts +0 -442
  477. package/extensions/cxx_debugging/third_party/lit-html/src/directives/style-map.ts +0 -88
  478. package/extensions/cxx_debugging/third_party/lit-html/src/directives/template-content.ts +0 -52
  479. package/extensions/cxx_debugging/third_party/lit-html/src/directives/unsafe-html.ts +0 -54
  480. package/extensions/cxx_debugging/third_party/lit-html/src/directives/unsafe-svg.ts +0 -71
  481. package/extensions/cxx_debugging/third_party/lit-html/src/directives/until.ts +0 -104
  482. package/extensions/cxx_debugging/third_party/lit-html/src/env.d.ts +0 -20
  483. package/extensions/cxx_debugging/third_party/lit-html/src/lib/default-template-processor.ts +0 -59
  484. package/extensions/cxx_debugging/third_party/lit-html/src/lib/directive.ts +0 -73
  485. package/extensions/cxx_debugging/third_party/lit-html/src/lib/dom.ts +0 -55
  486. package/extensions/cxx_debugging/third_party/lit-html/src/lib/modify-template.ts +0 -135
  487. package/extensions/cxx_debugging/third_party/lit-html/src/lib/part.ts +0 -50
  488. package/extensions/cxx_debugging/third_party/lit-html/src/lib/parts.ts +0 -545
  489. package/extensions/cxx_debugging/third_party/lit-html/src/lib/render-options.ts +0 -20
  490. package/extensions/cxx_debugging/third_party/lit-html/src/lib/render.ts +0 -52
  491. package/extensions/cxx_debugging/third_party/lit-html/src/lib/shady-render.ts +0 -316
  492. package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-factory.ts +0 -92
  493. package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-instance.ts +0 -155
  494. package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-processor.ts +0 -51
  495. package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-result.ts +0 -148
  496. package/extensions/cxx_debugging/third_party/lit-html/src/lib/template.ts +0 -255
  497. package/extensions/cxx_debugging/third_party/lit-html/src/lit-html.ts +0 -74
  498. package/extensions/cxx_debugging/third_party/lit-html/src/polyfills/template_polyfill.ts +0 -70
  499. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/async-append.d.ts +0 -33
  500. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/async-replace.d.ts +0 -34
  501. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/cache.d.ts +0 -30
  502. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/class-map.d.ts +0 -28
  503. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/guard.d.ts +0 -49
  504. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/if-defined.d.ts +0 -22
  505. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/live.d.ts +0 -38
  506. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/repeat.d.ts +0 -37
  507. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/style-map.d.ts +0 -36
  508. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/template-content.d.ts +0 -23
  509. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/unsafe-html.d.ts +0 -23
  510. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/unsafe-svg.d.ts +0 -23
  511. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/until.d.ts +0 -35
  512. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/default-template-processor.d.ts +0 -39
  513. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/directive.d.ts +0 -59
  514. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/dom.d.ts +0 -29
  515. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/modify-template.d.ts +0 -38
  516. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/part.d.ts +0 -46
  517. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/parts.d.ts +0 -148
  518. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/render-options.d.ts +0 -19
  519. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/render.d.ts +0 -33
  520. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/shady-render.d.ts +0 -83
  521. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-factory.d.ts +0 -57
  522. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-instance.d.ts +0 -30
  523. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-processor.d.ts +0 -46
  524. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-result.d.ts +0 -42
  525. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template.d.ts +0 -92
  526. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lit-html.d.ts +0 -42
  527. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/polyfills/template_polyfill.d.ts +0 -24
  528. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/src/env.d.ts +0 -19
  529. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/tsconfig.json +0 -24
  530. package/extensions/cxx_debugging/third_party/lldb-eval/README.chromium +0 -15
  531. package/extensions/cxx_debugging/third_party/llvm/README.chromium +0 -17
  532. package/extensions/cxx_debugging/tools/api.pdl +0 -224
  533. package/extensions/cxx_debugging/tools/bootstrap.py +0 -352
  534. package/extensions/cxx_debugging/tools/generate-api.py +0 -74
  535. package/extensions/cxx_debugging/tools/pdl_cxx.py +0 -171
  536. package/extensions/cxx_debugging/tools/whitespaces.txt +0 -1
  537. package/extensions/cxx_debugging/tsconfig.json +0 -16
  538. package/front_end/core/common/Base64.test.ts +0 -41
  539. package/front_end/core/common/CharacterIdMap.test.ts +0 -46
  540. package/front_end/core/common/Color.test.ts +0 -904
  541. package/front_end/core/common/ColorConverter.test.ts +0 -525
  542. package/front_end/core/common/ColorUtils.test.ts +0 -112
  543. package/front_end/core/common/Console.test.ts +0 -86
  544. package/front_end/core/common/Debouncer.test.ts +0 -26
  545. package/front_end/core/common/EventTarget.test.ts +0 -166
  546. package/front_end/core/common/Gzip.test.ts +0 -63
  547. package/front_end/core/common/Lazy.test.ts +0 -28
  548. package/front_end/core/common/MapWithDefault.test.ts +0 -61
  549. package/front_end/core/common/Mutex.test.ts +0 -98
  550. package/front_end/core/common/Object.test.ts +0 -87
  551. package/front_end/core/common/ParsedURL.test.ts +0 -751
  552. package/front_end/core/common/Progress.test.ts +0 -269
  553. package/front_end/core/common/ResolverBase.test.ts +0 -115
  554. package/front_end/core/common/ResourceType.test.ts +0 -557
  555. package/front_end/core/common/Revealer.test.ts +0 -122
  556. package/front_end/core/common/SegmentedRange.test.ts +0 -210
  557. package/front_end/core/common/SettingRegistration.test.ts +0 -138
  558. package/front_end/core/common/Settings.test.ts +0 -858
  559. package/front_end/core/common/SimpleHistoryManager.test.ts +0 -66
  560. package/front_end/core/common/StringOutputStream.test.ts +0 -29
  561. package/front_end/core/common/TextDictionary.test.ts +0 -85
  562. package/front_end/core/common/Throttler.test.ts +0 -227
  563. package/front_end/core/common/Trie.test.ts +0 -110
  564. package/front_end/core/dom_extension/DOMExtension.test.ts +0 -343
  565. package/front_end/core/host/AidaClient.test.ts +0 -731
  566. package/front_end/core/i18n/ByteUtilities.test.ts +0 -59
  567. package/front_end/core/i18n/DevToolsLocale.test.ts +0 -104
  568. package/front_end/core/i18n/NumberFormatter.test.ts +0 -92
  569. package/front_end/core/i18n/i18n.test.ts +0 -207
  570. package/front_end/core/i18n/time-utilities.test.ts +0 -164
  571. package/front_end/core/platform/ArrayUtilities.test.ts +0 -499
  572. package/front_end/core/platform/DOMUtilities.test.ts +0 -95
  573. package/front_end/core/platform/DateUtilities.test.ts +0 -31
  574. package/front_end/core/platform/DevToolsPath.test.ts +0 -84
  575. package/front_end/core/platform/KeyboardUtilities.test.ts +0 -57
  576. package/front_end/core/platform/MapUtilities.test.ts +0 -50
  577. package/front_end/core/platform/MimeType.test.ts +0 -192
  578. package/front_end/core/platform/NumberUtilities.test.ts +0 -127
  579. package/front_end/core/platform/StringUtilities.test.ts +0 -729
  580. package/front_end/core/platform/TypedArrayUtilities.test.ts +0 -61
  581. package/front_end/core/protocol_client/NodeURL.test.ts +0 -74
  582. package/front_end/core/root/Runtime.test.ts +0 -68
  583. package/front_end/core/sdk/AccessibilityModel.test.ts +0 -17
  584. package/front_end/core/sdk/AnimationModel.test.ts +0 -257
  585. package/front_end/core/sdk/AutofillModel.test.ts +0 -82
  586. package/front_end/core/sdk/CPUThrottlingManager.test.ts +0 -49
  587. package/front_end/core/sdk/CSSContainerQuery.test.ts +0 -67
  588. package/front_end/core/sdk/CSSMatchedStyles.test.ts +0 -772
  589. package/front_end/core/sdk/CSSModel.test.ts +0 -120
  590. package/front_end/core/sdk/CSSProperty.test.ts +0 -130
  591. package/front_end/core/sdk/CSSPropertyParser.test.ts +0 -525
  592. package/front_end/core/sdk/CSSPropertyParserMatchers.test.ts +0 -766
  593. package/front_end/core/sdk/CSSStyleDeclaration.test.ts +0 -261
  594. package/front_end/core/sdk/CSSStyleSheetHeader.test.ts +0 -137
  595. package/front_end/core/sdk/ChildTargetManager.test.ts +0 -259
  596. package/front_end/core/sdk/ConsoleModel.test.ts +0 -202
  597. package/front_end/core/sdk/Cookie.test.ts +0 -294
  598. package/front_end/core/sdk/CookieModel.test.ts +0 -258
  599. package/front_end/core/sdk/CookieParser.test.ts +0 -211
  600. package/front_end/core/sdk/DOMModel.test.ts +0 -171
  601. package/front_end/core/sdk/DebuggerModel.test.ts +0 -461
  602. package/front_end/core/sdk/EmulationModel.test.ts +0 -45
  603. package/front_end/core/sdk/EnhancedTracesParser.test.ts +0 -318
  604. package/front_end/core/sdk/FrameManager.test.ts +0 -305
  605. package/front_end/core/sdk/NetworkManager.test.ts +0 -2196
  606. package/front_end/core/sdk/NetworkRequest.test.ts +0 -550
  607. package/front_end/core/sdk/OverlayColorGenerator.test.ts +0 -21
  608. package/front_end/core/sdk/OverlayModel.test.ts +0 -179
  609. package/front_end/core/sdk/OverlayPersistentHighlighter.test.ts +0 -232
  610. package/front_end/core/sdk/PageResourceLoader.test.ts +0 -369
  611. package/front_end/core/sdk/PreloadingModel.test.ts +0 -877
  612. package/front_end/core/sdk/RehydratingConnection.test.ts +0 -190
  613. package/front_end/core/sdk/RemoteObject.test.ts +0 -493
  614. package/front_end/core/sdk/ResourceTreeModel.test.ts +0 -222
  615. package/front_end/core/sdk/RuntimeModel.test.ts +0 -84
  616. package/front_end/core/sdk/ScreenCaptureModel.test.ts +0 -216
  617. package/front_end/core/sdk/Script.test.ts +0 -155
  618. package/front_end/core/sdk/ServerSentEventsProtocol.test.ts +0 -220
  619. package/front_end/core/sdk/ServerTiming.test.ts +0 -377
  620. package/front_end/core/sdk/ServiceWorkerCacheModel.test.ts +0 -200
  621. package/front_end/core/sdk/ServiceWorkerManager.test.ts +0 -287
  622. package/front_end/core/sdk/SourceMap.test.ts +0 -1350
  623. package/front_end/core/sdk/SourceMapFunctionRanges.test.ts +0 -171
  624. package/front_end/core/sdk/SourceMapManager.test.ts +0 -334
  625. package/front_end/core/sdk/SourceMapScopeChainEntry.test.ts +0 -129
  626. package/front_end/core/sdk/SourceMapScopesInfo.test.ts +0 -747
  627. package/front_end/core/sdk/StorageBucketsModel.test.ts +0 -383
  628. package/front_end/core/sdk/StorageKeyManager.test.ts +0 -95
  629. package/front_end/core/sdk/Target.test.ts +0 -97
  630. package/front_end/core/sdk/TargetManager.test.ts +0 -279
  631. package/front_end/core/sdk/TraceObject.test.ts +0 -30
  632. package/front_end/entrypoints/formatter_worker/CSSFormatter.test.ts +0 -216
  633. package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.test.ts +0 -177
  634. package/front_end/entrypoints/formatter_worker/FormatterWorker.test.ts +0 -19
  635. package/front_end/entrypoints/formatter_worker/HTMLFormatter.test.ts +0 -344
  636. package/front_end/entrypoints/formatter_worker/JSONFormatter.test.ts +0 -147
  637. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.test.ts +0 -789
  638. package/front_end/entrypoints/formatter_worker/ScopeParser.test.ts +0 -121
  639. package/front_end/entrypoints/formatter_worker/Substitute.test.ts +0 -179
  640. package/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker.test.ts +0 -11
  641. package/front_end/entrypoints/inspector_main/InspectorMain.test.ts +0 -344
  642. package/front_end/entrypoints/inspector_main/OutermostTargetSelector.test.ts +0 -80
  643. package/front_end/entrypoints/main/ExecutionContextSelector.test.ts +0 -64
  644. package/front_end/entrypoints/main/GlobalAiButton.test.ts +0 -132
  645. package/front_end/entrypoints/main/MainImpl.test.ts +0 -87
  646. package/front_end/entrypoints/wasmparser_worker/wasmparser_worker.test.ts +0 -11
  647. package/front_end/integration_test_runner.html +0 -40
  648. package/front_end/legacy_test_runner/accessibility_test_runner/accessibility_test_runner.js +0 -83
  649. package/front_end/legacy_test_runner/application_test_runner/CacheStorageTestRunner.js +0 -297
  650. package/front_end/legacy_test_runner/application_test_runner/IndexedDBTestRunner.js +0 -478
  651. package/front_end/legacy_test_runner/application_test_runner/ResourceTreeTestRunner.js +0 -106
  652. package/front_end/legacy_test_runner/application_test_runner/ResourcesTestRunner.js +0 -173
  653. package/front_end/legacy_test_runner/application_test_runner/ServiceWorkersTestRunner.js +0 -133
  654. package/front_end/legacy_test_runner/application_test_runner/StorageTestRunner.js +0 -13
  655. package/front_end/legacy_test_runner/application_test_runner/application_test_runner.js +0 -19
  656. package/front_end/legacy_test_runner/axe_core_test_runner/axe_core_test_runner.js +0 -176
  657. package/front_end/legacy_test_runner/bindings_test_runner/AutomappingTestRunner.js +0 -137
  658. package/front_end/legacy_test_runner/bindings_test_runner/BindingsTestRunner.js +0 -251
  659. package/front_end/legacy_test_runner/bindings_test_runner/IsolatedFilesystemTestRunner.js +0 -289
  660. package/front_end/legacy_test_runner/bindings_test_runner/OverridesTestRunner.js +0 -30
  661. package/front_end/legacy_test_runner/bindings_test_runner/PersistenceTestRunner.js +0 -111
  662. package/front_end/legacy_test_runner/bindings_test_runner/bindings_test_runner.js +0 -17
  663. package/front_end/legacy_test_runner/console_test_runner/console_test_runner.js +0 -732
  664. package/front_end/legacy_test_runner/coverage_test_runner/coverage_test_runner.js +0 -156
  665. package/front_end/legacy_test_runner/data_grid_test_runner/data_grid_test_runner.js +0 -85
  666. package/front_end/legacy_test_runner/device_mode_test_runner/device_mode_test_runner.js +0 -47
  667. package/front_end/legacy_test_runner/elements_test_runner/EditDOMTestRunner.js +0 -79
  668. package/front_end/legacy_test_runner/elements_test_runner/ElementsPanelShadowSelectionOnRefreshTestRunner.js +0 -39
  669. package/front_end/legacy_test_runner/elements_test_runner/ElementsTestRunner.js +0 -1256
  670. package/front_end/legacy_test_runner/elements_test_runner/SetOuterHTMLTestRunner.js +0 -116
  671. package/front_end/legacy_test_runner/elements_test_runner/StylesUpdateLinksTestRunner.js +0 -136
  672. package/front_end/legacy_test_runner/elements_test_runner/elements_test_runner.js +0 -14
  673. package/front_end/legacy_test_runner/extensions_test_runner/ExtensionsNetworkTestRunner.js +0 -27
  674. package/front_end/legacy_test_runner/extensions_test_runner/ExtensionsTestRunner.js +0 -71
  675. package/front_end/legacy_test_runner/extensions_test_runner/extensions_test_runner.js +0 -11
  676. package/front_end/legacy_test_runner/heap_profiler_test_runner/heap_profiler_test_runner.js +0 -785
  677. package/front_end/legacy_test_runner/layers_test_runner/layers_test_runner.js +0 -161
  678. package/front_end/legacy_test_runner/legacy_test_runner.ts +0 -14
  679. package/front_end/legacy_test_runner/network_test_runner/network_test_runner.js +0 -295
  680. package/front_end/legacy_test_runner/performance_test_runner/TimelineDataTestRunner.js +0 -5263
  681. package/front_end/legacy_test_runner/performance_test_runner/TimelineTestRunner.js +0 -357
  682. package/front_end/legacy_test_runner/performance_test_runner/performance_test_runner.js +0 -11
  683. package/front_end/legacy_test_runner/sdk_test_runner/sdk_test_runner.js +0 -314
  684. package/front_end/legacy_test_runner/security_test_runner/security_test_runner.js +0 -36
  685. package/front_end/legacy_test_runner/sources_test_runner/AutocompleteTestRunner.js +0 -50
  686. package/front_end/legacy_test_runner/sources_test_runner/DebuggerTestRunner.js +0 -655
  687. package/front_end/legacy_test_runner/sources_test_runner/EditorTestRunner.js +0 -240
  688. package/front_end/legacy_test_runner/sources_test_runner/LiveEditTestRunner.js +0 -34
  689. package/front_end/legacy_test_runner/sources_test_runner/SearchTestRunner.js +0 -161
  690. package/front_end/legacy_test_runner/sources_test_runner/SourcesTestRunner.js +0 -111
  691. package/front_end/legacy_test_runner/sources_test_runner/sources_test_runner.js +0 -19
  692. package/front_end/legacy_test_runner/test_runner/TestRunner.js +0 -1480
  693. package/front_end/legacy_test_runner/test_runner/test_runner.js +0 -115
  694. package/front_end/models/ai_assistance/AgentProject.test.ts +0 -370
  695. package/front_end/models/ai_assistance/AiHistoryStorage.test.ts +0 -619
  696. package/front_end/models/ai_assistance/ChangeManager.test.ts +0 -330
  697. package/front_end/models/ai_assistance/ConversationHandler.test.ts +0 -355
  698. package/front_end/models/ai_assistance/EvaluateAction.test.ts +0 -173
  699. package/front_end/models/ai_assistance/ExtensionScope.test.ts +0 -447
  700. package/front_end/models/ai_assistance/agents/AiAgent.test.ts +0 -491
  701. package/front_end/models/ai_assistance/agents/FileAgent.test.ts +0 -217
  702. package/front_end/models/ai_assistance/agents/NetworkAgent.test.ts +0 -237
  703. package/front_end/models/ai_assistance/agents/PatchAgent.test.ts +0 -130
  704. package/front_end/models/ai_assistance/agents/PerformanceAgent.test.ts +0 -759
  705. package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.test.ts +0 -32
  706. package/front_end/models/ai_assistance/agents/StylingAgent.test.ts +0 -1065
  707. package/front_end/models/ai_assistance/data_formatters/FileFormatter.test.ts +0 -116
  708. package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.test.ts +0 -87
  709. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.test.ts +0 -367
  710. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.test.ts +0 -92
  711. package/front_end/models/ai_code_completion/AiCodeCompletion.test.ts +0 -328
  712. package/front_end/models/autofill_manager/AutofillManager.test.ts +0 -266
  713. package/front_end/models/bindings/CompilerScriptMapping.test.ts +0 -550
  714. package/front_end/models/bindings/ContentProviderBasedProject.test.ts +0 -118
  715. package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +0 -144
  716. package/front_end/models/bindings/DebuggerWorkspaceBinding.test.ts +0 -179
  717. package/front_end/models/bindings/DefaultScriptMapping.test.ts +0 -193
  718. package/front_end/models/bindings/FileUtils.test.ts +0 -69
  719. package/front_end/models/bindings/LiveLocation.test.ts +0 -47
  720. package/front_end/models/bindings/PresentationConsoleMessageHelper.test.ts +0 -276
  721. package/front_end/models/bindings/ResourceMapping.test.ts +0 -253
  722. package/front_end/models/bindings/ResourceScriptMapping.test.ts +0 -118
  723. package/front_end/models/bindings/ResourceUtils.test.ts +0 -105
  724. package/front_end/models/breakpoints/BreakpointManager.test.ts +0 -1919
  725. package/front_end/models/cpu_profile/CPUProfileDataModel.test.ts +0 -376
  726. package/front_end/models/crux-manager/CrUXManager.test.ts +0 -613
  727. package/front_end/models/emulation/DeviceModeModel.test.ts +0 -104
  728. package/front_end/models/emulation/EmulatedDevices.test.ts +0 -61
  729. package/front_end/models/extensions/ExtensionServer.test.ts +0 -1170
  730. package/front_end/models/extensions/HostUrlPattern.test.ts +0 -312
  731. package/front_end/models/extensions/LanguageExtensionEndpoint.test.ts +0 -65
  732. package/front_end/models/extensions/RecorderPluginManager.test.ts +0 -34
  733. package/front_end/models/formatter/ScriptFormatter.test.ts +0 -93
  734. package/front_end/models/har/Importer.test.ts +0 -353
  735. package/front_end/models/har/Log.test.ts +0 -208
  736. package/front_end/models/har/Writer.test.ts +0 -49
  737. package/front_end/models/heap_snapshot_model/heap_snapshot_model.test.ts +0 -11
  738. package/front_end/models/issues_manager/CheckFormsIssuesTrigger.test.ts +0 -22
  739. package/front_end/models/issues_manager/DeprecationIssue.test.ts +0 -81
  740. package/front_end/models/issues_manager/ElementAccessibilityIssue.test.ts +0 -87
  741. package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.test.ts +0 -52
  742. package/front_end/models/issues_manager/GenericIssue.test.ts +0 -82
  743. package/front_end/models/issues_manager/Issue.test.ts +0 -56
  744. package/front_end/models/issues_manager/IssueResolver.test.ts +0 -91
  745. package/front_end/models/issues_manager/IssuesManager.test.ts +0 -360
  746. package/front_end/models/issues_manager/LowTextContrastIssue.test.ts +0 -58
  747. package/front_end/models/issues_manager/MarkdownIssueDescription.test.ts +0 -92
  748. package/front_end/models/issues_manager/PropertyRuleIssue.test.ts +0 -109
  749. package/front_end/models/issues_manager/RelatedIssue.test.ts +0 -64
  750. package/front_end/models/issues_manager/SRIMessageSignatureIssue.test.ts +0 -68
  751. package/front_end/models/issues_manager/SharedDictionaryIssue.test.ts +0 -68
  752. package/front_end/models/issues_manager/StylesheetLoadingIssue.test.ts +0 -138
  753. package/front_end/models/issues_manager/UnencodedDigestIssue.test.ts +0 -49
  754. package/front_end/models/javascript_metadata/JavaScriptMetadata.test.ts +0 -62
  755. package/front_end/models/logs/NetworkLog.test.ts +0 -376
  756. package/front_end/models/logs/RequestResolver.test.ts +0 -92
  757. package/front_end/models/persistence/AutomaticFileSystemManager.test.ts +0 -208
  758. package/front_end/models/persistence/AutomaticFileSystemWorkspaceBinding.test.ts +0 -227
  759. package/front_end/models/persistence/EditFileSystemView.test.ts +0 -181
  760. package/front_end/models/persistence/NetworkPersistenceManager.test.ts +0 -989
  761. package/front_end/models/persistence/PersistenceAction.test.ts +0 -93
  762. package/front_end/models/persistence/PersistenceImpl.test.ts +0 -229
  763. package/front_end/models/persistence/PlatformFileSystem.test.ts +0 -19
  764. package/front_end/models/persistence/WorkspaceSettingsTab.test.ts +0 -146
  765. package/front_end/models/project_settings/ProjectSettingsModel.test.ts +0 -260
  766. package/front_end/models/source_map_scopes/NamesResolver.test.ts +0 -624
  767. package/front_end/models/source_map_scopes/ScopeChainModel.test.ts +0 -87
  768. package/front_end/models/source_map_scopes/ScopeTreeCache.test.ts +0 -63
  769. package/front_end/models/stack_trace/StackTraceImpl.test.ts +0 -74
  770. package/front_end/models/stack_trace/StackTraceModel.test.ts +0 -296
  771. package/front_end/models/stack_trace/Trie.test.ts +0 -129
  772. package/front_end/models/text_utils/ContentData.test.ts +0 -162
  773. package/front_end/models/text_utils/StaticContentProvider.test.ts +0 -34
  774. package/front_end/models/text_utils/StreamingContentData.test.ts +0 -81
  775. package/front_end/models/text_utils/Text.test.ts +0 -103
  776. package/front_end/models/text_utils/TextCursor.test.ts +0 -48
  777. package/front_end/models/text_utils/TextRange.test.ts +0 -461
  778. package/front_end/models/text_utils/TextUtils.test.ts +0 -730
  779. package/front_end/models/text_utils/WasmDisassembly.test.ts +0 -56
  780. package/front_end/models/trace/ModelImpl.test.ts +0 -161
  781. package/front_end/models/trace/Processor.test.ts +0 -429
  782. package/front_end/models/trace/extras/FilmStrip.test.ts +0 -90
  783. package/front_end/models/trace/extras/MainThreadActivity.test.ts +0 -82
  784. package/front_end/models/trace/extras/ScriptDuplication.test.ts +0 -407
  785. package/front_end/models/trace/extras/StackTraceForEvent.test.ts +0 -330
  786. package/front_end/models/trace/extras/ThirdParties.test.ts +0 -114
  787. package/front_end/models/trace/extras/TraceFilter.test.ts +0 -103
  788. package/front_end/models/trace/extras/TraceTree.test.ts +0 -489
  789. package/front_end/models/trace/handlers/AnimationFramesHandler.test.ts +0 -40
  790. package/front_end/models/trace/handlers/AnimationHandler.test.ts +0 -54
  791. package/front_end/models/trace/handlers/AsyncJSCallsHandler.test.ts +0 -300
  792. package/front_end/models/trace/handlers/AuctionWorkletsHandler.test.ts +0 -167
  793. package/front_end/models/trace/handlers/DOMStatsHandler.test.ts +0 -30
  794. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.test.ts +0 -987
  795. package/front_end/models/trace/handlers/FlowsHandler.test.ts +0 -185
  796. package/front_end/models/trace/handlers/FramesHandler.test.ts +0 -243
  797. package/front_end/models/trace/handlers/GPUHandler.test.ts +0 -26
  798. package/front_end/models/trace/handlers/ImagePaintingHandler.test.ts +0 -87
  799. package/front_end/models/trace/handlers/InitiatorsHandler.test.ts +0 -309
  800. package/front_end/models/trace/handlers/InvalidationsHandler.test.ts +0 -185
  801. package/front_end/models/trace/handlers/LargestImagePaintHandler.test.ts +0 -62
  802. package/front_end/models/trace/handlers/LargestTextPaintHandler.test.ts +0 -27
  803. package/front_end/models/trace/handlers/LayerTreeHandler.test.ts +0 -46
  804. package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +0 -252
  805. package/front_end/models/trace/handlers/MemoryHandler.test.ts +0 -29
  806. package/front_end/models/trace/handlers/MetaHandler.test.ts +0 -650
  807. package/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts +0 -514
  808. package/front_end/models/trace/handlers/PageFramesHandler.test.ts +0 -40
  809. package/front_end/models/trace/handlers/PageLoadMetricsHandler.test.ts +0 -274
  810. package/front_end/models/trace/handlers/RendererHandler.test.ts +0 -1007
  811. package/front_end/models/trace/handlers/SamplesHandler.test.ts +0 -355
  812. package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +0 -114
  813. package/front_end/models/trace/handlers/ScriptsHandler.test.ts +0 -103
  814. package/front_end/models/trace/handlers/SelectorStatsHandler.test.ts +0 -39
  815. package/front_end/models/trace/handlers/Threads.test.ts +0 -59
  816. package/front_end/models/trace/handlers/UserInteractionsHandler.test.ts +0 -439
  817. package/front_end/models/trace/handlers/UserTimingsHandler.test.ts +0 -525
  818. package/front_end/models/trace/handlers/WarningsHandler.test.ts +0 -86
  819. package/front_end/models/trace/handlers/WorkersHandler.test.ts +0 -80
  820. package/front_end/models/trace/handlers/helpers.test.ts +0 -102
  821. package/front_end/models/trace/helpers/SamplesIntegrator.test.ts +0 -372
  822. package/front_end/models/trace/helpers/SyntheticEvents.test.ts +0 -62
  823. package/front_end/models/trace/helpers/Timing.test.ts +0 -371
  824. package/front_end/models/trace/helpers/Trace.test.ts +0 -760
  825. package/front_end/models/trace/helpers/TreeHelpers.test.ts +0 -449
  826. package/front_end/models/trace/insights/CLSCulprits.test.ts +0 -254
  827. package/front_end/models/trace/insights/Cache.test.ts +0 -221
  828. package/front_end/models/trace/insights/Common.test.ts +0 -125
  829. package/front_end/models/trace/insights/DOMSize.test.ts +0 -66
  830. package/front_end/models/trace/insights/DocumentLatency.test.ts +0 -110
  831. package/front_end/models/trace/insights/DuplicatedJavaScript.test.ts +0 -128
  832. package/front_end/models/trace/insights/FontDisplay.test.ts +0 -64
  833. package/front_end/models/trace/insights/ForcedReflow.test.ts +0 -34
  834. package/front_end/models/trace/insights/INPBreakdown.test.ts +0 -32
  835. package/front_end/models/trace/insights/ImageDelivery.test.ts +0 -128
  836. package/front_end/models/trace/insights/LCPBreakdown.test.ts +0 -100
  837. package/front_end/models/trace/insights/LCPDiscovery.test.ts +0 -67
  838. package/front_end/models/trace/insights/LegacyJavaScript.test.ts +0 -81
  839. package/front_end/models/trace/insights/ModernHTTP.test.ts +0 -348
  840. package/front_end/models/trace/insights/NetworkDependencyTree.test.ts +0 -563
  841. package/front_end/models/trace/insights/RenderBlocking.test.ts +0 -133
  842. package/front_end/models/trace/insights/SlowCSSSelector.test.ts +0 -48
  843. package/front_end/models/trace/insights/Statistics.test.ts +0 -145
  844. package/front_end/models/trace/insights/ThirdParties.test.ts +0 -56
  845. package/front_end/models/trace/insights/Viewport.test.ts +0 -52
  846. package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +0 -530
  847. package/front_end/models/trace/lantern/graph/BaseNode.test.ts +0 -391
  848. package/front_end/models/trace/lantern/graph/PageDependencyGraph.test.ts +0 -670
  849. package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.test.ts +0 -65
  850. package/front_end/models/trace/lantern/metrics/Interactive.test.ts +0 -70
  851. package/front_end/models/trace/lantern/metrics/LargestContentfulPaint.test.ts +0 -42
  852. package/front_end/models/trace/lantern/metrics/SpeedIndex.test.ts +0 -87
  853. package/front_end/models/trace/lantern/metrics/TBTUtils.test.ts +0 -138
  854. package/front_end/models/trace/lantern/simulation/ConnectionPool.test.ts +0 -199
  855. package/front_end/models/trace/lantern/simulation/DNSCache.test.ts +0 -76
  856. package/front_end/models/trace/lantern/simulation/Simulator.test.ts +0 -454
  857. package/front_end/models/trace/lantern/simulation/TCPConnection.test.ts +0 -368
  858. package/front_end/models/trace/types/File.test.ts +0 -42
  859. package/front_end/models/trace/types/TraceEvents.test.ts +0 -92
  860. package/front_end/models/workspace/IgnoreListManager.test.ts +0 -616
  861. package/front_end/models/workspace/SearchConfig.test.ts +0 -114
  862. package/front_end/models/workspace/UISourceCode.test.ts +0 -415
  863. package/front_end/models/workspace/WorkspaceImpl.test.ts +0 -187
  864. package/front_end/models/workspace_diff/WorkspaceDiff.test.ts +0 -84
  865. package/front_end/panels/accessibility/ARIAAttributesView.test.ts +0 -101
  866. package/front_end/panels/accessibility/AccessibilitySidebarView.test.ts +0 -67
  867. package/front_end/panels/ai_assistance/AiAssistancePanel.test.ts +0 -1891
  868. package/front_end/panels/ai_assistance/PatchWidget.test.ts +0 -445
  869. package/front_end/panels/ai_assistance/SelectWorkspaceDialog.test.ts +0 -201
  870. package/front_end/panels/ai_assistance/components/ChatView.test.ts +0 -103
  871. package/front_end/panels/ai_assistance/components/ExploreWidget.test.ts +0 -118
  872. package/front_end/panels/ai_assistance/components/MarkdownRendererWithCodeBlock.test.ts +0 -80
  873. package/front_end/panels/ai_assistance/components/UserActionRow.test.ts +0 -123
  874. package/front_end/panels/animation/AnimationTimeline.test.ts +0 -752
  875. package/front_end/panels/application/AppManifestView.test.ts +0 -342
  876. package/front_end/panels/application/ApplicationPanelSidebar.test.ts +0 -484
  877. package/front_end/panels/application/BackgroundServiceView.test.ts +0 -160
  878. package/front_end/panels/application/DOMStorageModel.test.ts +0 -45
  879. package/front_end/panels/application/ExtensionStorageItemsView.test.ts +0 -152
  880. package/front_end/panels/application/ExtensionStorageModel.test.ts +0 -249
  881. package/front_end/panels/application/IndexedDBModel.test.ts +0 -252
  882. package/front_end/panels/application/IndexedDBViews.test.ts +0 -182
  883. package/front_end/panels/application/InterestGroupStorageView.test.ts +0 -155
  884. package/front_end/panels/application/InterestGroupTreeElement.test.ts +0 -37
  885. package/front_end/panels/application/KeyValueStorageItemsView.test.ts +0 -120
  886. package/front_end/panels/application/PreloadingTreeElement.test.ts +0 -30
  887. package/front_end/panels/application/ReportingApiView.test.ts +0 -233
  888. package/front_end/panels/application/ServiceWorkerUpdateCycleView.test.ts +0 -130
  889. package/front_end/panels/application/ServiceWorkersView.test.ts +0 -179
  890. package/front_end/panels/application/SharedStorageEventsView.test.ts +0 -231
  891. package/front_end/panels/application/SharedStorageItemsView.test.ts +0 -913
  892. package/front_end/panels/application/SharedStorageListTreeElement.test.ts +0 -161
  893. package/front_end/panels/application/SharedStorageModel.test.ts +0 -434
  894. package/front_end/panels/application/SharedStorageTreeElement.test.ts +0 -140
  895. package/front_end/panels/application/StorageBucketsTreeElement.test.ts +0 -149
  896. package/front_end/panels/application/StorageView.test.ts +0 -156
  897. package/front_end/panels/application/components/BackForwardCacheView.test.ts +0 -303
  898. package/front_end/panels/application/components/BounceTrackingMitigationsView.test.ts +0 -138
  899. package/front_end/panels/application/components/EndpointsGrid.test.ts +0 -83
  900. package/front_end/panels/application/components/FrameDetailsView.test.ts +0 -263
  901. package/front_end/panels/application/components/InterestGroupAccessGrid.test.ts +0 -70
  902. package/front_end/panels/application/components/OriginTrialTreeView.test.ts +0 -442
  903. package/front_end/panels/application/components/ProtocolHandlersView.test.ts +0 -73
  904. package/front_end/panels/application/components/ReportsGrid.test.ts +0 -131
  905. package/front_end/panels/application/components/ServiceWorkerRouterView.test.ts +0 -57
  906. package/front_end/panels/application/components/SharedStorageAccessGrid.test.ts +0 -84
  907. package/front_end/panels/application/components/SharedStorageMetadataView.test.ts +0 -122
  908. package/front_end/panels/application/components/StackTrace.test.ts +0 -222
  909. package/front_end/panels/application/components/StorageMetadataView.test.ts +0 -208
  910. package/front_end/panels/application/components/TrustTokensView.test.ts +0 -127
  911. package/front_end/panels/application/preloading/PreloadingView.test.ts +0 -1180
  912. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +0 -194
  913. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.test.ts +0 -532
  914. package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +0 -503
  915. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.test.ts +0 -150
  916. package/front_end/panels/application/preloading/components/RuleSetDetailsView.test.ts +0 -185
  917. package/front_end/panels/application/preloading/components/RuleSetGrid.test.ts +0 -190
  918. package/front_end/panels/application/preloading/components/UsedPreloadingView.test.ts +0 -751
  919. package/front_end/panels/autofill/AutofillView.test.ts +0 -224
  920. package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.test.ts +0 -179
  921. package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.test.ts +0 -52
  922. package/front_end/panels/browser_debugger/browser_debugger.test.ts +0 -11
  923. package/front_end/panels/changes/CombinedDiffView.test.ts +0 -154
  924. package/front_end/panels/changes/changes.test.ts +0 -11
  925. package/front_end/panels/common/AiCodeCompletionDisclaimer.test.ts +0 -57
  926. package/front_end/panels/common/AiCodeCompletionSummaryToolbar.test.ts +0 -85
  927. package/front_end/panels/common/AiCodeCompletionTeaser.test.ts +0 -98
  928. package/front_end/panels/console/ConsoleContextSelector.test.ts +0 -96
  929. package/front_end/panels/console/ConsoleFormat.test.ts +0 -462
  930. package/front_end/panels/console/ConsolePrompt.test.ts +0 -188
  931. package/front_end/panels/console/ConsoleSidebar.test.ts +0 -130
  932. package/front_end/panels/console/ConsoleView.test.ts +0 -276
  933. package/front_end/panels/console/ConsoleViewMessage.test.ts +0 -433
  934. package/front_end/panels/console/ConsoleViewport.test.ts +0 -399
  935. package/front_end/panels/console/ErrorStackParser.test.ts +0 -343
  936. package/front_end/panels/console_counters/console_counters.test.ts +0 -11
  937. package/front_end/panels/coverage/CoverageDecorationManager.test.ts +0 -211
  938. package/front_end/panels/coverage/CoverageModel.test.ts +0 -91
  939. package/front_end/panels/coverage/CoverageView.test.ts +0 -202
  940. package/front_end/panels/css_overview/CSSOverviewPanel.test.ts +0 -40
  941. package/front_end/panels/developer_resources/DeveloperResourcesView.test.ts +0 -43
  942. package/front_end/panels/developer_resources/developer_resources.test.ts +0 -11
  943. package/front_end/panels/elements/AccessibilityTreeView.test.ts +0 -50
  944. package/front_end/panels/elements/CSSRuleValidator.test.ts +0 -482
  945. package/front_end/panels/elements/CSSValueTraceView.test.ts +0 -215
  946. package/front_end/panels/elements/ClassesPaneWidget.test.ts +0 -48
  947. package/front_end/panels/elements/ColorSwatchPopoverIcon.test.ts +0 -63
  948. package/front_end/panels/elements/ComputedStyleModel.test.ts +0 -155
  949. package/front_end/panels/elements/ComputedStyleWidget.test.ts +0 -153
  950. package/front_end/panels/elements/DOMLinkifier.test.ts +0 -60
  951. package/front_end/panels/elements/DOMTreeWidget.test.ts +0 -58
  952. package/front_end/panels/elements/ElementStatePaneWidget.test.ts +0 -363
  953. package/front_end/panels/elements/ElementsPanel.test.ts +0 -211
  954. package/front_end/panels/elements/ElementsTreeElement.test.ts +0 -443
  955. package/front_end/panels/elements/ElementsTreeOutline.test.ts +0 -218
  956. package/front_end/panels/elements/EventListenersWidget.test.ts +0 -129
  957. package/front_end/panels/elements/InspectElementModeController.test.ts +0 -163
  958. package/front_end/panels/elements/LayoutPane.test.ts +0 -219
  959. package/front_end/panels/elements/PlatformFontsWidget.test.ts +0 -46
  960. package/front_end/panels/elements/PropertiesWidget.test.ts +0 -76
  961. package/front_end/panels/elements/PropertyRenderer.test.ts +0 -340
  962. package/front_end/panels/elements/StylePropertiesSection.test.ts +0 -324
  963. package/front_end/panels/elements/StylePropertyHighlighter.test.ts +0 -160
  964. package/front_end/panels/elements/StylePropertyTreeElement.test.ts +0 -2250
  965. package/front_end/panels/elements/StylePropertyUtils.test.ts +0 -41
  966. package/front_end/panels/elements/StylesSidebarPane.test.ts +0 -716
  967. package/front_end/panels/elements/TopLayerContainer.test.ts +0 -55
  968. package/front_end/panels/elements/WebCustomData.test.ts +0 -77
  969. package/front_end/panels/elements/components/AccessibilityTreeNode.test.ts +0 -44
  970. package/front_end/panels/elements/components/AdornerManager.test.ts +0 -82
  971. package/front_end/panels/elements/components/CSSHintDetailsView.test.ts +0 -40
  972. package/front_end/panels/elements/components/CSSPropertyDocsView.test.ts +0 -131
  973. package/front_end/panels/elements/components/CSSPropertyIconResolver.test.ts +0 -931
  974. package/front_end/panels/elements/components/CSSQuery.test.ts +0 -58
  975. package/front_end/panels/elements/components/CSSVariableValueView.test.ts +0 -20
  976. package/front_end/panels/elements/components/ComputedStyleProperty.test.ts +0 -38
  977. package/front_end/panels/elements/components/ComputedStyleTrace.test.ts +0 -58
  978. package/front_end/panels/elements/components/ElementsBreadcrumbs.test.ts +0 -435
  979. package/front_end/panels/elements/components/ElementsTreeExpandButton.test.ts +0 -50
  980. package/front_end/panels/elements/components/QueryContainer.test.ts +0 -151
  981. package/front_end/panels/elements/components/StylePropertyEditor.test.ts +0 -188
  982. package/front_end/panels/emulation/AdvancedApp.test.ts +0 -80
  983. package/front_end/panels/emulation/MediaQueryInspector.test.ts +0 -55
  984. package/front_end/panels/event_listeners/EventListenersView.test.ts +0 -50
  985. package/front_end/panels/explain/PromptBuilder.test.ts +0 -587
  986. package/front_end/panels/explain/components/ConsoleInsight.test.ts +0 -926
  987. package/front_end/panels/issues/IssueAggregator.test.ts +0 -427
  988. package/front_end/panels/issues/IssueView.test.ts +0 -75
  989. package/front_end/panels/issues/IssuesPane.test.ts +0 -32
  990. package/front_end/panels/layer_viewer/layer_viewer.test.ts +0 -11
  991. package/front_end/panels/layers/LayersPanel.test.ts +0 -55
  992. package/front_end/panels/lighthouse/LighthouseController.test.ts +0 -36
  993. package/front_end/panels/lighthouse/LighthousePanel.test.ts +0 -89
  994. package/front_end/panels/lighthouse/LighthouseProtocolService.test.ts +0 -70
  995. package/front_end/panels/lighthouse/LighthouseReportRenderer.test.ts +0 -123
  996. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.test.ts +0 -201
  997. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.test.ts +0 -54
  998. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.test.ts +0 -124
  999. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.test.ts +0 -421
  1000. package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.test.ts +0 -194
  1001. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.test.ts +0 -118
  1002. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.test.ts +0 -397
  1003. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.test.ts +0 -450
  1004. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.test.ts +0 -91
  1005. package/front_end/panels/media/MainView.test.ts +0 -127
  1006. package/front_end/panels/media/TickingFlameChartHelpers.test.ts +0 -90
  1007. package/front_end/panels/mobile_throttling/ThrottlingManager.test.ts +0 -119
  1008. package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.test.ts +0 -115
  1009. package/front_end/panels/network/BlockedURLsPane.test.ts +0 -80
  1010. package/front_end/panels/network/NetworkConfigView.test.ts +0 -50
  1011. package/front_end/panels/network/NetworkDataGridNode.test.ts +0 -474
  1012. package/front_end/panels/network/NetworkItemView.test.ts +0 -169
  1013. package/front_end/panels/network/NetworkLogView.test.ts +0 -1101
  1014. package/front_end/panels/network/NetworkOverview.test.ts +0 -60
  1015. package/front_end/panels/network/NetworkPanel.test.ts +0 -103
  1016. package/front_end/panels/network/NetworkSearchScope.test.ts +0 -182
  1017. package/front_end/panels/network/RequestCookiesView.test.ts +0 -49
  1018. package/front_end/panels/network/RequestHTMLView.test.ts +0 -28
  1019. package/front_end/panels/network/RequestPayloadView.test.ts +0 -13
  1020. package/front_end/panels/network/RequestPreviewView.test.ts +0 -105
  1021. package/front_end/panels/network/RequestResponseView.test.ts +0 -130
  1022. package/front_end/panels/network/RequestTimingView.test.ts +0 -172
  1023. package/front_end/panels/network/ResourceDirectSocketChunkView.test.ts +0 -335
  1024. package/front_end/panels/network/components/DirectSocketConnectionView.test.ts +0 -253
  1025. package/front_end/panels/network/components/HeaderSectionRow.test.ts +0 -659
  1026. package/front_end/panels/network/components/RequestHeaderSection.test.ts +0 -101
  1027. package/front_end/panels/network/components/RequestHeadersView.test.ts +0 -537
  1028. package/front_end/panels/network/components/RequestTrustTokensView.test.ts +0 -80
  1029. package/front_end/panels/network/components/ResponseHeaderSection.test.ts +0 -1359
  1030. package/front_end/panels/performance_monitor/PerformanceMonitor.test.ts +0 -152
  1031. package/front_end/panels/profiler/HeapDetachedElementsView.test.ts +0 -34
  1032. package/front_end/panels/profiler/HeapProfileView.test.ts +0 -34
  1033. package/front_end/panels/profiler/HeapSnapshotView.test.ts +0 -35
  1034. package/front_end/panels/protocol_monitor/JSONEditor.test.ts +0 -1321
  1035. package/front_end/panels/protocol_monitor/ProtocolMonitor.test.ts +0 -548
  1036. package/front_end/panels/recorder/RecorderController.test.ts +0 -483
  1037. package/front_end/panels/recorder/components/CreateRecordingView.test.ts +0 -141
  1038. package/front_end/panels/recorder/components/RecordingListView.test.ts +0 -64
  1039. package/front_end/panels/recorder/components/RecordingView.test.ts +0 -186
  1040. package/front_end/panels/recorder/components/ReplaySection.test.ts +0 -113
  1041. package/front_end/panels/recorder/components/SelectButton.test.ts +0 -56
  1042. package/front_end/panels/recorder/components/StepEditor.test.ts +0 -711
  1043. package/front_end/panels/recorder/components/StepView.test.ts +0 -208
  1044. package/front_end/panels/recorder/converters/LighthouseConverter.test.ts +0 -79
  1045. package/front_end/panels/recorder/converters/PuppeteerConverter.test.ts +0 -88
  1046. package/front_end/panels/recorder/converters/PuppeteerReplayConverter.test.ts +0 -59
  1047. package/front_end/panels/recorder/injected/selectors/CSSSelector.test.ts +0 -39
  1048. package/front_end/panels/recorder/injected.test.ts +0 -364
  1049. package/front_end/panels/recorder/models/RecorderSettings.test.ts +0 -65
  1050. package/front_end/panels/recorder/models/RecorderShortcutHelper.test.ts +0 -59
  1051. package/front_end/panels/recorder/models/RecordingPlayer.test.ts +0 -235
  1052. package/front_end/panels/recorder/models/SchemaUtils.test.ts +0 -35
  1053. package/front_end/panels/recorder/models/ScreenshotUtils.test.ts +0 -74
  1054. package/front_end/panels/recorder/models/Section.test.ts +0 -98
  1055. package/front_end/panels/recorder/models/recording-storage.test.ts +0 -66
  1056. package/front_end/panels/recorder/models/screenshot-storage.test.ts +0 -159
  1057. package/front_end/panels/recorder/util/SharedObject.test.ts +0 -88
  1058. package/front_end/panels/screencast/ScreencastApp.test.ts +0 -24
  1059. package/front_end/panels/search/SearchResultsPane.test.ts +0 -228
  1060. package/front_end/panels/search/SearchView.test.ts +0 -197
  1061. package/front_end/panels/security/CookieControlsView.test.ts +0 -65
  1062. package/front_end/panels/security/CookieReportView.test.ts +0 -161
  1063. package/front_end/panels/security/SecurityModel.test.ts +0 -45
  1064. package/front_end/panels/security/SecurityPanel.test.ts +0 -264
  1065. package/front_end/panels/settings/AISettingsTab.test.ts +0 -293
  1066. package/front_end/panels/settings/components/SyncSection.test.ts +0 -110
  1067. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.test.ts +0 -146
  1068. package/front_end/panels/settings/emulation/utils/StructuredHeaders.test.ts +0 -462
  1069. package/front_end/panels/settings/emulation/utils/UserAgentMetadata.test.ts +0 -94
  1070. package/front_end/panels/snippets/ScriptSnippetFileSystem.test.ts +0 -29
  1071. package/front_end/panels/sources/AiCodeCompletionPlugin.test.ts +0 -119
  1072. package/front_end/panels/sources/BreakpointEditDialog.test.ts +0 -127
  1073. package/front_end/panels/sources/BreakpointsView.test.ts +0 -1878
  1074. package/front_end/panels/sources/BreakpointsViewUtils.test.ts +0 -209
  1075. package/front_end/panels/sources/CSSPlugin.test.ts +0 -90
  1076. package/front_end/panels/sources/CoveragePlugin.test.ts +0 -82
  1077. package/front_end/panels/sources/DebuggerPausedMessage.test.ts +0 -138
  1078. package/front_end/panels/sources/DebuggerPlugin.test.ts +0 -725
  1079. package/front_end/panels/sources/FilePathScoreFunction.test.ts +0 -171
  1080. package/front_end/panels/sources/FilteredUISourceCodeListProvider.test.ts +0 -150
  1081. package/front_end/panels/sources/NavigatorView.test.ts +0 -277
  1082. package/front_end/panels/sources/OutlineQuickOpen.test.ts +0 -1064
  1083. package/front_end/panels/sources/ResourceOriginPlugin.test.ts +0 -38
  1084. package/front_end/panels/sources/SourcesNavigator.test.ts +0 -615
  1085. package/front_end/panels/sources/SourcesPanel.test.ts +0 -90
  1086. package/front_end/panels/sources/SourcesView.test.ts +0 -242
  1087. package/front_end/panels/sources/TabbedEditorContainer.test.ts +0 -122
  1088. package/front_end/panels/sources/UISourceCodeFrame.test.ts +0 -104
  1089. package/front_end/panels/sources/components/HeadersView.test.ts +0 -573
  1090. package/front_end/panels/timeline/AnnotationHelpers.test.ts +0 -190
  1091. package/front_end/panels/timeline/Breadcrumbs.test.ts +0 -281
  1092. package/front_end/panels/timeline/CountersGraph.test.ts +0 -80
  1093. package/front_end/panels/timeline/EntriesFilter.test.ts +0 -710
  1094. package/front_end/panels/timeline/Initiators.test.ts +0 -176
  1095. package/front_end/panels/timeline/ModificationsManager.test.ts +0 -254
  1096. package/front_end/panels/timeline/RecordingMetadata.test.ts +0 -147
  1097. package/front_end/panels/timeline/SaveFileFormatter.test.ts +0 -77
  1098. package/front_end/panels/timeline/ThirdPartyTreeView.test.ts +0 -84
  1099. package/front_end/panels/timeline/TimelineController.test.ts +0 -98
  1100. package/front_end/panels/timeline/TimelineDetailsView.test.ts +0 -188
  1101. package/front_end/panels/timeline/TimelineFilters.test.ts +0 -72
  1102. package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +0 -377
  1103. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +0 -266
  1104. package/front_end/panels/timeline/TimelineFlameChartView.test.ts +0 -1209
  1105. package/front_end/panels/timeline/TimelineHistoryManager.test.ts +0 -160
  1106. package/front_end/panels/timeline/TimelineLoader.test.ts +0 -167
  1107. package/front_end/panels/timeline/TimelineMiniMap.test.ts +0 -135
  1108. package/front_end/panels/timeline/TimelinePanel.test.ts +0 -550
  1109. package/front_end/panels/timeline/TimelineSelection.test.ts +0 -112
  1110. package/front_end/panels/timeline/TimelineTreeView.test.ts +0 -339
  1111. package/front_end/panels/timeline/TimelineUIUtils.test.ts +0 -1793
  1112. package/front_end/panels/timeline/TrackConfigBanner.test.ts +0 -68
  1113. package/front_end/panels/timeline/TrackConfiguration.test.ts +0 -46
  1114. package/front_end/panels/timeline/components/BreadcrumbsUI.test.ts +0 -101
  1115. package/front_end/panels/timeline/components/CPUThrottlingSelector.test.ts +0 -100
  1116. package/front_end/panels/timeline/components/ExportTraceOptions.test.ts +0 -281
  1117. package/front_end/panels/timeline/components/FieldSettingsDialog.test.ts +0 -295
  1118. package/front_end/panels/timeline/components/IgnoreListSetting.test.ts +0 -325
  1119. package/front_end/panels/timeline/components/InteractionBreakdown.test.ts +0 -37
  1120. package/front_end/panels/timeline/components/Invalidations.test.ts +0 -38
  1121. package/front_end/panels/timeline/components/LayoutShiftDetails.test.ts +0 -72
  1122. package/front_end/panels/timeline/components/LiveMetricsView.test.ts +0 -1006
  1123. package/front_end/panels/timeline/components/MetricCard.test.ts +0 -637
  1124. package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +0 -178
  1125. package/front_end/panels/timeline/components/NetworkThrottlingSelector.test.ts +0 -188
  1126. package/front_end/panels/timeline/components/OriginMap.test.ts +0 -359
  1127. package/front_end/panels/timeline/components/RelatedInsightChips.test.ts +0 -91
  1128. package/front_end/panels/timeline/components/Sidebar.test.ts +0 -185
  1129. package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +0 -261
  1130. package/front_end/panels/timeline/components/SidebarInsightsTab.test.ts +0 -44
  1131. package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +0 -165
  1132. package/front_end/panels/timeline/components/TimelineSummary.test.ts +0 -77
  1133. package/front_end/panels/timeline/components/Utils.test.ts +0 -112
  1134. package/front_end/panels/timeline/components/insights/BaseInsightComponent.test.ts +0 -382
  1135. package/front_end/panels/timeline/components/insights/CLSCulprits.test.ts +0 -44
  1136. package/front_end/panels/timeline/components/insights/INPBreakdown.test.ts +0 -74
  1137. package/front_end/panels/timeline/components/insights/NetworkDependencyTree.test.ts +0 -76
  1138. package/front_end/panels/timeline/components/insights/NodeLink.test.ts +0 -113
  1139. package/front_end/panels/timeline/components/insights/Table.test.ts +0 -60
  1140. package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +0 -1424
  1141. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.test.ts +0 -41
  1142. package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +0 -101
  1143. package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +0 -197
  1144. package/front_end/panels/timeline/track_appenders/CompatibilityTracksAppender.test.ts +0 -229
  1145. package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +0 -249
  1146. package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +0 -116
  1147. package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +0 -124
  1148. package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +0 -104
  1149. package/front_end/panels/timeline/track_appenders/NetworkTrackAppender.test.ts +0 -65
  1150. package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +0 -595
  1151. package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +0 -347
  1152. package/front_end/panels/timeline/utils/AICallTree.test.ts +0 -453
  1153. package/front_end/panels/timeline/utils/EntityMapper.test.ts +0 -123
  1154. package/front_end/panels/timeline/utils/EntryName.test.ts +0 -177
  1155. package/front_end/panels/timeline/utils/EntryNodes.test.ts +0 -137
  1156. package/front_end/panels/timeline/utils/EventsSerializer.test.ts +0 -71
  1157. package/front_end/panels/timeline/utils/FreshRecording.test.ts +0 -23
  1158. package/front_end/panels/timeline/utils/Helpers.test.ts +0 -85
  1159. package/front_end/panels/timeline/utils/IgnoreList.test.ts +0 -192
  1160. package/front_end/panels/timeline/utils/ImageCache.test.ts +0 -107
  1161. package/front_end/panels/timeline/utils/InsightAIContext.test.ts +0 -120
  1162. package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +0 -334
  1163. package/front_end/panels/timeline/utils/Treemap.test.ts +0 -321
  1164. package/front_end/panels/utils/utils.test.ts +0 -232
  1165. package/front_end/panels/web_audio/WebAudioView.test.ts +0 -247
  1166. package/front_end/panels/web_audio/web_audio.test.ts +0 -11
  1167. package/front_end/panels/webauthn/WebauthnPane.test.ts +0 -377
  1168. package/front_end/panels/whats_new/ReleaseNote.test.ts +0 -92
  1169. package/front_end/panels/whats_new/ReleaseNoteView.test.ts +0 -160
  1170. package/front_end/services/trace_bounds/TraceBounds.test.ts +0 -155
  1171. package/front_end/services/tracing/ExternalRequests.test.ts +0 -39
  1172. package/front_end/services/tracing/ExternalRequests.ts +0 -74
  1173. package/front_end/services/tracing/TracingManager.test.ts +0 -102
  1174. package/front_end/testing/AiAssistanceHelpers.ts +0 -349
  1175. package/front_end/testing/ConsoleHelpers.ts +0 -39
  1176. package/front_end/testing/ContextMenuHelpers.ts +0 -46
  1177. package/front_end/testing/Cookies.ts +0 -72
  1178. package/front_end/testing/DOMHelpers.ts +0 -359
  1179. package/front_end/testing/DataGridHelpers.ts +0 -83
  1180. package/front_end/testing/EnvironmentHelpers.ts +0 -565
  1181. package/front_end/testing/ExpectStubCall.ts +0 -46
  1182. package/front_end/testing/ExtensionHelpers.ts +0 -77
  1183. package/front_end/testing/FileManagerHelpers.ts +0 -22
  1184. package/front_end/testing/InsightHelpers.ts +0 -88
  1185. package/front_end/testing/LanguagePluginHelpers.ts +0 -91
  1186. package/front_end/testing/MockConnection.ts +0 -163
  1187. package/front_end/testing/MockExecutionContext.ts +0 -24
  1188. package/front_end/testing/MockIssuesManager.ts +0 -64
  1189. package/front_end/testing/MockIssuesModel.ts +0 -22
  1190. package/front_end/testing/MockNetworkLog.ts +0 -41
  1191. package/front_end/testing/MockScopeChain.test.ts +0 -25
  1192. package/front_end/testing/MockScopeChain.ts +0 -402
  1193. package/front_end/testing/MockSettingStorage.ts +0 -23
  1194. package/front_end/testing/MutationHelpers.test.ts +0 -271
  1195. package/front_end/testing/MutationHelpers.ts +0 -250
  1196. package/front_end/testing/NetworkHelpers.ts +0 -36
  1197. package/front_end/testing/OverridesHelpers.ts +0 -85
  1198. package/front_end/testing/PersistenceHelpers.ts +0 -64
  1199. package/front_end/testing/PropertyParser.ts +0 -34
  1200. package/front_end/testing/README.md +0 -123
  1201. package/front_end/testing/ResourceTreeHelpers.ts +0 -126
  1202. package/front_end/testing/SnapshotTester.snapshot.txt +0 -9
  1203. package/front_end/testing/SnapshotTester.test.ts +0 -32
  1204. package/front_end/testing/SnapshotTester.ts +0 -150
  1205. package/front_end/testing/SourceMapEncoder.test.ts +0 -169
  1206. package/front_end/testing/SourceMapEncoder.ts +0 -130
  1207. package/front_end/testing/SourceMapHelpers.ts +0 -113
  1208. package/front_end/testing/StackTraceHelpers.ts +0 -47
  1209. package/front_end/testing/StorageItemsViewHelpers.ts +0 -24
  1210. package/front_end/testing/StubIssue.ts +0 -123
  1211. package/front_end/testing/StyleHelpers.ts +0 -160
  1212. package/front_end/testing/TraceHelpers.ts +0 -1003
  1213. package/front_end/testing/TraceLoader.ts +0 -344
  1214. package/front_end/testing/TrackAsyncOperations.ts +0 -276
  1215. package/front_end/testing/UISourceCodeHelpers.ts +0 -157
  1216. package/front_end/testing/UserMetricsHelpers.ts +0 -17
  1217. package/front_end/testing/ViewFunctionHelpers.ts +0 -62
  1218. package/front_end/testing/VisualLoggingHelpers.ts +0 -11
  1219. package/front_end/testing/test_setup.ts +0 -117
  1220. package/front_end/ui/components/adorners/Adorner.test.ts +0 -134
  1221. package/front_end/ui/components/buttons/Button.test.ts +0 -268
  1222. package/front_end/ui/components/cards/Card.test.ts +0 -101
  1223. package/front_end/ui/components/chrome_link/ChromeLink.test.ts +0 -57
  1224. package/front_end/ui/components/code_highlighter/CodeHighlighter.test.ts +0 -318
  1225. package/front_end/ui/components/dialogs/ButtonDialog.test.ts +0 -170
  1226. package/front_end/ui/components/dialogs/Dialog.test.ts +0 -903
  1227. package/front_end/ui/components/dialogs/ShortcutDialog.test.ts +0 -79
  1228. package/front_end/ui/components/diff_view/DiffView.test.ts +0 -94
  1229. package/front_end/ui/components/expandable_list/ExpandableList.test.ts +0 -77
  1230. package/front_end/ui/components/helpers/helpers.test.ts +0 -118
  1231. package/front_end/ui/components/highlighting/HighlightManager.test.ts +0 -89
  1232. package/front_end/ui/components/highlighting/highlighting.css +0 -9
  1233. package/front_end/ui/components/icon_button/FileSourceIcon.test.ts +0 -32
  1234. package/front_end/ui/components/icon_button/Icon.test.ts +0 -126
  1235. package/front_end/ui/components/icon_button/IconButton.test.ts +0 -277
  1236. package/front_end/ui/components/issue_counter/IssueCounter.test.ts +0 -234
  1237. package/front_end/ui/components/issue_counter/IssueLinkIcon.test.ts +0 -187
  1238. package/front_end/ui/components/linkifier/LinkifierImpl.test.ts +0 -84
  1239. package/front_end/ui/components/markdown_view/CodeBlock.test.ts +0 -92
  1240. package/front_end/ui/components/markdown_view/MarkdownImage.test.ts +0 -56
  1241. package/front_end/ui/components/markdown_view/MarkdownLink.test.ts +0 -30
  1242. package/front_end/ui/components/markdown_view/MarkdownView.test.ts +0 -445
  1243. package/front_end/ui/components/menus/SelectMenu.test.ts +0 -106
  1244. package/front_end/ui/components/node_text/NodeText.test.ts +0 -80
  1245. package/front_end/ui/components/panel_feedback/FeedbackButton.test.ts +0 -36
  1246. package/front_end/ui/components/panel_feedback/PanelFeedback.test.ts +0 -47
  1247. package/front_end/ui/components/panel_feedback/PreviewToggle.test.ts +0 -75
  1248. package/front_end/ui/components/render_coordinator/render_coordinator.test.ts +0 -243
  1249. package/front_end/ui/components/report_view/ReportView.test.ts +0 -44
  1250. package/front_end/ui/components/request_link_icon/RequestLinkIcon.test.ts +0 -298
  1251. package/front_end/ui/components/settings/SettingCheckbox.test.ts +0 -205
  1252. package/front_end/ui/components/settings/SettingDeprecationWarning.test.ts +0 -68
  1253. package/front_end/ui/components/snackbars/Snackbar.test.ts +0 -141
  1254. package/front_end/ui/components/survey_link/SurveyLink.test.ts +0 -118
  1255. package/front_end/ui/components/switch/SwitchImpl.test.ts +0 -54
  1256. package/front_end/ui/components/text_editor/AiCodeCompletionTeaserPlaceholder.test.ts +0 -84
  1257. package/front_end/ui/components/text_editor/AutocompleteHistory.test.ts +0 -126
  1258. package/front_end/ui/components/text_editor/ExecutionPositionHighlighter.test.ts +0 -140
  1259. package/front_end/ui/components/text_editor/TextEditor.test.ts +0 -340
  1260. package/front_end/ui/components/text_editor/TextEditorHistory.test.ts +0 -170
  1261. package/front_end/ui/components/text_editor/javascript.test.ts +0 -121
  1262. package/front_end/ui/components/text_prompt/TextPrompt.test.ts +0 -81
  1263. package/front_end/ui/components/tooltips/Tooltip.test.ts +0 -307
  1264. package/front_end/ui/components/tree_outline/TreeOutline.test.ts +0 -1472
  1265. package/front_end/ui/legacy/ARIAUtils.test.ts +0 -140
  1266. package/front_end/ui/legacy/ActionRegistration.test.ts +0 -173
  1267. package/front_end/ui/legacy/Context.test.ts +0 -14
  1268. package/front_end/ui/legacy/ContextMenu.test.ts +0 -261
  1269. package/front_end/ui/legacy/DockController.test.ts +0 -88
  1270. package/front_end/ui/legacy/FilterBar.test.ts +0 -52
  1271. package/front_end/ui/legacy/Fragment.test.ts +0 -60
  1272. package/front_end/ui/legacy/Geometry.test.ts +0 -658
  1273. package/front_end/ui/legacy/Infobar.test.ts +0 -53
  1274. package/front_end/ui/legacy/InspectorView.test.ts +0 -99
  1275. package/front_end/ui/legacy/KeyboardShortcut.test.ts +0 -28
  1276. package/front_end/ui/legacy/ListModel.test.ts +0 -78
  1277. package/front_end/ui/legacy/ListWidget.test.ts +0 -78
  1278. package/front_end/ui/legacy/SettingsUI.test.ts +0 -157
  1279. package/front_end/ui/legacy/ShortcutRegistry.test.ts +0 -35
  1280. package/front_end/ui/legacy/SplitWidget.test.ts +0 -62
  1281. package/front_end/ui/legacy/SuggestBox.test.ts +0 -126
  1282. package/front_end/ui/legacy/Toolbar.test.ts +0 -244
  1283. package/front_end/ui/legacy/Treeoutline.test.ts +0 -252
  1284. package/front_end/ui/legacy/UIUtils.test.ts +0 -255
  1285. package/front_end/ui/legacy/View.test.ts +0 -76
  1286. package/front_end/ui/legacy/ViewManager.test.ts +0 -235
  1287. package/front_end/ui/legacy/ViewRegistration.test.ts +0 -76
  1288. package/front_end/ui/legacy/Widget.test.ts +0 -206
  1289. package/front_end/ui/legacy/XLink.test.ts +0 -68
  1290. package/front_end/ui/legacy/components/color_picker/ColorFormatSpec.test.ts +0 -217
  1291. package/front_end/ui/legacy/components/color_picker/Spectrum.test.ts +0 -101
  1292. package/front_end/ui/legacy/components/data_grid/DataGridElement.test.ts +0 -272
  1293. package/front_end/ui/legacy/components/inline_editor/AnimationTimingModel.test.ts +0 -23
  1294. package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.test.ts +0 -58
  1295. package/front_end/ui/legacy/components/inline_editor/BezierUI.test.ts +0 -124
  1296. package/front_end/ui/legacy/components/inline_editor/CSSAngle.test.ts +0 -399
  1297. package/front_end/ui/legacy/components/inline_editor/CSSLinearEasingModel.test.ts +0 -64
  1298. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.test.ts +0 -36
  1299. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.test.ts +0 -40
  1300. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.test.ts +0 -259
  1301. package/front_end/ui/legacy/components/inline_editor/FontEditorUnitConverter.test.ts +0 -47
  1302. package/front_end/ui/legacy/components/inline_editor/FontEditorUtils.test.ts +0 -27
  1303. package/front_end/ui/legacy/components/inline_editor/LinkSwatch.test.ts +0 -86
  1304. package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.test.ts +0 -45
  1305. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.test.ts +0 -72
  1306. package/front_end/ui/legacy/components/perf_ui/ChartViewport.test.ts +0 -63
  1307. package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +0 -218
  1308. package/front_end/ui/legacy/components/perf_ui/FlameChart.test.ts +0 -1630
  1309. package/front_end/ui/legacy/components/perf_ui/PieChart.test.ts +0 -220
  1310. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.test.ts +0 -152
  1311. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.test.ts +0 -70
  1312. package/front_end/ui/legacy/components/quick_open/CommandMenu.test.ts +0 -74
  1313. package/front_end/ui/legacy/components/quick_open/FilteredListWidget.test.ts +0 -111
  1314. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +0 -81
  1315. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.test.ts +0 -77
  1316. package/front_end/ui/legacy/components/source_frame/SourceFrame.test.ts +0 -146
  1317. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.test.ts +0 -67
  1318. package/front_end/ui/legacy/components/utils/JSPresentationUtils.test.ts +0 -52
  1319. package/front_end/ui/legacy/components/utils/Linkifier.test.ts +0 -547
  1320. package/front_end/ui/legacy/theme_support/ThemeSupport.test.ts +0 -129
  1321. package/front_end/ui/lit/i18n-template.test.ts +0 -51
  1322. package/front_end/ui/lit/strip-whitespace.test.ts +0 -110
  1323. package/front_end/ui/visual_logging/Debugging.test.ts +0 -21
  1324. package/front_end/ui/visual_logging/DomState.test.ts +0 -241
  1325. package/front_end/ui/visual_logging/LoggingConfig.test.ts +0 -118
  1326. package/front_end/ui/visual_logging/LoggingDriver.test.ts +0 -1069
  1327. package/front_end/ui/visual_logging/LoggingEvents.test.ts +0 -271
  1328. package/front_end/ui/visual_logging/LoggingState.test.ts +0 -122
  1329. package/front_end/ui/visual_logging/NonDomState.test.ts +0 -44
  1330. package/inspector_overlay/common.test.ts +0 -38
  1331. package/inspector_overlay/css_grid_label_helpers.test.ts +0 -962
  1332. package/inspector_overlay/highlight_common.test.ts +0 -42
  1333. package/inspector_overlay/highlight_flex_common.test.ts +0 -511
  1334. package/inspector_overlay/tool_highlight.test.ts +0 -105
  1335. package/inspector_overlay/tool_source_order.test.ts +0 -130
  1336. package/inspector_overlay/tool_window_controls.test.ts +0 -81
  1337. package/scripts/DIR_METADATA +0 -3
  1338. package/scripts/README.md +0 -26
  1339. package/scripts/__init__.py +0 -0
  1340. package/scripts/add_icon_paths.py +0 -71
  1341. package/scripts/ai_assistance/README.md +0 -60
  1342. package/scripts/ai_assistance/auto-run/auto-run.ts +0 -429
  1343. package/scripts/ai_assistance/auto-run/shared/comment-parsers.test.ts +0 -168
  1344. package/scripts/ai_assistance/auto-run/shared/comment-parsers.ts +0 -97
  1345. package/scripts/ai_assistance/auto-run/shared/puppeteer-helpers.ts +0 -307
  1346. package/scripts/ai_assistance/auto-run/targets/elements-executor.ts +0 -62
  1347. package/scripts/ai_assistance/auto-run/targets/elements-multimodal-executor.ts +0 -62
  1348. package/scripts/ai_assistance/auto-run/targets/factory.ts +0 -33
  1349. package/scripts/ai_assistance/auto-run/targets/interface.ts +0 -29
  1350. package/scripts/ai_assistance/auto-run/targets/patching-executor.ts +0 -69
  1351. package/scripts/ai_assistance/auto-run/targets/performance-insights-executor.ts +0 -99
  1352. package/scripts/ai_assistance/auto-run/targets/performance-main-thread-executor.ts +0 -99
  1353. package/scripts/ai_assistance/auto-run/trace-downloader.ts +0 -91
  1354. package/scripts/ai_assistance/eval/index.html +0 -32
  1355. package/scripts/ai_assistance/eval/index.js +0 -568
  1356. package/scripts/ai_assistance/package.json +0 -8
  1357. package/scripts/ai_assistance/suite/README.md +0 -57
  1358. package/scripts/ai_assistance/suite/helpers/evaluators.ts +0 -183
  1359. package/scripts/ai_assistance/suite/helpers/gemini.ts +0 -122
  1360. package/scripts/ai_assistance/suite/helpers/outputs.ts +0 -112
  1361. package/scripts/ai_assistance/suite/instructions/lcp-breakdown.md +0 -12
  1362. package/scripts/ai_assistance/suite/instructions/load.ts +0 -13
  1363. package/scripts/ai_assistance/suite/instructions/scoring.md +0 -27
  1364. package/scripts/ai_assistance/suite/performance.eval.ts +0 -18
  1365. package/scripts/ai_assistance/suite/to_eval_output.ts +0 -166
  1366. package/scripts/ai_assistance/suite/types.d.ts +0 -40
  1367. package/scripts/ai_assistance/suite/upload_to_gcp.ts +0 -104
  1368. package/scripts/ai_assistance/to_tsv.mjs +0 -39
  1369. package/scripts/ai_assistance/tsconfig.json +0 -14
  1370. package/scripts/ai_assistance/types.d.ts +0 -81
  1371. package/scripts/build/README.md +0 -2
  1372. package/scripts/build/__init__.py +0 -3
  1373. package/scripts/build/assert_grd.py +0 -57
  1374. package/scripts/build/assert_third_party_readmes.py +0 -70
  1375. package/scripts/build/build_inspector_overlay.py +0 -106
  1376. package/scripts/build/code_generator_frontend.py +0 -413
  1377. package/scripts/build/compress_files.js +0 -89
  1378. package/scripts/build/cross_reference_ninja_and_tsc.js +0 -180
  1379. package/scripts/build/devtools_plugin.js +0 -164
  1380. package/scripts/build/efficiently_recompile.py +0 -29
  1381. package/scripts/build/esbuild.js +0 -56
  1382. package/scripts/build/generate_aria.py +0 -36
  1383. package/scripts/build/generate_css_js_files.js +0 -83
  1384. package/scripts/build/generate_deprecations.py +0 -99
  1385. package/scripts/build/generate_devtools_grd.py +0 -123
  1386. package/scripts/build/generate_devtools_json.js +0 -27
  1387. package/scripts/build/generate_html_entrypoint.js +0 -49
  1388. package/scripts/build/generate_supported_css.py +0 -135
  1389. package/scripts/build/ninja/README.md +0 -190
  1390. package/scripts/build/ninja/bundle.gni +0 -85
  1391. package/scripts/build/ninja/copy-file.js +0 -38
  1392. package/scripts/build/ninja/copy-files.js +0 -39
  1393. package/scripts/build/ninja/copy.gni +0 -59
  1394. package/scripts/build/ninja/devtools_entrypoint.gni +0 -221
  1395. package/scripts/build/ninja/devtools_module.gni +0 -33
  1396. package/scripts/build/ninja/devtools_pre_built.gni +0 -55
  1397. package/scripts/build/ninja/generate-declaration.js +0 -18
  1398. package/scripts/build/ninja/generate-tsconfig.js +0 -46
  1399. package/scripts/build/ninja/generate_css.gni +0 -45
  1400. package/scripts/build/ninja/minify-json-files.js +0 -20
  1401. package/scripts/build/ninja/minify_json.gni +0 -32
  1402. package/scripts/build/ninja/node.gni +0 -36
  1403. package/scripts/build/ninja/vars.gni +0 -19
  1404. package/scripts/build/ninja/wasm.gni +0 -25
  1405. package/scripts/build/ninja/write-if-changed.js +0 -27
  1406. package/scripts/build/rollup.config.mjs +0 -31
  1407. package/scripts/build/tests/generate_css_js_files_test.js +0 -40
  1408. package/scripts/build/tests/plugins_test.js +0 -149
  1409. package/scripts/build/typescript/README.md +0 -94
  1410. package/scripts/build/typescript/tests/README.md +0 -10
  1411. package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/BUILDCONFIG.gn +0 -10
  1412. package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/build_output.txt.expected +0 -14
  1413. package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/front_end/module/exporting.ts +0 -1
  1414. package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/front_end/module/index.ts +0 -3
  1415. package/scripts/build/typescript/tests/fixtures/recompile/BUILDCONFIG.gn +0 -10
  1416. package/scripts/build/typescript/tests/fixtures/recompile/build_output.txt.expected +0 -8
  1417. package/scripts/build/typescript/tests/fixtures/recompile/build_output.txt.expected.regen +0 -4
  1418. package/scripts/build/typescript/tests/fixtures/recompile/front_end/module/exporting.ts +0 -1
  1419. package/scripts/build/typescript/tests/fixtures/recompile/front_end/module/module.ts +0 -5
  1420. package/scripts/build/typescript/tests/fixtures/recompile_dep/BUILDCONFIG.gn +0 -10
  1421. package/scripts/build/typescript/tests/fixtures/recompile_dep/build_output.txt.expected +0 -8
  1422. package/scripts/build/typescript/tests/fixtures/recompile_dep/build_output.txt.expected.regen +0 -6
  1423. package/scripts/build/typescript/tests/fixtures/recompile_dep/expected.tsbuildinfo +0 -2084
  1424. package/scripts/build/typescript/tests/fixtures/recompile_dep/front_end/module/exporting.ts +0 -1
  1425. package/scripts/build/typescript/tests/fixtures/recompile_dep/front_end/module/module.ts +0 -7
  1426. package/scripts/build/typescript/tests/fixtures/simple_dep/BUILDCONFIG.gn +0 -10
  1427. package/scripts/build/typescript/tests/fixtures/simple_dep/build_output.txt.expected +0 -6
  1428. package/scripts/build/typescript/tests/fixtures/simple_dep/build_output.txt.expected.regen +0 -2
  1429. package/scripts/build/typescript/tests/fixtures/simple_dep/front_end/module/exporting.ts +0 -1
  1430. package/scripts/build/typescript/tests/fixtures/simple_dep/front_end/module/index.ts +0 -3
  1431. package/scripts/build/typescript/tests/fixtures/test_dep/BUILDCONFIG.gn +0 -10
  1432. package/scripts/build/typescript/tests/fixtures/test_dep/build_output.txt.expected +0 -8
  1433. package/scripts/build/typescript/tests/fixtures/test_dep/front_end/module/exporting.ts +0 -1
  1434. package/scripts/build/typescript/tests/fixtures/test_dep/front_end/module/module.ts +0 -5
  1435. package/scripts/build/typescript/tests/verify_ts_libary.sh +0 -88
  1436. package/scripts/build/typescript/ts_library.py +0 -336
  1437. package/scripts/build/typescript/typescript.gni +0 -290
  1438. package/scripts/build/wasm-as.py +0 -87
  1439. package/scripts/build/wasm_sourcemap.mjs +0 -22
  1440. package/scripts/check_esbuild_versions.js +0 -51
  1441. package/scripts/check_experiments.js +0 -292
  1442. package/scripts/check_external_links.js +0 -150
  1443. package/scripts/component_server/README.md +0 -43
  1444. package/scripts/component_server/server.js +0 -597
  1445. package/scripts/devtools_build.mjs +0 -396
  1446. package/scripts/devtools_build.test.mjs +0 -243
  1447. package/scripts/devtools_paths.js +0 -193
  1448. package/scripts/devtools_paths.py +0 -127
  1449. package/scripts/eslint_rules/README.md +0 -29
  1450. package/scripts/eslint_rules/lib/canvas-context-tracking.ts +0 -154
  1451. package/scripts/eslint_rules/lib/check-css-import.ts +0 -52
  1452. package/scripts/eslint_rules/lib/check-enumerated-histograms.ts +0 -42
  1453. package/scripts/eslint_rules/lib/check-license-header.ts +0 -222
  1454. package/scripts/eslint_rules/lib/check-test-definitions.ts +0 -91
  1455. package/scripts/eslint_rules/lib/check-was-shown-methods.ts +0 -57
  1456. package/scripts/eslint_rules/lib/enforce-custom-element-definitions-location.ts +0 -95
  1457. package/scripts/eslint_rules/lib/enforce-custom-event-names.ts +0 -174
  1458. package/scripts/eslint_rules/lib/enforce-default-import-name.ts +0 -86
  1459. package/scripts/eslint_rules/lib/enforce-optional-properties-last.ts +0 -87
  1460. package/scripts/eslint_rules/lib/enforce-ui-strings-as-const.ts +0 -69
  1461. package/scripts/eslint_rules/lib/es-modules-import.ts +0 -405
  1462. package/scripts/eslint_rules/lib/html-tagged-template.ts +0 -85
  1463. package/scripts/eslint_rules/lib/inject-checkbox-styles.ts +0 -187
  1464. package/scripts/eslint_rules/lib/inline-type-imports.ts +0 -217
  1465. package/scripts/eslint_rules/lib/jslog-context-list.ts +0 -192
  1466. package/scripts/eslint_rules/lib/l10n-filename-matches.ts +0 -136
  1467. package/scripts/eslint_rules/lib/l10n-i18nString-call-only-with-uistrings.ts +0 -62
  1468. package/scripts/eslint_rules/lib/l10n-no-i18nString-calls-module-instantiation.ts +0 -61
  1469. package/scripts/eslint_rules/lib/l10n-no-locked-or-placeholder-only-phrase.ts +0 -72
  1470. package/scripts/eslint_rules/lib/l10n-no-uistrings-export.ts +0 -89
  1471. package/scripts/eslint_rules/lib/l10n-no-unused-message.ts +0 -159
  1472. package/scripts/eslint_rules/lib/lit-no-attribute-quotes.ts +0 -111
  1473. package/scripts/eslint_rules/lib/lit-template-result-or-nothing.ts +0 -158
  1474. package/scripts/eslint_rules/lib/no-a-tags-in-lit.ts +0 -43
  1475. package/scripts/eslint_rules/lib/no-adopted-style-sheets.ts +0 -37
  1476. package/scripts/eslint_rules/lib/no-assert-deep-strict-equal.ts +0 -61
  1477. package/scripts/eslint_rules/lib/no-assert-equal-boolean-null-undefined.ts +0 -178
  1478. package/scripts/eslint_rules/lib/no-assert-equal.ts +0 -88
  1479. package/scripts/eslint_rules/lib/no-assert-strict-equal-for-arrays-and-objects.ts +0 -86
  1480. package/scripts/eslint_rules/lib/no-bound-component-methods.ts +0 -161
  1481. package/scripts/eslint_rules/lib/no-commented-out-console.ts +0 -49
  1482. package/scripts/eslint_rules/lib/no-commented-out-import.ts +0 -46
  1483. package/scripts/eslint_rules/lib/no-customized-builtin-elements.ts +0 -140
  1484. package/scripts/eslint_rules/lib/no-deprecated-component-usages.ts +0 -46
  1485. package/scripts/eslint_rules/lib/no-document-body-mutation.ts +0 -102
  1486. package/scripts/eslint_rules/lib/no-imperative-dom-api/adorner.ts +0 -48
  1487. package/scripts/eslint_rules/lib/no-imperative-dom-api/aria-utils.ts +0 -109
  1488. package/scripts/eslint_rules/lib/no-imperative-dom-api/ast.ts +0 -86
  1489. package/scripts/eslint_rules/lib/no-imperative-dom-api/button.ts +0 -81
  1490. package/scripts/eslint_rules/lib/no-imperative-dom-api/class-member.ts +0 -54
  1491. package/scripts/eslint_rules/lib/no-imperative-dom-api/data-grid.ts +0 -151
  1492. package/scripts/eslint_rules/lib/no-imperative-dom-api/dom-api-devtools-extensions.ts +0 -32
  1493. package/scripts/eslint_rules/lib/no-imperative-dom-api/dom-api.ts +0 -141
  1494. package/scripts/eslint_rules/lib/no-imperative-dom-api/dom-fragment.ts +0 -307
  1495. package/scripts/eslint_rules/lib/no-imperative-dom-api/split-widget.ts +0 -125
  1496. package/scripts/eslint_rules/lib/no-imperative-dom-api/toolbar.ts +0 -193
  1497. package/scripts/eslint_rules/lib/no-imperative-dom-api/ui-fragment.ts +0 -55
  1498. package/scripts/eslint_rules/lib/no-imperative-dom-api/ui-utils.ts +0 -213
  1499. package/scripts/eslint_rules/lib/no-imperative-dom-api/widget.ts +0 -96
  1500. package/scripts/eslint_rules/lib/no-imperative-dom-api.ts +0 -270
  1501. package/scripts/eslint_rules/lib/no-importing-images-from-src.ts +0 -83
  1502. package/scripts/eslint_rules/lib/no-imports-in-directory.ts +0 -84
  1503. package/scripts/eslint_rules/lib/no-lit-render-outside-of-view.ts +0 -105
  1504. package/scripts/eslint_rules/lib/no-new-lit-element-components.ts +0 -48
  1505. package/scripts/eslint_rules/lib/no-self-closing-custom-element-tagnames.ts +0 -42
  1506. package/scripts/eslint_rules/lib/no-underscored-properties.ts +0 -78
  1507. package/scripts/eslint_rules/lib/prefer-assert-instance-of.ts +0 -80
  1508. package/scripts/eslint_rules/lib/prefer-assert-is-ok.ts +0 -103
  1509. package/scripts/eslint_rules/lib/prefer-assert-length-of.ts +0 -76
  1510. package/scripts/eslint_rules/lib/prefer-assert-strict-equal.ts +0 -92
  1511. package/scripts/eslint_rules/lib/prefer-private-class-members.ts +0 -45
  1512. package/scripts/eslint_rules/lib/prefer-sinon-assert.ts +0 -151
  1513. package/scripts/eslint_rules/lib/prefer-url-string.ts +0 -109
  1514. package/scripts/eslint_rules/lib/set-data-type-reference.ts +0 -69
  1515. package/scripts/eslint_rules/lib/static-custom-event-names.ts +0 -215
  1516. package/scripts/eslint_rules/lib/trace-engine-test-timeouts.ts +0 -125
  1517. package/scripts/eslint_rules/lib/utils/l10n-helper.ts +0 -48
  1518. package/scripts/eslint_rules/lib/utils/lit.ts +0 -73
  1519. package/scripts/eslint_rules/lib/utils/ruleCreator.ts +0 -16
  1520. package/scripts/eslint_rules/lib/utils/treeHelpers.ts +0 -13
  1521. package/scripts/eslint_rules/lib/validate-timing-types.ts +0 -330
  1522. package/scripts/eslint_rules/rules-dir.mjs +0 -78
  1523. package/scripts/eslint_rules/tests/canvas-context-tracking.test.ts +0 -124
  1524. package/scripts/eslint_rules/tests/check-css-import.test.ts +0 -43
  1525. package/scripts/eslint_rules/tests/check-enumerated-histograms.test.ts +0 -31
  1526. package/scripts/eslint_rules/tests/check-license-header.test.ts +0 -293
  1527. package/scripts/eslint_rules/tests/check-test-definitions.test.ts +0 -155
  1528. package/scripts/eslint_rules/tests/check-was-shown-methods.test.ts +0 -103
  1529. package/scripts/eslint_rules/tests/check_css_import_test_file.css +0 -5
  1530. package/scripts/eslint_rules/tests/enforce-custom-element-definitions-location.test.ts +0 -56
  1531. package/scripts/eslint_rules/tests/enforce-custom-event-names.test.ts +0 -124
  1532. package/scripts/eslint_rules/tests/enforce-default-import-name.test.ts +0 -53
  1533. package/scripts/eslint_rules/tests/enforce-optional-properties-last.test.ts +0 -137
  1534. package/scripts/eslint_rules/tests/enforce-ui-strings-as-const.test.ts +0 -35
  1535. package/scripts/eslint_rules/tests/es-modules-import.test.ts +0 -332
  1536. package/scripts/eslint_rules/tests/html-tagged-template.test.ts +0 -103
  1537. package/scripts/eslint_rules/tests/inject-checkbox-styles.test.ts +0 -219
  1538. package/scripts/eslint_rules/tests/inline-type-imports.test.ts +0 -82
  1539. package/scripts/eslint_rules/tests/jslog-context-list.test.ts +0 -218
  1540. package/scripts/eslint_rules/tests/l10n-filename-matches.test.ts +0 -90
  1541. package/scripts/eslint_rules/tests/l10n-i18nString-call-only-with-uistrings.test.ts +0 -44
  1542. package/scripts/eslint_rules/tests/l10n-no-i18nString-calls-module-instantiation.test.ts +0 -77
  1543. package/scripts/eslint_rules/tests/l10n-no-locked-or-placeholder-only-phrase.test.ts +0 -45
  1544. package/scripts/eslint_rules/tests/l10n-no-uistrings-export.test.ts +0 -50
  1545. package/scripts/eslint_rules/tests/l10n-no-unused-message.test.ts +0 -119
  1546. package/scripts/eslint_rules/tests/lit-no-attribute-quotes.test.ts +0 -43
  1547. package/scripts/eslint_rules/tests/lit-template-result-or-nothing.test.ts +0 -142
  1548. package/scripts/eslint_rules/tests/no-a-tags-in-lit.test.ts +0 -67
  1549. package/scripts/eslint_rules/tests/no-adopted-style-sheets.test.ts +0 -52
  1550. package/scripts/eslint_rules/tests/no-assert-deep-strict-equal.test.ts +0 -51
  1551. package/scripts/eslint_rules/tests/no-assert-equal-boolean-null-undefined.test.ts +0 -207
  1552. package/scripts/eslint_rules/tests/no-assert-equal.test.ts +0 -101
  1553. package/scripts/eslint_rules/tests/no-assert-strict-equal-for-arrays-and-objects.test.ts +0 -87
  1554. package/scripts/eslint_rules/tests/no-bound-component-methods.test.ts +0 -105
  1555. package/scripts/eslint_rules/tests/no-commented-out-console.test.ts +0 -35
  1556. package/scripts/eslint_rules/tests/no-commented-out-import.test.ts +0 -45
  1557. package/scripts/eslint_rules/tests/no-customized-builtin-elements.test.ts +0 -150
  1558. package/scripts/eslint_rules/tests/no-deprecated-component-usages.test.ts +0 -46
  1559. package/scripts/eslint_rules/tests/no-document-body-mutation.test.ts +0 -45
  1560. package/scripts/eslint_rules/tests/no-imperative-dom-api.test.ts +0 -1237
  1561. package/scripts/eslint_rules/tests/no-importing-images-from-src.test.ts +0 -40
  1562. package/scripts/eslint_rules/tests/no-imports-in-directory.test.ts +0 -104
  1563. package/scripts/eslint_rules/tests/no-lit-render-outside-of-view.test.ts +0 -130
  1564. package/scripts/eslint_rules/tests/no-new-lit-element-components.test.ts +0 -31
  1565. package/scripts/eslint_rules/tests/no-self-closing-custom-element-tagnames.test.ts +0 -59
  1566. package/scripts/eslint_rules/tests/no-underscored-properties.test.ts +0 -99
  1567. package/scripts/eslint_rules/tests/prefer-assert-instance-of.test.ts +0 -195
  1568. package/scripts/eslint_rules/tests/prefer-assert-is-ok.test.ts +0 -182
  1569. package/scripts/eslint_rules/tests/prefer-assert-length-of.test.ts +0 -143
  1570. package/scripts/eslint_rules/tests/prefer-assert-strict-equal.test.ts +0 -367
  1571. package/scripts/eslint_rules/tests/prefer-private-class-members.test.ts +0 -59
  1572. package/scripts/eslint_rules/tests/prefer-sinon-assert.test.ts +0 -333
  1573. package/scripts/eslint_rules/tests/prefer-url-string.test.ts +0 -87
  1574. package/scripts/eslint_rules/tests/set-data-type-reference.test.ts +0 -60
  1575. package/scripts/eslint_rules/tests/static-custom-event-names.test.ts +0 -179
  1576. package/scripts/eslint_rules/tests/trace-engine-test-timeouts.test.ts +0 -59
  1577. package/scripts/eslint_rules/tests/utils/RuleTester.ts +0 -28
  1578. package/scripts/eslint_rules/tests/utils.test.ts +0 -79
  1579. package/scripts/eslint_rules/tests/validate-timing-types.test.ts +0 -289
  1580. package/scripts/eslint_rules/tsconfig.json +0 -14
  1581. package/scripts/extract_bugs.ts +0 -126
  1582. package/scripts/generate_metric_compare_strings.js +0 -130
  1583. package/scripts/hosted_mode/cert.pem +0 -21
  1584. package/scripts/hosted_mode/key.pem +0 -28
  1585. package/scripts/hosted_mode/server.js +0 -258
  1586. package/scripts/javascript_natives/helpers.js +0 -232
  1587. package/scripts/javascript_natives/index.js +0 -105
  1588. package/scripts/javascript_natives/package.json +0 -9
  1589. package/scripts/javascript_natives/test.d.ts +0 -13
  1590. package/scripts/javascript_natives/tests.js +0 -195
  1591. package/scripts/migration/class-fields/migrate.js +0 -77
  1592. package/scripts/migration/class-fields/migrate.sh +0 -8
  1593. package/scripts/migration/class-fields/package.json +0 -5
  1594. package/scripts/migration/e2e_non_hosted_gemini.mjs +0 -102
  1595. package/scripts/migration/web-tests-esm/rename-legacy-global.mjs +0 -129
  1596. package/scripts/npm_test.js +0 -141
  1597. package/scripts/protocol_typescript/protocol_dts_generator.ts +0 -470
  1598. package/scripts/protocol_typescript/protocol_schema.d.ts +0 -97
  1599. package/scripts/reformat-clang-js-ts.js +0 -71
  1600. package/scripts/run_build.mjs +0 -128
  1601. package/scripts/run_on_target.mjs +0 -88
  1602. package/scripts/run_start.mjs +0 -236
  1603. package/scripts/scaffold/README.md +0 -4
  1604. package/scripts/scaffold/scaffold-widget.js +0 -167
  1605. package/scripts/scaffold/templates/WidgetTemplate.css.txt +0 -9
  1606. package/scripts/scaffold/templates/WidgetTemplate.ts.txt +0 -60
  1607. package/scripts/search-trace-files.js +0 -66
  1608. package/scripts/stylelint_rules/lib/use_theme_colors.mjs +0 -322
  1609. package/scripts/stylelint_rules/tests/use_theme_colors.test.js +0 -515
  1610. package/scripts/tools/update_goldens.py +0 -432
  1611. package/scripts/tsconfig.json +0 -11
  1612. package/scripts/utils.js +0 -160
  1613. package/scripts/whitespaces.txt +0 -12
@@ -1,2084 +0,0 @@
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.es2019.d.ts": {
30
- "version": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
31
- "signature": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
32
- "affectsGlobalScope": false
33
- },
34
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.d.ts": {
35
- "version": "94b4108552f078722078d7c4a010ca4851063882f6c0c51a1468aa7a39aed4b3",
36
- "signature": "94b4108552f078722078d7c4a010ca4851063882f6c0c51a1468aa7a39aed4b3",
37
- "affectsGlobalScope": false
38
- },
39
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.d.ts": {
40
- "version": "2f8f379dedbdbd96a38a1e445cb3919853a1157a950fd977f85808db8d0f8a58",
41
- "signature": "2f8f379dedbdbd96a38a1e445cb3919853a1157a950fd977f85808db8d0f8a58",
42
- "affectsGlobalScope": false
43
- },
44
- "../../../../../../../../../node_modules/typescript/lib/lib.dom.d.ts": {
45
- "version": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
46
- "signature": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
47
- "affectsGlobalScope": true
48
- },
49
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.core.d.ts": {
50
- "version": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
51
- "signature": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
52
- "affectsGlobalScope": true
53
- },
54
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts": {
55
- "version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
56
- "signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
57
- "affectsGlobalScope": true
58
- },
59
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts": {
60
- "version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
61
- "signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
62
- "affectsGlobalScope": true
63
- },
64
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
65
- "version": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
66
- "signature": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
67
- "affectsGlobalScope": true
68
- },
69
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts": {
70
- "version": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
71
- "signature": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
72
- "affectsGlobalScope": true
73
- },
74
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
75
- "version": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
76
- "signature": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
77
- "affectsGlobalScope": true
78
- },
79
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
80
- "version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
81
- "signature": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
82
- "affectsGlobalScope": true
83
- },
84
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
85
- "version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
86
- "signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
87
- "affectsGlobalScope": true
88
- },
89
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
90
- "version": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
91
- "signature": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
92
- "affectsGlobalScope": true
93
- },
94
- "../../../../../../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
95
- "version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
96
- "signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
97
- "affectsGlobalScope": true
98
- },
99
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.object.d.ts": {
100
- "version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
101
- "signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
102
- "affectsGlobalScope": true
103
- },
104
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
105
- "version": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
106
- "signature": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
107
- "affectsGlobalScope": true
108
- },
109
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.string.d.ts": {
110
- "version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
111
- "signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
112
- "affectsGlobalScope": true
113
- },
114
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts": {
115
- "version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
116
- "signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
117
- "affectsGlobalScope": true
118
- },
119
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
120
- "version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
121
- "signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
122
- "affectsGlobalScope": true
123
- },
124
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
125
- "version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
126
- "signature": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
127
- "affectsGlobalScope": true
128
- },
129
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
130
- "version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
131
- "signature": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
132
- "affectsGlobalScope": true
133
- },
134
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts": {
135
- "version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
136
- "signature": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
137
- "affectsGlobalScope": true
138
- },
139
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts": {
140
- "version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
141
- "signature": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
142
- "affectsGlobalScope": true
143
- },
144
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
145
- "version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
146
- "signature": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
147
- "affectsGlobalScope": true
148
- },
149
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.array.d.ts": {
150
- "version": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
151
- "signature": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
152
- "affectsGlobalScope": true
153
- },
154
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.object.d.ts": {
155
- "version": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
156
- "signature": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
157
- "affectsGlobalScope": true
158
- },
159
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.string.d.ts": {
160
- "version": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
161
- "signature": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
162
- "affectsGlobalScope": true
163
- },
164
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts": {
165
- "version": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
166
- "signature": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
167
- "affectsGlobalScope": true
168
- },
169
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
170
- "version": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
171
- "signature": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
172
- "affectsGlobalScope": true
173
- },
174
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts": {
175
- "version": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
176
- "signature": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
177
- "affectsGlobalScope": true
178
- },
179
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.string.d.ts": {
180
- "version": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
181
- "signature": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
182
- "affectsGlobalScope": true
183
- },
184
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": {
185
- "version": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
186
- "signature": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
187
- "affectsGlobalScope": true
188
- },
189
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
190
- "version": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
191
- "signature": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
192
- "affectsGlobalScope": true
193
- },
194
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.string.d.ts": {
195
- "version": "fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe",
196
- "signature": "fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe",
197
- "affectsGlobalScope": true
198
- },
199
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.promise.d.ts": {
200
- "version": "cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e",
201
- "signature": "cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e",
202
- "affectsGlobalScope": true
203
- },
204
- "../../../../../../../../../node_modules/@types/chai/index.d.ts": {
205
- "version": "b26b3829d52ebdc82a2b9f4fa8051890dc953003382b4411fe4ec6f05351dcf4",
206
- "signature": "b26b3829d52ebdc82a2b9f4fa8051890dc953003382b4411fe4ec6f05351dcf4",
207
- "affectsGlobalScope": true
208
- },
209
- "../../front_end/module/exporting.d.ts": {
210
- "version": "60be5a12a11fc3f83bd461f92b833b41ae6d5bff77bd341fc43bba780249cc3c",
211
- "signature": "60be5a12a11fc3f83bd461f92b833b41ae6d5bff77bd341fc43bba780249cc3c",
212
- "affectsGlobalScope": false
213
- },
214
- "../../front_end/module/module.d.ts": {
215
- "version": "6bd60c4b6fd914a86db29e7aa6d35bdaf3fb530a231cc5648e61f79b93cf511a",
216
- "signature": "6bd60c4b6fd914a86db29e7aa6d35bdaf3fb530a231cc5648e61f79b93cf511a",
217
- "affectsGlobalScope": false
218
- },
219
- "../../../../../../fixtures/recompile_dep/test/module/exporting_test.ts": {
220
- "version": "74a5d0e0044d2bcc329c66aa7e9b5c23cb5338b2ce0093023cec7c81a0634339",
221
- "signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
222
- "affectsGlobalScope": false
223
- },
224
- "../../../../../../../../../front_end/legacy/legacy-defs.d.ts": {
225
- "version": "c37a5a070b78e244dea8bd98d515233ac2ccceebab1bc05a92803d8f8cc0d427",
226
- "signature": "c37a5a070b78e244dea8bd98d515233ac2ccceebab1bc05a92803d8f8cc0d427",
227
- "affectsGlobalScope": true
228
- },
229
- "../../../../../../../../../front_end/generated/protocol.d.ts": {
230
- "version": "4e8a2ad137e9847d97003f3c076086ba0f6a6c72e7cc7b88825b6c445fa7c288",
231
- "signature": "4e8a2ad137e9847d97003f3c076086ba0f6a6c72e7cc7b88825b6c445fa7c288",
232
- "affectsGlobalScope": true
233
- },
234
- "../../../../../../../../../front_end/generated/protocol-proxy-api.d.ts": {
235
- "version": "1f0f6b9b3db4dcaf6589949496fec04cd504741cacf440271c84e1f4952239b7",
236
- "signature": "1f0f6b9b3db4dcaf6589949496fec04cd504741cacf440271c84e1f4952239b7",
237
- "affectsGlobalScope": true
238
- },
239
- "../../../../../../../../../node_modules/@types/filewriter/index.d.ts": {
240
- "version": "d9932f317f16ea21c183b67b73a72f17883c52933980292e7ebba2215495bb5c",
241
- "signature": "d9932f317f16ea21c183b67b73a72f17883c52933980292e7ebba2215495bb5c",
242
- "affectsGlobalScope": true
243
- },
244
- "../../../../../../../../../node_modules/@types/filesystem/index.d.ts": {
245
- "version": "40dcb6f3611671f2b9567edf67f9e5c52315663d60cdf0778baefb6007350ea3",
246
- "signature": "40dcb6f3611671f2b9567edf67f9e5c52315663d60cdf0778baefb6007350ea3",
247
- "affectsGlobalScope": true
248
- },
249
- "../../../../../../../../../node_modules/@types/color-name/index.d.ts": {
250
- "version": "f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",
251
- "signature": "f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",
252
- "affectsGlobalScope": false
253
- },
254
- "../../../../../../../../../node_modules/@types/eslint-visitor-keys/index.d.ts": {
255
- "version": "725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",
256
- "signature": "725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",
257
- "affectsGlobalScope": false
258
- },
259
- "../../../../../../../../../node_modules/@types/json-schema/index.d.ts": {
260
- "version": "92bc43ea5584457c9325a3d5b2ce5af77df6d2653be7e4c2e9a626f89293c3c1",
261
- "signature": "92bc43ea5584457c9325a3d5b2ce5af77df6d2653be7e4c2e9a626f89293c3c1",
262
- "affectsGlobalScope": false
263
- },
264
- "../../../../../../../../../node_modules/@types/mime-types/index.d.ts": {
265
- "version": "f17dd220e27f33e3f1c5bb6f00999420520a6dd1e7f71ee66c11cfc1c2990f20",
266
- "signature": "f17dd220e27f33e3f1c5bb6f00999420520a6dd1e7f71ee66c11cfc1c2990f20",
267
- "affectsGlobalScope": false
268
- },
269
- "../../../../../../../../../node_modules/@types/mocha/index.d.ts": {
270
- "version": "c4c03cf65951d980ba618ae9601d10438730803fc9c8a1f7b34af8739981e205",
271
- "signature": "c4c03cf65951d980ba618ae9601d10438730803fc9c8a1f7b34af8739981e205",
272
- "affectsGlobalScope": true
273
- },
274
- "../../../../../../../../../node_modules/@types/node/globals.d.ts": {
275
- "version": "05c42320698cb6eb4052d68ef35a0f3b88291b9275f13e9a188b96119844c5b6",
276
- "signature": "05c42320698cb6eb4052d68ef35a0f3b88291b9275f13e9a188b96119844c5b6",
277
- "affectsGlobalScope": true
278
- },
279
- "../../../../../../../../../node_modules/@types/node/assert.d.ts": {
280
- "version": "7860312f33f0cf2c93500787d02c4cc43ea3d0c080d4781095ac7715d5da3316",
281
- "signature": "7860312f33f0cf2c93500787d02c4cc43ea3d0c080d4781095ac7715d5da3316",
282
- "affectsGlobalScope": false
283
- },
284
- "../../../../../../../../../node_modules/@types/node/async_hooks.d.ts": {
285
- "version": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561",
286
- "signature": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561",
287
- "affectsGlobalScope": false
288
- },
289
- "../../../../../../../../../node_modules/@types/node/buffer.d.ts": {
290
- "version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878",
291
- "signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878",
292
- "affectsGlobalScope": false
293
- },
294
- "../../../../../../../../../node_modules/@types/node/events.d.ts": {
295
- "version": "3ad728027671c2c3c829e21803f8d7a15b29d808293644d50d928213280c072d",
296
- "signature": "3ad728027671c2c3c829e21803f8d7a15b29d808293644d50d928213280c072d",
297
- "affectsGlobalScope": false
298
- },
299
- "../../../../../../../../../node_modules/@types/node/stream.d.ts": {
300
- "version": "87a856ce45263344ebf69270ea1b0fc4eb13236a6194300bd5e99d1f022b0c6e",
301
- "signature": "87a856ce45263344ebf69270ea1b0fc4eb13236a6194300bd5e99d1f022b0c6e",
302
- "affectsGlobalScope": false
303
- },
304
- "../../../../../../../../../node_modules/@types/node/dns.d.ts": {
305
- "version": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c",
306
- "signature": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c",
307
- "affectsGlobalScope": false
308
- },
309
- "../../../../../../../../../node_modules/@types/node/net.d.ts": {
310
- "version": "358398fe4034395d85c87c319cca7a04001434b13dc68d067481ecb374385bfc",
311
- "signature": "358398fe4034395d85c87c319cca7a04001434b13dc68d067481ecb374385bfc",
312
- "affectsGlobalScope": false
313
- },
314
- "../../../../../../../../../node_modules/@types/node/child_process.d.ts": {
315
- "version": "b61c2ff5ee2ff5ec8fb37b64be2713a6255d746e070dc5b26dd390006c74bfb5",
316
- "signature": "b61c2ff5ee2ff5ec8fb37b64be2713a6255d746e070dc5b26dd390006c74bfb5",
317
- "affectsGlobalScope": false
318
- },
319
- "../../../../../../../../../node_modules/@types/node/cluster.d.ts": {
320
- "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a",
321
- "signature": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a",
322
- "affectsGlobalScope": false
323
- },
324
- "../../../../../../../../../node_modules/@types/node/console.d.ts": {
325
- "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d",
326
- "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d",
327
- "affectsGlobalScope": false
328
- },
329
- "../../../../../../../../../node_modules/@types/node/constants.d.ts": {
330
- "version": "0279383034fae92db8097d0a41350293553599cc9c3c917b60e2542d0dfcbd44",
331
- "signature": "0279383034fae92db8097d0a41350293553599cc9c3c917b60e2542d0dfcbd44",
332
- "affectsGlobalScope": false
333
- },
334
- "../../../../../../../../../node_modules/@types/node/crypto.d.ts": {
335
- "version": "3b6e751fc790e939efc4352e950b59be8c8e23c6e2bca2cf7359788b53f70485",
336
- "signature": "3b6e751fc790e939efc4352e950b59be8c8e23c6e2bca2cf7359788b53f70485",
337
- "affectsGlobalScope": false
338
- },
339
- "../../../../../../../../../node_modules/@types/node/dgram.d.ts": {
340
- "version": "387656ed4d6444031a0042c38701167e77ff5f4698ada32737082fbee76b1db0",
341
- "signature": "387656ed4d6444031a0042c38701167e77ff5f4698ada32737082fbee76b1db0",
342
- "affectsGlobalScope": false
343
- },
344
- "../../../../../../../../../node_modules/@types/node/domain.d.ts": {
345
- "version": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa",
346
- "signature": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa",
347
- "affectsGlobalScope": false
348
- },
349
- "../../../../../../../../../node_modules/@types/node/querystring.d.ts": {
350
- "version": "5b34786b5d59b4e627c76f1294a00b5e92260a31ca87b29d9b7cb9acd3ba1acc",
351
- "signature": "5b34786b5d59b4e627c76f1294a00b5e92260a31ca87b29d9b7cb9acd3ba1acc",
352
- "affectsGlobalScope": false
353
- },
354
- "../../../../../../../../../node_modules/@types/node/url.d.ts": {
355
- "version": "ae25aec5ed3795a3edfc356a7bc091554917ad0e0009a3cdffd7115ba22bd28d",
356
- "signature": "ae25aec5ed3795a3edfc356a7bc091554917ad0e0009a3cdffd7115ba22bd28d",
357
- "affectsGlobalScope": false
358
- },
359
- "../../../../../../../../../node_modules/@types/node/fs.d.ts": {
360
- "version": "91b0f655867e04d42d86347eb12b78316faed8bd2c75a7f8400e43e9e34e4ebd",
361
- "signature": "91b0f655867e04d42d86347eb12b78316faed8bd2c75a7f8400e43e9e34e4ebd",
362
- "affectsGlobalScope": false
363
- },
364
- "../../../../../../../../../node_modules/@types/node/http.d.ts": {
365
- "version": "4fd41897e21cc6def2735221fa7bd0986b44e44d224939a20f9e173ba2255646",
366
- "signature": "4fd41897e21cc6def2735221fa7bd0986b44e44d224939a20f9e173ba2255646",
367
- "affectsGlobalScope": false
368
- },
369
- "../../../../../../../../../node_modules/@types/node/tls.d.ts": {
370
- "version": "6ba512fc25cfb3db60007c7b1b4428ce497986ac442c370da879223c3c258872",
371
- "signature": "6ba512fc25cfb3db60007c7b1b4428ce497986ac442c370da879223c3c258872",
372
- "affectsGlobalScope": false
373
- },
374
- "../../../../../../../../../node_modules/@types/node/http2.d.ts": {
375
- "version": "272c8598c3a29a3fa3027bd0a645c5f49b3f7832dfcf8e47b7260843ec8a40f3",
376
- "signature": "272c8598c3a29a3fa3027bd0a645c5f49b3f7832dfcf8e47b7260843ec8a40f3",
377
- "affectsGlobalScope": false
378
- },
379
- "../../../../../../../../../node_modules/@types/node/https.d.ts": {
380
- "version": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6",
381
- "signature": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6",
382
- "affectsGlobalScope": false
383
- },
384
- "../../../../../../../../../node_modules/@types/node/inspector.d.ts": {
385
- "version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c",
386
- "signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c",
387
- "affectsGlobalScope": false
388
- },
389
- "../../../../../../../../../node_modules/@types/node/module.d.ts": {
390
- "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66",
391
- "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66",
392
- "affectsGlobalScope": false
393
- },
394
- "../../../../../../../../../node_modules/@types/node/os.d.ts": {
395
- "version": "d9bc6f1917c24d862a68d2633e4a32fd586bfe3e412e5d11fd07d8266b94ced5",
396
- "signature": "d9bc6f1917c24d862a68d2633e4a32fd586bfe3e412e5d11fd07d8266b94ced5",
397
- "affectsGlobalScope": false
398
- },
399
- "../../../../../../../../../node_modules/@types/node/path.d.ts": {
400
- "version": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36",
401
- "signature": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36",
402
- "affectsGlobalScope": false
403
- },
404
- "../../../../../../../../../node_modules/@types/node/perf_hooks.d.ts": {
405
- "version": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f",
406
- "signature": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f",
407
- "affectsGlobalScope": false
408
- },
409
- "../../../../../../../../../node_modules/@types/node/tty.d.ts": {
410
- "version": "df905913ad47e24b6cb41d33f0c1f500bf9c4befe4325413a7644c9eb1e7965c",
411
- "signature": "df905913ad47e24b6cb41d33f0c1f500bf9c4befe4325413a7644c9eb1e7965c",
412
- "affectsGlobalScope": false
413
- },
414
- "../../../../../../../../../node_modules/@types/node/process.d.ts": {
415
- "version": "0e0d58f5e90c0a270dac052b9c5ad8ccdfc8271118c2105b361063218d528d6e",
416
- "signature": "0e0d58f5e90c0a270dac052b9c5ad8ccdfc8271118c2105b361063218d528d6e",
417
- "affectsGlobalScope": true
418
- },
419
- "../../../../../../../../../node_modules/@types/node/punycode.d.ts": {
420
- "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
421
- "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
422
- "affectsGlobalScope": false
423
- },
424
- "../../../../../../../../../node_modules/@types/node/readline.d.ts": {
425
- "version": "e1045d32a6a59dbcbe0ed2edddc6568221acc299ac68d92284153e7c00b39d51",
426
- "signature": "e1045d32a6a59dbcbe0ed2edddc6568221acc299ac68d92284153e7c00b39d51",
427
- "affectsGlobalScope": false
428
- },
429
- "../../../../../../../../../node_modules/@types/node/vm.d.ts": {
430
- "version": "bf244a366e8ee68acda125761c6e337c8795b37eef05947d62f89b584de926b3",
431
- "signature": "bf244a366e8ee68acda125761c6e337c8795b37eef05947d62f89b584de926b3",
432
- "affectsGlobalScope": false
433
- },
434
- "../../../../../../../../../node_modules/@types/node/util.d.ts": {
435
- "version": "bf237fb2ca1ac62fde63e5f8178a9030e4d6b11987744007272f03a9deec6f76",
436
- "signature": "bf237fb2ca1ac62fde63e5f8178a9030e4d6b11987744007272f03a9deec6f76",
437
- "affectsGlobalScope": false
438
- },
439
- "../../../../../../../../../node_modules/@types/node/repl.d.ts": {
440
- "version": "30b9c2c0949e27506c7e751bd51749ca5ecb0d0a3ea854064039ffaa3707fad4",
441
- "signature": "30b9c2c0949e27506c7e751bd51749ca5ecb0d0a3ea854064039ffaa3707fad4",
442
- "affectsGlobalScope": false
443
- },
444
- "../../../../../../../../../node_modules/@types/node/string_decoder.d.ts": {
445
- "version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432",
446
- "signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432",
447
- "affectsGlobalScope": false
448
- },
449
- "../../../../../../../../../node_modules/@types/node/timers.d.ts": {
450
- "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
451
- "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
452
- "affectsGlobalScope": false
453
- },
454
- "../../../../../../../../../node_modules/@types/node/trace_events.d.ts": {
455
- "version": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
456
- "signature": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
457
- "affectsGlobalScope": false
458
- },
459
- "../../../../../../../../../node_modules/@types/node/v8.d.ts": {
460
- "version": "4407bd5f1d6f748590ba125195eb1d7a003c2de2f3b057456d3ac76a742d2561",
461
- "signature": "4407bd5f1d6f748590ba125195eb1d7a003c2de2f3b057456d3ac76a742d2561",
462
- "affectsGlobalScope": false
463
- },
464
- "../../../../../../../../../node_modules/@types/node/worker_threads.d.ts": {
465
- "version": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb",
466
- "signature": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb",
467
- "affectsGlobalScope": false
468
- },
469
- "../../../../../../../../../node_modules/@types/node/zlib.d.ts": {
470
- "version": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
471
- "signature": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
472
- "affectsGlobalScope": false
473
- },
474
- "../../../../../../../../../node_modules/@types/node/base.d.ts": {
475
- "version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce",
476
- "signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce",
477
- "affectsGlobalScope": false
478
- },
479
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts": {
480
- "version": "1ed55651f38540dba21f4a864bd89834ddb552446dce8c8a5f9dc0b44ce0b024",
481
- "signature": "1ed55651f38540dba21f4a864bd89834ddb552446dce8c8a5f9dc0b44ce0b024",
482
- "affectsGlobalScope": false
483
- },
484
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts": {
485
- "version": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c",
486
- "signature": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c",
487
- "affectsGlobalScope": false
488
- },
489
- "../../../../../../../../../node_modules/@types/node/ts3.2/globals.d.ts": {
490
- "version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1",
491
- "signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1",
492
- "affectsGlobalScope": true
493
- },
494
- "../../../../../../../../../node_modules/@types/node/ts3.2/index.d.ts": {
495
- "version": "7c7dabe6de2f88a1b4a4d9a15479c2a99b6f5864b434b9d960fc312ba9498c0a",
496
- "signature": "7c7dabe6de2f88a1b4a4d9a15479c2a99b6f5864b434b9d960fc312ba9498c0a",
497
- "affectsGlobalScope": false
498
- },
499
- "../../../../../../../../../node_modules/@types/puppeteer/errors.d.ts": {
500
- "version": "24074eb89fe21d5d7d8a5ed86e6c56939cf32d533f68bae213b0cdac74e03d3b",
501
- "signature": "24074eb89fe21d5d7d8a5ed86e6c56939cf32d533f68bae213b0cdac74e03d3b",
502
- "affectsGlobalScope": false
503
- },
504
- "../../../../../../../../../node_modules/@types/puppeteer/devicedescriptors.d.ts": {
505
- "version": "14a0185954b9d1130a9ab87c75011a97ac48c0253fd37a344a066c2c63fc59fb",
506
- "signature": "14a0185954b9d1130a9ab87c75011a97ac48c0253fd37a344a066c2c63fc59fb",
507
- "affectsGlobalScope": false
508
- },
509
- "../../../../../../../../../node_modules/@types/puppeteer/index.d.ts": {
510
- "version": "3cfa2d1cc8a66e3efdc0b60c7bb5089b1007c1c430c1db336627651213406b9a",
511
- "signature": "3cfa2d1cc8a66e3efdc0b60c7bb5089b1007c1c430c1db336627651213406b9a",
512
- "affectsGlobalScope": false
513
- },
514
- "../../../../../../../../../node_modules/@types/yauzl/index.d.ts": {
515
- "version": "3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26",
516
- "signature": "3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26",
517
- "affectsGlobalScope": false
518
- }
519
- },
520
- "options": {
521
- "composite": true,
522
- "tsBuildInfoFile": "./module-tsconfig.json.tsbuildinfo",
523
- "target": 99,
524
- "noEmitOnError": true,
525
- "noImplicitReturns": true,
526
- "sourceMap": true,
527
- "typeRoots": [
528
- "../../../../../../../../../node_modules/@types"
529
- ],
530
- "declaration": true,
531
- "allowJs": true,
532
- "module": 99,
533
- "baseUrl": "./",
534
- "strict": true,
535
- "checkJs": true,
536
- "forceConsistentCasingInFileNames": true,
537
- "lib": [
538
- "lib.esnext.d.ts",
539
- "lib.dom.d.ts"
540
- ],
541
- "noFallthroughCasesInSwitch": true,
542
- "rootDir": "../../../../../../fixtures/recompile_dep/test/module",
543
- "outDir": "./",
544
- "project": "./module-tsconfig.json",
545
- "configFilePath": "./module-tsconfig.json"
546
- },
547
- "referencedMap": {
548
- "../../../../../../../../../front_end/generated/protocol-proxy-api.d.ts": [
549
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
550
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
551
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
552
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
553
- ],
554
- "../../../../../../../../../front_end/generated/protocol.d.ts": [
555
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
556
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
557
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
558
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
559
- ],
560
- "../../../../../../../../../front_end/legacy/legacy-defs.d.ts": [
561
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
562
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
563
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
564
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
565
- ],
566
- "../../../../../../../../../node_modules/@types/chai/index.d.ts": [
567
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
568
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
569
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
570
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
571
- ],
572
- "../../../../../../../../../node_modules/@types/color-name/index.d.ts": [
573
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
574
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
575
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
576
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
577
- ],
578
- "../../../../../../../../../node_modules/@types/eslint-visitor-keys/index.d.ts": [
579
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
580
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
581
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
582
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
583
- ],
584
- "../../../../../../../../../node_modules/@types/filesystem/index.d.ts": [
585
- "../../../../../../../../../node_modules/@types/filewriter/index.d.ts",
586
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
587
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
588
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
589
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
590
- ],
591
- "../../../../../../../../../node_modules/@types/filewriter/index.d.ts": [
592
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
593
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
594
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
595
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
596
- ],
597
- "../../../../../../../../../node_modules/@types/json-schema/index.d.ts": [
598
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
599
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
600
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
601
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
602
- ],
603
- "../../../../../../../../../node_modules/@types/mime-types/index.d.ts": [
604
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
605
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
606
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
607
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
608
- ],
609
- "../../../../../../../../../node_modules/@types/mocha/index.d.ts": [
610
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
611
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
612
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
613
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
614
- ],
615
- "../../../../../../../../../node_modules/@types/node/assert.d.ts": [
616
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
617
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
618
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
619
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
620
- ],
621
- "../../../../../../../../../node_modules/@types/node/async_hooks.d.ts": [
622
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
623
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
624
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
625
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
626
- ],
627
- "../../../../../../../../../node_modules/@types/node/base.d.ts": [
628
- "../../../../../../../../../node_modules/@types/node/assert.d.ts",
629
- "../../../../../../../../../node_modules/@types/node/async_hooks.d.ts",
630
- "../../../../../../../../../node_modules/@types/node/buffer.d.ts",
631
- "../../../../../../../../../node_modules/@types/node/child_process.d.ts",
632
- "../../../../../../../../../node_modules/@types/node/cluster.d.ts",
633
- "../../../../../../../../../node_modules/@types/node/console.d.ts",
634
- "../../../../../../../../../node_modules/@types/node/constants.d.ts",
635
- "../../../../../../../../../node_modules/@types/node/crypto.d.ts",
636
- "../../../../../../../../../node_modules/@types/node/dgram.d.ts",
637
- "../../../../../../../../../node_modules/@types/node/dns.d.ts",
638
- "../../../../../../../../../node_modules/@types/node/domain.d.ts",
639
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
640
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
641
- "../../../../../../../../../node_modules/@types/node/globals.d.ts",
642
- "../../../../../../../../../node_modules/@types/node/http.d.ts",
643
- "../../../../../../../../../node_modules/@types/node/http2.d.ts",
644
- "../../../../../../../../../node_modules/@types/node/https.d.ts",
645
- "../../../../../../../../../node_modules/@types/node/inspector.d.ts",
646
- "../../../../../../../../../node_modules/@types/node/module.d.ts",
647
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
648
- "../../../../../../../../../node_modules/@types/node/os.d.ts",
649
- "../../../../../../../../../node_modules/@types/node/path.d.ts",
650
- "../../../../../../../../../node_modules/@types/node/perf_hooks.d.ts",
651
- "../../../../../../../../../node_modules/@types/node/process.d.ts",
652
- "../../../../../../../../../node_modules/@types/node/punycode.d.ts",
653
- "../../../../../../../../../node_modules/@types/node/querystring.d.ts",
654
- "../../../../../../../../../node_modules/@types/node/readline.d.ts",
655
- "../../../../../../../../../node_modules/@types/node/repl.d.ts",
656
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
657
- "../../../../../../../../../node_modules/@types/node/string_decoder.d.ts",
658
- "../../../../../../../../../node_modules/@types/node/timers.d.ts",
659
- "../../../../../../../../../node_modules/@types/node/tls.d.ts",
660
- "../../../../../../../../../node_modules/@types/node/trace_events.d.ts",
661
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
662
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
663
- "../../../../../../../../../node_modules/@types/node/tty.d.ts",
664
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
665
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
666
- "../../../../../../../../../node_modules/@types/node/v8.d.ts",
667
- "../../../../../../../../../node_modules/@types/node/vm.d.ts",
668
- "../../../../../../../../../node_modules/@types/node/worker_threads.d.ts",
669
- "../../../../../../../../../node_modules/@types/node/zlib.d.ts"
670
- ],
671
- "../../../../../../../../../node_modules/@types/node/buffer.d.ts": [
672
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
673
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
674
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
675
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
676
- ],
677
- "../../../../../../../../../node_modules/@types/node/child_process.d.ts": [
678
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
679
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
680
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
681
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
682
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
683
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
684
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
685
- ],
686
- "../../../../../../../../../node_modules/@types/node/cluster.d.ts": [
687
- "../../../../../../../../../node_modules/@types/node/child_process.d.ts",
688
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
689
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
690
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
691
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
692
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
693
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
694
- ],
695
- "../../../../../../../../../node_modules/@types/node/console.d.ts": [
696
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
697
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
698
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
699
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
700
- ],
701
- "../../../../../../../../../node_modules/@types/node/constants.d.ts": [
702
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
703
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
704
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
705
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
706
- ],
707
- "../../../../../../../../../node_modules/@types/node/crypto.d.ts": [
708
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
709
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
710
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
711
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
712
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
713
- ],
714
- "../../../../../../../../../node_modules/@types/node/dgram.d.ts": [
715
- "../../../../../../../../../node_modules/@types/node/dns.d.ts",
716
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
717
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
718
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
719
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
720
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
721
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
722
- ],
723
- "../../../../../../../../../node_modules/@types/node/dns.d.ts": [
724
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
725
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
726
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
727
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
728
- ],
729
- "../../../../../../../../../node_modules/@types/node/domain.d.ts": [
730
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
731
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
732
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
733
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
734
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
735
- ],
736
- "../../../../../../../../../node_modules/@types/node/events.d.ts": [
737
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
738
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
739
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
740
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
741
- ],
742
- "../../../../../../../../../node_modules/@types/node/fs.d.ts": [
743
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
744
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
745
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
746
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
747
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
748
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
749
- ],
750
- "../../../../../../../../../node_modules/@types/node/globals.d.ts": [
751
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
752
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
753
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
754
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
755
- ],
756
- "../../../../../../../../../node_modules/@types/node/http.d.ts": [
757
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
758
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
759
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
760
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
761
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
762
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
763
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
764
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
765
- ],
766
- "../../../../../../../../../node_modules/@types/node/http2.d.ts": [
767
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
768
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
769
- "../../../../../../../../../node_modules/@types/node/http.d.ts",
770
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
771
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
772
- "../../../../../../../../../node_modules/@types/node/tls.d.ts",
773
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
774
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
775
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
776
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
777
- ],
778
- "../../../../../../../../../node_modules/@types/node/https.d.ts": [
779
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
780
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
781
- "../../../../../../../../../node_modules/@types/node/http.d.ts",
782
- "../../../../../../../../../node_modules/@types/node/tls.d.ts",
783
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
784
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
785
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
786
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
787
- ],
788
- "../../../../../../../../../node_modules/@types/node/inspector.d.ts": [
789
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
790
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
791
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
792
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
793
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
794
- ],
795
- "../../../../../../../../../node_modules/@types/node/module.d.ts": [
796
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
797
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
798
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
799
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
800
- ],
801
- "../../../../../../../../../node_modules/@types/node/net.d.ts": [
802
- "../../../../../../../../../node_modules/@types/node/dns.d.ts",
803
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
804
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
805
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
806
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
807
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
808
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
809
- ],
810
- "../../../../../../../../../node_modules/@types/node/os.d.ts": [
811
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
812
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
813
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
814
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
815
- ],
816
- "../../../../../../../../../node_modules/@types/node/path.d.ts": [
817
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
818
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
819
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
820
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
821
- ],
822
- "../../../../../../../../../node_modules/@types/node/perf_hooks.d.ts": [
823
- "../../../../../../../../../node_modules/@types/node/async_hooks.d.ts",
824
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
825
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
826
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
827
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
828
- ],
829
- "../../../../../../../../../node_modules/@types/node/process.d.ts": [
830
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
831
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
832
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
833
- "../../../../../../../../../node_modules/@types/node/tty.d.ts",
834
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
835
- ],
836
- "../../../../../../../../../node_modules/@types/node/punycode.d.ts": [
837
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
838
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
839
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
840
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
841
- ],
842
- "../../../../../../../../../node_modules/@types/node/querystring.d.ts": [
843
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
844
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
845
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
846
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
847
- ],
848
- "../../../../../../../../../node_modules/@types/node/readline.d.ts": [
849
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
850
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
851
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
852
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
853
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
854
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
855
- ],
856
- "../../../../../../../../../node_modules/@types/node/repl.d.ts": [
857
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
858
- "../../../../../../../../../node_modules/@types/node/readline.d.ts",
859
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
860
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
861
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
862
- "../../../../../../../../../node_modules/@types/node/vm.d.ts"
863
- ],
864
- "../../../../../../../../../node_modules/@types/node/stream.d.ts": [
865
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
866
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
867
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
868
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
869
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
870
- ],
871
- "../../../../../../../../../node_modules/@types/node/string_decoder.d.ts": [
872
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
873
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
874
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
875
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
876
- ],
877
- "../../../../../../../../../node_modules/@types/node/timers.d.ts": [
878
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
879
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
880
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
881
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
882
- ],
883
- "../../../../../../../../../node_modules/@types/node/tls.d.ts": [
884
- "../../../../../../../../../node_modules/@types/node/crypto.d.ts",
885
- "../../../../../../../../../node_modules/@types/node/dns.d.ts",
886
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
887
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
888
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
889
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
890
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
891
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
892
- ],
893
- "../../../../../../../../../node_modules/@types/node/trace_events.d.ts": [
894
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
895
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
896
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
897
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
898
- ],
899
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts": [
900
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
901
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
902
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
903
- ],
904
- "../../../../../../../../../node_modules/@types/node/ts3.2/globals.d.ts": [
905
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
906
- "../../../../../../../../../node_modules/@types/node/globals.d.ts",
907
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
908
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
909
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
910
- ],
911
- "../../../../../../../../../node_modules/@types/node/ts3.2/index.d.ts": [
912
- "../../../../../../../../../node_modules/@types/node/base.d.ts",
913
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
914
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
915
- "../../../../../../../../../node_modules/@types/node/ts3.2/globals.d.ts",
916
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
917
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
918
- ],
919
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts": [
920
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
921
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
922
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
923
- ],
924
- "../../../../../../../../../node_modules/@types/node/tty.d.ts": [
925
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
926
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
927
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
928
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
929
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
930
- ],
931
- "../../../../../../../../../node_modules/@types/node/url.d.ts": [
932
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
933
- "../../../../../../../../../node_modules/@types/node/querystring.d.ts",
934
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
935
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
936
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
937
- ],
938
- "../../../../../../../../../node_modules/@types/node/util.d.ts": [
939
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
940
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
941
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts"
942
- ],
943
- "../../../../../../../../../node_modules/@types/node/v8.d.ts": [
944
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
945
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
946
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
947
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
948
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
949
- ],
950
- "../../../../../../../../../node_modules/@types/node/vm.d.ts": [
951
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
952
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
953
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
954
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
955
- ],
956
- "../../../../../../../../../node_modules/@types/node/worker_threads.d.ts": [
957
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
958
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
959
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
960
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
961
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
962
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
963
- "../../../../../../../../../node_modules/@types/node/vm.d.ts"
964
- ],
965
- "../../../../../../../../../node_modules/@types/node/zlib.d.ts": [
966
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
967
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
968
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
969
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
970
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
971
- ],
972
- "../../../../../../../../../node_modules/@types/puppeteer/devicedescriptors.d.ts": [
973
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
974
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
975
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
976
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
977
- ],
978
- "../../../../../../../../../node_modules/@types/puppeteer/errors.d.ts": [
979
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
980
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
981
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
982
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
983
- ],
984
- "../../../../../../../../../node_modules/@types/puppeteer/index.d.ts": [
985
- "../../../../../../../../../node_modules/@types/node/child_process.d.ts",
986
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
987
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
988
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
989
- "../../../../../../../../../node_modules/@types/node/ts3.2/index.d.ts",
990
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
991
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
992
- "../../../../../../../../../node_modules/@types/puppeteer/devicedescriptors.d.ts",
993
- "../../../../../../../../../node_modules/@types/puppeteer/errors.d.ts"
994
- ],
995
- "../../../../../../../../../node_modules/@types/yauzl/index.d.ts": [
996
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
997
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
998
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
999
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1000
- "../../../../../../../../../node_modules/@types/node/ts3.2/index.d.ts",
1001
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1002
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1003
- ],
1004
- "../../../../../../../../../node_modules/typescript/lib/lib.dom.d.ts": [
1005
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1006
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1007
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1008
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1009
- ],
1010
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
1011
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1012
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1013
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1014
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1015
- ],
1016
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.core.d.ts": [
1017
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1018
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1019
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1020
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1021
- ],
1022
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.d.ts": [
1023
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1024
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1025
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1026
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1027
- ],
1028
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
1029
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1030
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1031
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1032
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1033
- ],
1034
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
1035
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1036
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1037
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1038
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1039
- ],
1040
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
1041
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1042
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1043
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1044
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1045
- ],
1046
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
1047
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1048
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1049
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1050
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1051
- ],
1052
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
1053
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1054
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1055
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1056
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1057
- ],
1058
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
1059
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1060
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1061
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1062
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1063
- ],
1064
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
1065
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1066
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1067
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1068
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1069
- ],
1070
- "../../../../../../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
1071
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1072
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1073
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1074
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1075
- ],
1076
- "../../../../../../../../../node_modules/typescript/lib/lib.es2016.d.ts": [
1077
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1078
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1079
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1080
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1081
- ],
1082
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.d.ts": [
1083
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1084
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1085
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1086
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1087
- ],
1088
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
1089
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1090
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1091
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1092
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1093
- ],
1094
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.object.d.ts": [
1095
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1096
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1097
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1098
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1099
- ],
1100
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
1101
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1102
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1103
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1104
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1105
- ],
1106
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.string.d.ts": [
1107
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1108
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1109
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1110
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1111
- ],
1112
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
1113
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1114
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1115
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1116
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1117
- ],
1118
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
1119
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1120
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1121
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1122
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1123
- ],
1124
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
1125
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1126
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1127
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1128
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1129
- ],
1130
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.d.ts": [
1131
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1132
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1133
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1134
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1135
- ],
1136
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
1137
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1138
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1139
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1140
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1141
- ],
1142
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
1143
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1144
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1145
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1146
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1147
- ],
1148
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
1149
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1150
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1151
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1152
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1153
- ],
1154
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.array.d.ts": [
1155
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1156
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1157
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1158
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1159
- ],
1160
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.d.ts": [
1161
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1162
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1163
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1164
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1165
- ],
1166
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.object.d.ts": [
1167
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1168
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1169
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1170
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1171
- ],
1172
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.string.d.ts": [
1173
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1174
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1175
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1176
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1177
- ],
1178
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts": [
1179
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1180
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1181
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1182
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1183
- ],
1184
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
1185
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1186
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1187
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1188
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1189
- ],
1190
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.d.ts": [
1191
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1192
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1193
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1194
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1195
- ],
1196
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts": [
1197
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1198
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1199
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1200
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1201
- ],
1202
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.string.d.ts": [
1203
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1204
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1205
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1206
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1207
- ],
1208
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": [
1209
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1210
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1211
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1212
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1213
- ],
1214
- "../../../../../../../../../node_modules/typescript/lib/lib.es5.d.ts": [
1215
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1216
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1217
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1218
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1219
- ],
1220
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.d.ts": [
1221
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1222
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1223
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1224
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1225
- ],
1226
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
1227
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1228
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1229
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1230
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1231
- ],
1232
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.promise.d.ts": [
1233
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1234
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1235
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1236
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1237
- ],
1238
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.string.d.ts": [
1239
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1240
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1241
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1242
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1243
- ],
1244
- "../../../../../../fixtures/recompile_dep/test/module/exporting_test.ts": [
1245
- "../../../../../../../../../node_modules/@types/chai/index.d.ts",
1246
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1247
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1248
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1249
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
1250
- "../../front_end/module/module.d.ts"
1251
- ],
1252
- "../../front_end/module/exporting.d.ts": [
1253
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1254
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1255
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1256
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1257
- ],
1258
- "../../front_end/module/module.d.ts": [
1259
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1260
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1261
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1262
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
1263
- "../../front_end/module/exporting.d.ts"
1264
- ]
1265
- },
1266
- "exportedModulesMap": {
1267
- "../../../../../../../../../front_end/generated/protocol-proxy-api.d.ts": [
1268
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1269
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1270
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1271
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1272
- ],
1273
- "../../../../../../../../../front_end/generated/protocol.d.ts": [
1274
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1275
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1276
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1277
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1278
- ],
1279
- "../../../../../../../../../front_end/legacy/legacy-defs.d.ts": [
1280
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1281
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1282
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1283
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1284
- ],
1285
- "../../../../../../../../../node_modules/@types/chai/index.d.ts": [
1286
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1287
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1288
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1289
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1290
- ],
1291
- "../../../../../../../../../node_modules/@types/color-name/index.d.ts": [
1292
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1293
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1294
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1295
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1296
- ],
1297
- "../../../../../../../../../node_modules/@types/eslint-visitor-keys/index.d.ts": [
1298
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1299
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1300
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1301
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1302
- ],
1303
- "../../../../../../../../../node_modules/@types/filesystem/index.d.ts": [
1304
- "../../../../../../../../../node_modules/@types/filewriter/index.d.ts",
1305
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1306
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1307
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1308
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1309
- ],
1310
- "../../../../../../../../../node_modules/@types/filewriter/index.d.ts": [
1311
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1312
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1313
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1314
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1315
- ],
1316
- "../../../../../../../../../node_modules/@types/json-schema/index.d.ts": [
1317
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1318
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1319
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1320
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1321
- ],
1322
- "../../../../../../../../../node_modules/@types/mime-types/index.d.ts": [
1323
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1324
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1325
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1326
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1327
- ],
1328
- "../../../../../../../../../node_modules/@types/mocha/index.d.ts": [
1329
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1330
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1331
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1332
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1333
- ],
1334
- "../../../../../../../../../node_modules/@types/node/assert.d.ts": [
1335
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1336
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1337
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1338
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1339
- ],
1340
- "../../../../../../../../../node_modules/@types/node/async_hooks.d.ts": [
1341
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1342
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1343
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1344
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1345
- ],
1346
- "../../../../../../../../../node_modules/@types/node/base.d.ts": [
1347
- "../../../../../../../../../node_modules/@types/node/assert.d.ts",
1348
- "../../../../../../../../../node_modules/@types/node/async_hooks.d.ts",
1349
- "../../../../../../../../../node_modules/@types/node/buffer.d.ts",
1350
- "../../../../../../../../../node_modules/@types/node/child_process.d.ts",
1351
- "../../../../../../../../../node_modules/@types/node/cluster.d.ts",
1352
- "../../../../../../../../../node_modules/@types/node/console.d.ts",
1353
- "../../../../../../../../../node_modules/@types/node/constants.d.ts",
1354
- "../../../../../../../../../node_modules/@types/node/crypto.d.ts",
1355
- "../../../../../../../../../node_modules/@types/node/dgram.d.ts",
1356
- "../../../../../../../../../node_modules/@types/node/dns.d.ts",
1357
- "../../../../../../../../../node_modules/@types/node/domain.d.ts",
1358
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1359
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1360
- "../../../../../../../../../node_modules/@types/node/globals.d.ts",
1361
- "../../../../../../../../../node_modules/@types/node/http.d.ts",
1362
- "../../../../../../../../../node_modules/@types/node/http2.d.ts",
1363
- "../../../../../../../../../node_modules/@types/node/https.d.ts",
1364
- "../../../../../../../../../node_modules/@types/node/inspector.d.ts",
1365
- "../../../../../../../../../node_modules/@types/node/module.d.ts",
1366
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
1367
- "../../../../../../../../../node_modules/@types/node/os.d.ts",
1368
- "../../../../../../../../../node_modules/@types/node/path.d.ts",
1369
- "../../../../../../../../../node_modules/@types/node/perf_hooks.d.ts",
1370
- "../../../../../../../../../node_modules/@types/node/process.d.ts",
1371
- "../../../../../../../../../node_modules/@types/node/punycode.d.ts",
1372
- "../../../../../../../../../node_modules/@types/node/querystring.d.ts",
1373
- "../../../../../../../../../node_modules/@types/node/readline.d.ts",
1374
- "../../../../../../../../../node_modules/@types/node/repl.d.ts",
1375
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1376
- "../../../../../../../../../node_modules/@types/node/string_decoder.d.ts",
1377
- "../../../../../../../../../node_modules/@types/node/timers.d.ts",
1378
- "../../../../../../../../../node_modules/@types/node/tls.d.ts",
1379
- "../../../../../../../../../node_modules/@types/node/trace_events.d.ts",
1380
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1381
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1382
- "../../../../../../../../../node_modules/@types/node/tty.d.ts",
1383
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
1384
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
1385
- "../../../../../../../../../node_modules/@types/node/v8.d.ts",
1386
- "../../../../../../../../../node_modules/@types/node/vm.d.ts",
1387
- "../../../../../../../../../node_modules/@types/node/worker_threads.d.ts",
1388
- "../../../../../../../../../node_modules/@types/node/zlib.d.ts"
1389
- ],
1390
- "../../../../../../../../../node_modules/@types/node/buffer.d.ts": [
1391
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1392
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1393
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1394
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1395
- ],
1396
- "../../../../../../../../../node_modules/@types/node/child_process.d.ts": [
1397
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1398
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1399
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
1400
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1401
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1402
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1403
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1404
- ],
1405
- "../../../../../../../../../node_modules/@types/node/cluster.d.ts": [
1406
- "../../../../../../../../../node_modules/@types/node/child_process.d.ts",
1407
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1408
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1409
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
1410
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1411
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1412
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1413
- ],
1414
- "../../../../../../../../../node_modules/@types/node/console.d.ts": [
1415
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1416
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1417
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1418
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1419
- ],
1420
- "../../../../../../../../../node_modules/@types/node/constants.d.ts": [
1421
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1422
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1423
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1424
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1425
- ],
1426
- "../../../../../../../../../node_modules/@types/node/crypto.d.ts": [
1427
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1428
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1429
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1430
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1431
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1432
- ],
1433
- "../../../../../../../../../node_modules/@types/node/dgram.d.ts": [
1434
- "../../../../../../../../../node_modules/@types/node/dns.d.ts",
1435
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1436
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1437
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
1438
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1439
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1440
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1441
- ],
1442
- "../../../../../../../../../node_modules/@types/node/dns.d.ts": [
1443
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1444
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1445
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1446
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1447
- ],
1448
- "../../../../../../../../../node_modules/@types/node/domain.d.ts": [
1449
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1450
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1451
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1452
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1453
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1454
- ],
1455
- "../../../../../../../../../node_modules/@types/node/events.d.ts": [
1456
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1457
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1458
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1459
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1460
- ],
1461
- "../../../../../../../../../node_modules/@types/node/fs.d.ts": [
1462
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1463
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1464
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1465
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1466
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
1467
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1468
- ],
1469
- "../../../../../../../../../node_modules/@types/node/globals.d.ts": [
1470
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1471
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1472
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1473
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1474
- ],
1475
- "../../../../../../../../../node_modules/@types/node/http.d.ts": [
1476
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1477
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1478
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
1479
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1480
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1481
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1482
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
1483
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1484
- ],
1485
- "../../../../../../../../../node_modules/@types/node/http2.d.ts": [
1486
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1487
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1488
- "../../../../../../../../../node_modules/@types/node/http.d.ts",
1489
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
1490
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1491
- "../../../../../../../../../node_modules/@types/node/tls.d.ts",
1492
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1493
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1494
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
1495
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1496
- ],
1497
- "../../../../../../../../../node_modules/@types/node/https.d.ts": [
1498
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1499
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1500
- "../../../../../../../../../node_modules/@types/node/http.d.ts",
1501
- "../../../../../../../../../node_modules/@types/node/tls.d.ts",
1502
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1503
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1504
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
1505
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1506
- ],
1507
- "../../../../../../../../../node_modules/@types/node/inspector.d.ts": [
1508
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1509
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1510
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1511
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1512
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1513
- ],
1514
- "../../../../../../../../../node_modules/@types/node/module.d.ts": [
1515
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1516
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1517
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1518
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1519
- ],
1520
- "../../../../../../../../../node_modules/@types/node/net.d.ts": [
1521
- "../../../../../../../../../node_modules/@types/node/dns.d.ts",
1522
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1523
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1524
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1525
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1526
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1527
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1528
- ],
1529
- "../../../../../../../../../node_modules/@types/node/os.d.ts": [
1530
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1531
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1532
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1533
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1534
- ],
1535
- "../../../../../../../../../node_modules/@types/node/path.d.ts": [
1536
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1537
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1538
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1539
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1540
- ],
1541
- "../../../../../../../../../node_modules/@types/node/perf_hooks.d.ts": [
1542
- "../../../../../../../../../node_modules/@types/node/async_hooks.d.ts",
1543
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1544
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1545
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1546
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1547
- ],
1548
- "../../../../../../../../../node_modules/@types/node/process.d.ts": [
1549
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1550
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1551
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1552
- "../../../../../../../../../node_modules/@types/node/tty.d.ts",
1553
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1554
- ],
1555
- "../../../../../../../../../node_modules/@types/node/punycode.d.ts": [
1556
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1557
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1558
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1559
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1560
- ],
1561
- "../../../../../../../../../node_modules/@types/node/querystring.d.ts": [
1562
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1563
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1564
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1565
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1566
- ],
1567
- "../../../../../../../../../node_modules/@types/node/readline.d.ts": [
1568
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1569
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1570
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1571
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1572
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1573
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1574
- ],
1575
- "../../../../../../../../../node_modules/@types/node/repl.d.ts": [
1576
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1577
- "../../../../../../../../../node_modules/@types/node/readline.d.ts",
1578
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1579
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1580
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
1581
- "../../../../../../../../../node_modules/@types/node/vm.d.ts"
1582
- ],
1583
- "../../../../../../../../../node_modules/@types/node/stream.d.ts": [
1584
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1585
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1586
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1587
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1588
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1589
- ],
1590
- "../../../../../../../../../node_modules/@types/node/string_decoder.d.ts": [
1591
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1592
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1593
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1594
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1595
- ],
1596
- "../../../../../../../../../node_modules/@types/node/timers.d.ts": [
1597
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1598
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1599
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1600
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1601
- ],
1602
- "../../../../../../../../../node_modules/@types/node/tls.d.ts": [
1603
- "../../../../../../../../../node_modules/@types/node/crypto.d.ts",
1604
- "../../../../../../../../../node_modules/@types/node/dns.d.ts",
1605
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1606
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
1607
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1608
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1609
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1610
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1611
- ],
1612
- "../../../../../../../../../node_modules/@types/node/trace_events.d.ts": [
1613
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1614
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1615
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1616
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1617
- ],
1618
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts": [
1619
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1620
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1621
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1622
- ],
1623
- "../../../../../../../../../node_modules/@types/node/ts3.2/globals.d.ts": [
1624
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1625
- "../../../../../../../../../node_modules/@types/node/globals.d.ts",
1626
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1627
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1628
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1629
- ],
1630
- "../../../../../../../../../node_modules/@types/node/ts3.2/index.d.ts": [
1631
- "../../../../../../../../../node_modules/@types/node/base.d.ts",
1632
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1633
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1634
- "../../../../../../../../../node_modules/@types/node/ts3.2/globals.d.ts",
1635
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1636
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1637
- ],
1638
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts": [
1639
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1640
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1641
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1642
- ],
1643
- "../../../../../../../../../node_modules/@types/node/tty.d.ts": [
1644
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1645
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
1646
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1647
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1648
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1649
- ],
1650
- "../../../../../../../../../node_modules/@types/node/url.d.ts": [
1651
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1652
- "../../../../../../../../../node_modules/@types/node/querystring.d.ts",
1653
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1654
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1655
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1656
- ],
1657
- "../../../../../../../../../node_modules/@types/node/util.d.ts": [
1658
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1659
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1660
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts"
1661
- ],
1662
- "../../../../../../../../../node_modules/@types/node/v8.d.ts": [
1663
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1664
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1665
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1666
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1667
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1668
- ],
1669
- "../../../../../../../../../node_modules/@types/node/vm.d.ts": [
1670
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1671
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1672
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1673
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1674
- ],
1675
- "../../../../../../../../../node_modules/@types/node/worker_threads.d.ts": [
1676
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1677
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1678
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1679
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1680
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1681
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
1682
- "../../../../../../../../../node_modules/@types/node/vm.d.ts"
1683
- ],
1684
- "../../../../../../../../../node_modules/@types/node/zlib.d.ts": [
1685
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1686
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1687
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1688
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1689
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1690
- ],
1691
- "../../../../../../../../../node_modules/@types/puppeteer/devicedescriptors.d.ts": [
1692
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1693
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1694
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1695
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1696
- ],
1697
- "../../../../../../../../../node_modules/@types/puppeteer/errors.d.ts": [
1698
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1699
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1700
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1701
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1702
- ],
1703
- "../../../../../../../../../node_modules/@types/puppeteer/index.d.ts": [
1704
- "../../../../../../../../../node_modules/@types/node/child_process.d.ts",
1705
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1706
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1707
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1708
- "../../../../../../../../../node_modules/@types/node/ts3.2/index.d.ts",
1709
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1710
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
1711
- "../../../../../../../../../node_modules/@types/puppeteer/devicedescriptors.d.ts",
1712
- "../../../../../../../../../node_modules/@types/puppeteer/errors.d.ts"
1713
- ],
1714
- "../../../../../../../../../node_modules/@types/yauzl/index.d.ts": [
1715
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
1716
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1717
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
1718
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1719
- "../../../../../../../../../node_modules/@types/node/ts3.2/index.d.ts",
1720
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1721
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1722
- ],
1723
- "../../../../../../../../../node_modules/typescript/lib/lib.dom.d.ts": [
1724
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1725
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1726
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1727
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1728
- ],
1729
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
1730
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1731
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1732
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1733
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1734
- ],
1735
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.core.d.ts": [
1736
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1737
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1738
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1739
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1740
- ],
1741
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.d.ts": [
1742
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1743
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1744
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1745
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1746
- ],
1747
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
1748
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1749
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1750
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1751
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1752
- ],
1753
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
1754
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1755
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1756
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1757
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1758
- ],
1759
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
1760
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1761
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1762
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1763
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1764
- ],
1765
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
1766
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1767
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1768
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1769
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1770
- ],
1771
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
1772
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1773
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1774
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1775
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1776
- ],
1777
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
1778
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1779
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1780
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1781
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1782
- ],
1783
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
1784
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1785
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1786
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1787
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1788
- ],
1789
- "../../../../../../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
1790
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1791
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1792
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1793
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1794
- ],
1795
- "../../../../../../../../../node_modules/typescript/lib/lib.es2016.d.ts": [
1796
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1797
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1798
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1799
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1800
- ],
1801
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.d.ts": [
1802
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1803
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1804
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1805
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1806
- ],
1807
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
1808
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1809
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1810
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1811
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1812
- ],
1813
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.object.d.ts": [
1814
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1815
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1816
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1817
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1818
- ],
1819
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
1820
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1821
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1822
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1823
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1824
- ],
1825
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.string.d.ts": [
1826
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1827
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1828
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1829
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1830
- ],
1831
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
1832
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1833
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1834
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1835
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1836
- ],
1837
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
1838
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1839
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1840
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1841
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1842
- ],
1843
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
1844
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1845
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1846
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1847
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1848
- ],
1849
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.d.ts": [
1850
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1851
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1852
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1853
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1854
- ],
1855
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
1856
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1857
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1858
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1859
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1860
- ],
1861
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
1862
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1863
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1864
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1865
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1866
- ],
1867
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
1868
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1869
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1870
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1871
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1872
- ],
1873
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.array.d.ts": [
1874
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1875
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1876
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1877
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1878
- ],
1879
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.d.ts": [
1880
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1881
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1882
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1883
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1884
- ],
1885
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.object.d.ts": [
1886
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1887
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1888
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1889
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1890
- ],
1891
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.string.d.ts": [
1892
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1893
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1894
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1895
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1896
- ],
1897
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts": [
1898
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1899
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1900
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1901
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1902
- ],
1903
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
1904
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1905
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1906
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1907
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1908
- ],
1909
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.d.ts": [
1910
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1911
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1912
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1913
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1914
- ],
1915
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts": [
1916
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1917
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1918
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1919
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1920
- ],
1921
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.string.d.ts": [
1922
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1923
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1924
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1925
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1926
- ],
1927
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": [
1928
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1929
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1930
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1931
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1932
- ],
1933
- "../../../../../../../../../node_modules/typescript/lib/lib.es5.d.ts": [
1934
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1935
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1936
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1937
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1938
- ],
1939
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.d.ts": [
1940
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1941
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1942
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1943
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1944
- ],
1945
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
1946
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1947
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1948
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1949
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1950
- ],
1951
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.promise.d.ts": [
1952
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1953
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1954
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1955
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1956
- ],
1957
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.string.d.ts": [
1958
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1959
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1960
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1961
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1962
- ],
1963
- "../../front_end/module/exporting.d.ts": [
1964
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1965
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1966
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1967
- "../../../../../../../../../node_modules/@types/node/util.d.ts"
1968
- ],
1969
- "../../front_end/module/module.d.ts": [
1970
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
1971
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
1972
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
1973
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
1974
- "../../front_end/module/exporting.d.ts"
1975
- ]
1976
- },
1977
- "semanticDiagnosticsPerFile": [
1978
- "../../../../../../../../../front_end/generated/protocol-proxy-api.d.ts",
1979
- "../../../../../../../../../front_end/generated/protocol.d.ts",
1980
- "../../../../../../../../../front_end/legacy/legacy-defs.d.ts",
1981
- "../../../../../../../../../node_modules/@types/chai/index.d.ts",
1982
- "../../../../../../../../../node_modules/@types/color-name/index.d.ts",
1983
- "../../../../../../../../../node_modules/@types/eslint-visitor-keys/index.d.ts",
1984
- "../../../../../../../../../node_modules/@types/filesystem/index.d.ts",
1985
- "../../../../../../../../../node_modules/@types/filewriter/index.d.ts",
1986
- "../../../../../../../../../node_modules/@types/json-schema/index.d.ts",
1987
- "../../../../../../../../../node_modules/@types/mime-types/index.d.ts",
1988
- "../../../../../../../../../node_modules/@types/mocha/index.d.ts",
1989
- "../../../../../../../../../node_modules/@types/node/assert.d.ts",
1990
- "../../../../../../../../../node_modules/@types/node/async_hooks.d.ts",
1991
- "../../../../../../../../../node_modules/@types/node/base.d.ts",
1992
- "../../../../../../../../../node_modules/@types/node/buffer.d.ts",
1993
- "../../../../../../../../../node_modules/@types/node/child_process.d.ts",
1994
- "../../../../../../../../../node_modules/@types/node/cluster.d.ts",
1995
- "../../../../../../../../../node_modules/@types/node/console.d.ts",
1996
- "../../../../../../../../../node_modules/@types/node/constants.d.ts",
1997
- "../../../../../../../../../node_modules/@types/node/crypto.d.ts",
1998
- "../../../../../../../../../node_modules/@types/node/dgram.d.ts",
1999
- "../../../../../../../../../node_modules/@types/node/dns.d.ts",
2000
- "../../../../../../../../../node_modules/@types/node/domain.d.ts",
2001
- "../../../../../../../../../node_modules/@types/node/events.d.ts",
2002
- "../../../../../../../../../node_modules/@types/node/fs.d.ts",
2003
- "../../../../../../../../../node_modules/@types/node/globals.d.ts",
2004
- "../../../../../../../../../node_modules/@types/node/http.d.ts",
2005
- "../../../../../../../../../node_modules/@types/node/http2.d.ts",
2006
- "../../../../../../../../../node_modules/@types/node/https.d.ts",
2007
- "../../../../../../../../../node_modules/@types/node/inspector.d.ts",
2008
- "../../../../../../../../../node_modules/@types/node/module.d.ts",
2009
- "../../../../../../../../../node_modules/@types/node/net.d.ts",
2010
- "../../../../../../../../../node_modules/@types/node/os.d.ts",
2011
- "../../../../../../../../../node_modules/@types/node/path.d.ts",
2012
- "../../../../../../../../../node_modules/@types/node/perf_hooks.d.ts",
2013
- "../../../../../../../../../node_modules/@types/node/process.d.ts",
2014
- "../../../../../../../../../node_modules/@types/node/punycode.d.ts",
2015
- "../../../../../../../../../node_modules/@types/node/querystring.d.ts",
2016
- "../../../../../../../../../node_modules/@types/node/readline.d.ts",
2017
- "../../../../../../../../../node_modules/@types/node/repl.d.ts",
2018
- "../../../../../../../../../node_modules/@types/node/stream.d.ts",
2019
- "../../../../../../../../../node_modules/@types/node/string_decoder.d.ts",
2020
- "../../../../../../../../../node_modules/@types/node/timers.d.ts",
2021
- "../../../../../../../../../node_modules/@types/node/tls.d.ts",
2022
- "../../../../../../../../../node_modules/@types/node/trace_events.d.ts",
2023
- "../../../../../../../../../node_modules/@types/node/ts3.2/fs.d.ts",
2024
- "../../../../../../../../../node_modules/@types/node/ts3.2/globals.d.ts",
2025
- "../../../../../../../../../node_modules/@types/node/ts3.2/index.d.ts",
2026
- "../../../../../../../../../node_modules/@types/node/ts3.2/util.d.ts",
2027
- "../../../../../../../../../node_modules/@types/node/tty.d.ts",
2028
- "../../../../../../../../../node_modules/@types/node/url.d.ts",
2029
- "../../../../../../../../../node_modules/@types/node/util.d.ts",
2030
- "../../../../../../../../../node_modules/@types/node/v8.d.ts",
2031
- "../../../../../../../../../node_modules/@types/node/vm.d.ts",
2032
- "../../../../../../../../../node_modules/@types/node/worker_threads.d.ts",
2033
- "../../../../../../../../../node_modules/@types/node/zlib.d.ts",
2034
- "../../../../../../../../../node_modules/@types/puppeteer/devicedescriptors.d.ts",
2035
- "../../../../../../../../../node_modules/@types/puppeteer/errors.d.ts",
2036
- "../../../../../../../../../node_modules/@types/puppeteer/index.d.ts",
2037
- "../../../../../../../../../node_modules/@types/yauzl/index.d.ts",
2038
- "../../../../../../../../../node_modules/typescript/lib/lib.dom.d.ts",
2039
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
2040
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.core.d.ts",
2041
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.d.ts",
2042
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts",
2043
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts",
2044
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts",
2045
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts",
2046
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts",
2047
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts",
2048
- "../../../../../../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
2049
- "../../../../../../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts",
2050
- "../../../../../../../../../node_modules/typescript/lib/lib.es2016.d.ts",
2051
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.d.ts",
2052
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts",
2053
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.object.d.ts",
2054
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts",
2055
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.string.d.ts",
2056
- "../../../../../../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts",
2057
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts",
2058
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts",
2059
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.d.ts",
2060
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts",
2061
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts",
2062
- "../../../../../../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts",
2063
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.array.d.ts",
2064
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.d.ts",
2065
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.object.d.ts",
2066
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.string.d.ts",
2067
- "../../../../../../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts",
2068
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts",
2069
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.d.ts",
2070
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts",
2071
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.string.d.ts",
2072
- "../../../../../../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts",
2073
- "../../../../../../../../../node_modules/typescript/lib/lib.es5.d.ts",
2074
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.d.ts",
2075
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts",
2076
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.promise.d.ts",
2077
- "../../../../../../../../../node_modules/typescript/lib/lib.esnext.string.d.ts",
2078
- "../../../../../../fixtures/recompile_dep/test/module/exporting_test.ts",
2079
- "../../front_end/module/exporting.d.ts",
2080
- "../../front_end/module/module.d.ts"
2081
- ]
2082
- },
2083
- "version": "3.9.2-insiders.20200509"
2084
- }