@navios/commander-tui 1.0.0

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 (348) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/README.md +275 -0
  3. package/coverage/__tests__/utils/factories.ts.html +1147 -0
  4. package/coverage/__tests__/utils/index.html +131 -0
  5. package/coverage/__tests__/utils/render-utils.tsx.html +202 -0
  6. package/coverage/base.css +224 -0
  7. package/coverage/block-navigation.js +87 -0
  8. package/coverage/clover.xml +959 -0
  9. package/coverage/components/filter/filter_bar.tsx.html +322 -0
  10. package/coverage/components/filter/index.html +116 -0
  11. package/coverage/components/log/index.html +131 -0
  12. package/coverage/components/log/index.ts.html +88 -0
  13. package/coverage/components/log/log_message.tsx.html +391 -0
  14. package/coverage/components/prompt/index.html +116 -0
  15. package/coverage/components/prompt/prompt_renderer.tsx.html +1123 -0
  16. package/coverage/components/screen/index.html +131 -0
  17. package/coverage/components/screen/loading_message.tsx.html +217 -0
  18. package/coverage/components/screen/progress_message.tsx.html +265 -0
  19. package/coverage/components/sidebar/index.html +146 -0
  20. package/coverage/components/sidebar/sidebar.tsx.html +391 -0
  21. package/coverage/components/sidebar/sidebar_item.tsx.html +235 -0
  22. package/coverage/components/sidebar/sidebar_separator.tsx.html +124 -0
  23. package/coverage/context/index.html +131 -0
  24. package/coverage/context/index.ts.html +88 -0
  25. package/coverage/context/logger_context.tsx.html +412 -0
  26. package/coverage/coverage-final.json +55 -0
  27. package/coverage/favicon.png +0 -0
  28. package/coverage/filter/filter_engine.ts.html +424 -0
  29. package/coverage/filter/index.html +116 -0
  30. package/coverage/hooks/index.html +131 -0
  31. package/coverage/hooks/index.ts.html +88 -0
  32. package/coverage/hooks/use_theme.ts.html +121 -0
  33. package/coverage/index.html +356 -0
  34. package/coverage/keyboard/index.html +116 -0
  35. package/coverage/keyboard/keyboard_manager.ts.html +784 -0
  36. package/coverage/prettify.css +1 -0
  37. package/coverage/prettify.js +2 -0
  38. package/coverage/schemas/index.html +161 -0
  39. package/coverage/schemas/index.ts.html +94 -0
  40. package/coverage/schemas/logger-options.ts.html +124 -0
  41. package/coverage/schemas/prompt-options.ts.html +112 -0
  42. package/coverage/schemas/screen-options.ts.html +127 -0
  43. package/coverage/services/index.html +146 -0
  44. package/coverage/services/logger.ts.html +1192 -0
  45. package/coverage/services/prompt.ts.html +568 -0
  46. package/coverage/services/screen.ts.html +1804 -0
  47. package/coverage/sort-arrow-sprite.png +0 -0
  48. package/coverage/sorter.js +210 -0
  49. package/coverage/themes/dark.ts.html +604 -0
  50. package/coverage/themes/high-contrast.ts.html +619 -0
  51. package/coverage/themes/index.html +176 -0
  52. package/coverage/themes/index.ts.html +97 -0
  53. package/coverage/themes/light.ts.html +601 -0
  54. package/coverage/themes/utils.ts.html +334 -0
  55. package/coverage/tokens/index.html +161 -0
  56. package/coverage/tokens/index.ts.html +94 -0
  57. package/coverage/tokens/logger.ts.html +115 -0
  58. package/coverage/tokens/prompt.ts.html +115 -0
  59. package/coverage/tokens/screen.ts.html +115 -0
  60. package/coverage/types/file.types.ts.html +265 -0
  61. package/coverage/types/filter.types.ts.html +238 -0
  62. package/coverage/types/index.html +236 -0
  63. package/coverage/types/index.ts.html +151 -0
  64. package/coverage/types/keyboard.types.ts.html +364 -0
  65. package/coverage/types/log.types.ts.html +268 -0
  66. package/coverage/types/message.types.ts.html +445 -0
  67. package/coverage/types/prompt.types.ts.html +403 -0
  68. package/coverage/types/screen.types.ts.html +451 -0
  69. package/coverage/types/theme.types.ts.html +841 -0
  70. package/coverage/utils/colors/file-colors.ts.html +112 -0
  71. package/coverage/utils/colors/helpers.ts.html +235 -0
  72. package/coverage/utils/colors/index.html +221 -0
  73. package/coverage/utils/colors/index.ts.html +145 -0
  74. package/coverage/utils/colors/log-colors.ts.html +253 -0
  75. package/coverage/utils/colors/progress-colors.ts.html +160 -0
  76. package/coverage/utils/colors/prompt-colors.ts.html +175 -0
  77. package/coverage/utils/colors/sidebar-colors.ts.html +241 -0
  78. package/coverage/utils/colors/table-colors.ts.html +118 -0
  79. package/coverage/utils/filetype.ts.html +277 -0
  80. package/coverage/utils/format.ts.html +241 -0
  81. package/coverage/utils/index.html +161 -0
  82. package/coverage/utils/index.ts.html +118 -0
  83. package/coverage/utils/stdout-printer.ts.html +523 -0
  84. package/dist/src/components/file/file_log.d.ts +35 -0
  85. package/dist/src/components/file/file_log.d.ts.map +1 -0
  86. package/dist/src/components/file/index.d.ts +2 -0
  87. package/dist/src/components/file/index.d.ts.map +1 -0
  88. package/dist/src/components/filter/filter_bar.d.ts +10 -0
  89. package/dist/src/components/filter/filter_bar.d.ts.map +1 -0
  90. package/dist/src/components/filter/index.d.ts +2 -0
  91. package/dist/src/components/filter/index.d.ts.map +1 -0
  92. package/dist/src/components/help/help_overlay.d.ts +10 -0
  93. package/dist/src/components/help/help_overlay.d.ts.map +1 -0
  94. package/dist/src/components/help/index.d.ts +2 -0
  95. package/dist/src/components/help/index.d.ts.map +1 -0
  96. package/dist/src/components/index.d.ts +27 -0
  97. package/dist/src/components/index.d.ts.map +1 -0
  98. package/dist/src/components/log/debug_log.d.ts +3 -0
  99. package/dist/src/components/log/debug_log.d.ts.map +1 -0
  100. package/dist/src/components/log/error_log.d.ts +3 -0
  101. package/dist/src/components/log/error_log.d.ts.map +1 -0
  102. package/dist/src/components/log/fatal_log.d.ts +3 -0
  103. package/dist/src/components/log/fatal_log.d.ts.map +1 -0
  104. package/dist/src/components/log/index.d.ts +9 -0
  105. package/dist/src/components/log/index.d.ts.map +1 -0
  106. package/dist/src/components/log/info_log.d.ts +3 -0
  107. package/dist/src/components/log/info_log.d.ts.map +1 -0
  108. package/dist/src/components/log/log_message.d.ts +33 -0
  109. package/dist/src/components/log/log_message.d.ts.map +1 -0
  110. package/dist/src/components/log/success_log.d.ts +3 -0
  111. package/dist/src/components/log/success_log.d.ts.map +1 -0
  112. package/dist/src/components/log/trace_log.d.ts +3 -0
  113. package/dist/src/components/log/trace_log.d.ts.map +1 -0
  114. package/dist/src/components/log/warning_log.d.ts +3 -0
  115. package/dist/src/components/log/warning_log.d.ts.map +1 -0
  116. package/dist/src/components/prompt/index.d.ts +3 -0
  117. package/dist/src/components/prompt/index.d.ts.map +1 -0
  118. package/dist/src/components/prompt/prompt_renderer.d.ts +6 -0
  119. package/dist/src/components/prompt/prompt_renderer.d.ts.map +1 -0
  120. package/dist/src/components/screen/group_renderer.d.ts +19 -0
  121. package/dist/src/components/screen/group_renderer.d.ts.map +1 -0
  122. package/dist/src/components/screen/index.d.ts +13 -0
  123. package/dist/src/components/screen/index.d.ts.map +1 -0
  124. package/dist/src/components/screen/loading_message.d.ts +6 -0
  125. package/dist/src/components/screen/loading_message.d.ts.map +1 -0
  126. package/dist/src/components/screen/message_renderer.d.ts +8 -0
  127. package/dist/src/components/screen/message_renderer.d.ts.map +1 -0
  128. package/dist/src/components/screen/progress_message.d.ts +8 -0
  129. package/dist/src/components/screen/progress_message.d.ts.map +1 -0
  130. package/dist/src/components/screen/screen_bridge.d.ts +20 -0
  131. package/dist/src/components/screen/screen_bridge.d.ts.map +1 -0
  132. package/dist/src/components/screen/table_message.d.ts +6 -0
  133. package/dist/src/components/screen/table_message.d.ts.map +1 -0
  134. package/dist/src/components/screen_manager_bridge.d.ts +11 -0
  135. package/dist/src/components/screen_manager_bridge.d.ts.map +1 -0
  136. package/dist/src/components/sidebar/index.d.ts +6 -0
  137. package/dist/src/components/sidebar/index.d.ts.map +1 -0
  138. package/dist/src/components/sidebar/sidebar.d.ts +18 -0
  139. package/dist/src/components/sidebar/sidebar.d.ts.map +1 -0
  140. package/dist/src/components/sidebar/sidebar_item.d.ts +14 -0
  141. package/dist/src/components/sidebar/sidebar_item.d.ts.map +1 -0
  142. package/dist/src/components/sidebar/sidebar_separator.d.ts +2 -0
  143. package/dist/src/components/sidebar/sidebar_separator.d.ts.map +1 -0
  144. package/dist/src/context/logger_context.d.ts +60 -0
  145. package/dist/src/context/logger_context.d.ts.map +1 -0
  146. package/dist/src/filter/filter_engine.d.ts +20 -0
  147. package/dist/src/filter/filter_engine.d.ts.map +1 -0
  148. package/dist/src/filter/index.d.ts +4 -0
  149. package/dist/src/filter/index.d.ts.map +1 -0
  150. package/dist/src/hooks/index.d.ts +2 -0
  151. package/dist/src/hooks/index.d.ts.map +1 -0
  152. package/dist/src/hooks/use_theme.d.ts +7 -0
  153. package/dist/src/hooks/use_theme.d.ts.map +1 -0
  154. package/dist/src/index.d.ts +88 -0
  155. package/dist/src/index.d.ts.map +1 -0
  156. package/dist/src/keyboard/create_bindings.d.ts +31 -0
  157. package/dist/src/keyboard/create_bindings.d.ts.map +1 -0
  158. package/dist/src/keyboard/index.d.ts +12 -0
  159. package/dist/src/keyboard/index.d.ts.map +1 -0
  160. package/dist/src/keyboard/keyboard_manager.d.ts +69 -0
  161. package/dist/src/keyboard/keyboard_manager.d.ts.map +1 -0
  162. package/dist/src/services/index.d.ts +5 -0
  163. package/dist/src/services/index.d.ts.map +1 -0
  164. package/dist/src/services/logger.d.ts +61 -0
  165. package/dist/src/services/logger.d.ts.map +1 -0
  166. package/dist/src/services/prompt.d.ts +37 -0
  167. package/dist/src/services/prompt.d.ts.map +1 -0
  168. package/dist/src/services/screen.d.ts +165 -0
  169. package/dist/src/services/screen.d.ts.map +1 -0
  170. package/dist/src/services/screen_manager.d.ts +124 -0
  171. package/dist/src/services/screen_manager.d.ts.map +1 -0
  172. package/dist/src/themes/dark.d.ts +7 -0
  173. package/dist/src/themes/dark.d.ts.map +1 -0
  174. package/dist/src/themes/high-contrast.d.ts +7 -0
  175. package/dist/src/themes/high-contrast.d.ts.map +1 -0
  176. package/dist/src/themes/index.d.ts +18 -0
  177. package/dist/src/themes/index.d.ts.map +1 -0
  178. package/dist/src/themes/light.d.ts +6 -0
  179. package/dist/src/themes/light.d.ts.map +1 -0
  180. package/dist/src/themes/utils.d.ts +22 -0
  181. package/dist/src/themes/utils.d.ts.map +1 -0
  182. package/dist/src/types/file.types.d.ts +40 -0
  183. package/dist/src/types/file.types.d.ts.map +1 -0
  184. package/dist/src/types/filter.types.d.ts +31 -0
  185. package/dist/src/types/filter.types.d.ts.map +1 -0
  186. package/dist/src/types/index.d.ts +81 -0
  187. package/dist/src/types/index.d.ts.map +1 -0
  188. package/dist/src/types/keyboard.types.d.ts +83 -0
  189. package/dist/src/types/keyboard.types.d.ts.map +1 -0
  190. package/dist/src/types/log.types.d.ts +32 -0
  191. package/dist/src/types/log.types.d.ts.map +1 -0
  192. package/dist/src/types/message.types.d.ts +91 -0
  193. package/dist/src/types/message.types.d.ts.map +1 -0
  194. package/dist/src/types/prompt.types.d.ts +89 -0
  195. package/dist/src/types/prompt.types.d.ts.map +1 -0
  196. package/dist/src/types/screen.types.d.ts +85 -0
  197. package/dist/src/types/screen.types.d.ts.map +1 -0
  198. package/dist/src/types/theme.types.d.ts +216 -0
  199. package/dist/src/types/theme.types.d.ts.map +1 -0
  200. package/dist/src/utils/colors/file-colors.d.ts +10 -0
  201. package/dist/src/utils/colors/file-colors.d.ts.map +1 -0
  202. package/dist/src/utils/colors/helpers.d.ts +29 -0
  203. package/dist/src/utils/colors/helpers.d.ts.map +1 -0
  204. package/dist/src/utils/colors/index.d.ts +13 -0
  205. package/dist/src/utils/colors/index.d.ts.map +1 -0
  206. package/dist/src/utils/colors/log-colors.d.ts +15 -0
  207. package/dist/src/utils/colors/log-colors.d.ts.map +1 -0
  208. package/dist/src/utils/colors/progress-colors.d.ts +25 -0
  209. package/dist/src/utils/colors/progress-colors.d.ts.map +1 -0
  210. package/dist/src/utils/colors/prompt-colors.d.ts +22 -0
  211. package/dist/src/utils/colors/prompt-colors.d.ts.map +1 -0
  212. package/dist/src/utils/colors/sidebar-colors.d.ts +50 -0
  213. package/dist/src/utils/colors/sidebar-colors.d.ts.map +1 -0
  214. package/dist/src/utils/colors/table-colors.d.ts +12 -0
  215. package/dist/src/utils/colors/table-colors.d.ts.map +1 -0
  216. package/dist/src/utils/filetype.d.ts +19 -0
  217. package/dist/src/utils/filetype.d.ts.map +1 -0
  218. package/dist/src/utils/format.d.ts +9 -0
  219. package/dist/src/utils/format.d.ts.map +1 -0
  220. package/dist/src/utils/index.d.ts +20 -0
  221. package/dist/src/utils/index.d.ts.map +1 -0
  222. package/dist/src/utils/stdout-printer.d.ts +10 -0
  223. package/dist/src/utils/stdout-printer.d.ts.map +1 -0
  224. package/dist/tsconfig.lib.tsbuildinfo +1 -0
  225. package/dist/tsconfig.tsbuildinfo +1 -0
  226. package/dist/tsdown.config.d.mts +5 -0
  227. package/dist/tsdown.config.d.mts.map +1 -0
  228. package/dist/vitest.config.d.mts +3 -0
  229. package/dist/vitest.config.d.mts.map +1 -0
  230. package/lib/index.cjs +6349 -0
  231. package/lib/index.cjs.map +1 -0
  232. package/lib/index.d.cts +1720 -0
  233. package/lib/index.d.cts.map +1 -0
  234. package/lib/index.d.mts +1720 -0
  235. package/lib/index.d.mts.map +1 -0
  236. package/lib/index.mjs +6264 -0
  237. package/lib/index.mjs.map +1 -0
  238. package/lib/screen_manager_bridge-BpDgVu3e.cjs +3357 -0
  239. package/lib/screen_manager_bridge-BpDgVu3e.cjs.map +1 -0
  240. package/lib/screen_manager_bridge-CkV7637i.cjs +3 -0
  241. package/lib/screen_manager_bridge-DN2J6_k1.mjs +3 -0
  242. package/lib/screen_manager_bridge-Dfg4QUrl.mjs +3034 -0
  243. package/lib/screen_manager_bridge-Dfg4QUrl.mjs.map +1 -0
  244. package/package.json +43 -0
  245. package/project.json +60 -0
  246. package/src/__tests__/components/__snapshots__/filter_bar.spec.tsx.snap +2245 -0
  247. package/src/__tests__/components/__snapshots__/loading_message.spec.tsx.snap +1382 -0
  248. package/src/__tests__/components/__snapshots__/log_message.spec.tsx.snap +3169 -0
  249. package/src/__tests__/components/__snapshots__/progress_message.spec.tsx.snap +1743 -0
  250. package/src/__tests__/components/__snapshots__/prompt_renderer.spec.tsx.snap +3135 -0
  251. package/src/__tests__/components/__snapshots__/sidebar.spec.tsx.snap +2617 -0
  252. package/src/__tests__/components/filter_bar.spec.tsx +190 -0
  253. package/src/__tests__/components/loading_message.spec.tsx +110 -0
  254. package/src/__tests__/components/log_message.spec.tsx +166 -0
  255. package/src/__tests__/components/progress_message.spec.tsx +147 -0
  256. package/src/__tests__/components/prompt_renderer.spec.tsx +274 -0
  257. package/src/__tests__/components/sidebar.spec.tsx +305 -0
  258. package/src/__tests__/filter/filter_engine.spec.ts +325 -0
  259. package/src/__tests__/keyboard/keyboard_manager.spec.ts +557 -0
  260. package/src/__tests__/mocks/scm-mock.ts +5 -0
  261. package/src/__tests__/services/logger.spec.ts +630 -0
  262. package/src/__tests__/services/prompt.spec.ts +411 -0
  263. package/src/__tests__/services/screen.spec.ts +721 -0
  264. package/src/__tests__/setup.ts +43 -0
  265. package/src/__tests__/utils/factories.ts +354 -0
  266. package/src/__tests__/utils/filetype.spec.ts +195 -0
  267. package/src/__tests__/utils/format.spec.ts +178 -0
  268. package/src/__tests__/utils/render-utils.tsx +39 -0
  269. package/src/__tests__/utils/test-container.ts +48 -0
  270. package/src/components/file/file_log.tsx +241 -0
  271. package/src/components/file/index.ts +1 -0
  272. package/src/components/filter/filter_bar.tsx +79 -0
  273. package/src/components/filter/index.ts +1 -0
  274. package/src/components/help/help_overlay.tsx +100 -0
  275. package/src/components/help/index.ts +1 -0
  276. package/src/components/index.ts +15 -0
  277. package/src/components/log/index.ts +1 -0
  278. package/src/components/log/log_message.tsx +102 -0
  279. package/src/components/prompt/index.ts +2 -0
  280. package/src/components/prompt/prompt_renderer.tsx +346 -0
  281. package/src/components/screen/group_renderer.tsx +64 -0
  282. package/src/components/screen/index.ts +6 -0
  283. package/src/components/screen/loading_message.tsx +44 -0
  284. package/src/components/screen/message_renderer.tsx +108 -0
  285. package/src/components/screen/progress_message.tsx +60 -0
  286. package/src/components/screen/screen_bridge.tsx +149 -0
  287. package/src/components/screen/table_message.tsx +57 -0
  288. package/src/components/screen_manager_bridge.tsx +245 -0
  289. package/src/components/sidebar/index.ts +3 -0
  290. package/src/components/sidebar/sidebar.tsx +102 -0
  291. package/src/components/sidebar/sidebar_item.tsx +50 -0
  292. package/src/components/sidebar/sidebar_separator.tsx +13 -0
  293. package/src/context/index.ts +1 -0
  294. package/src/context/logger_context.tsx +109 -0
  295. package/src/factories/index.ts +1 -0
  296. package/src/factories/screen.factory.ts +22 -0
  297. package/src/filter/filter_engine.ts +113 -0
  298. package/src/filter/index.ts +1 -0
  299. package/src/hooks/index.ts +1 -0
  300. package/src/hooks/use_theme.ts +12 -0
  301. package/src/index.ts +64 -0
  302. package/src/keyboard/create_bindings.ts +457 -0
  303. package/src/keyboard/index.ts +2 -0
  304. package/src/keyboard/keyboard_manager.ts +233 -0
  305. package/src/overrides/console.logger.override.ts +61 -0
  306. package/src/overrides/index.ts +1 -0
  307. package/src/schemas/index.ts +3 -0
  308. package/src/schemas/logger-options.ts +13 -0
  309. package/src/schemas/prompt-options.ts +9 -0
  310. package/src/schemas/screen-options.ts +14 -0
  311. package/src/services/index.ts +4 -0
  312. package/src/services/logger.ts +369 -0
  313. package/src/services/prompt.ts +169 -0
  314. package/src/services/screen.ts +590 -0
  315. package/src/services/screen_manager.tsx +390 -0
  316. package/src/themes/dark.ts +173 -0
  317. package/src/themes/high-contrast.ts +178 -0
  318. package/src/themes/index.ts +4 -0
  319. package/src/themes/light.ts +172 -0
  320. package/src/themes/utils.ts +83 -0
  321. package/src/tokens/index.ts +3 -0
  322. package/src/tokens/logger.ts +10 -0
  323. package/src/tokens/prompt.ts +10 -0
  324. package/src/tokens/screen.ts +10 -0
  325. package/src/types/file.types.ts +60 -0
  326. package/src/types/filter.types.ts +51 -0
  327. package/src/types/index.ts +22 -0
  328. package/src/types/keyboard.types.ts +93 -0
  329. package/src/types/log.types.ts +61 -0
  330. package/src/types/message.types.ts +120 -0
  331. package/src/types/prompt.types.ts +106 -0
  332. package/src/types/screen.types.ts +124 -0
  333. package/src/types/theme.types.ts +252 -0
  334. package/src/utils/colors/file-colors.ts +9 -0
  335. package/src/utils/colors/helpers.ts +50 -0
  336. package/src/utils/colors/index.ts +20 -0
  337. package/src/utils/colors/log-colors.ts +56 -0
  338. package/src/utils/colors/progress-colors.ts +25 -0
  339. package/src/utils/colors/prompt-colors.ts +30 -0
  340. package/src/utils/colors/sidebar-colors.ts +52 -0
  341. package/src/utils/colors/table-colors.ts +11 -0
  342. package/src/utils/filetype.ts +64 -0
  343. package/src/utils/format.ts +52 -0
  344. package/src/utils/index.ts +11 -0
  345. package/src/utils/stdout-printer.ts +255 -0
  346. package/tsconfig.json +14 -0
  347. package/tsdown.config.mts +34 -0
  348. package/vitest.config.mts +10 -0
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/typescript/lib/lib.es2022.full.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react/jsx-runtime.d.ts","../../../node_modules/@opentui/react/jsx-namespace.d.ts","../../../node_modules/@opentui/react/jsx-runtime.d.ts","../../../node_modules/yoga-layout/dist/src/generated/YGEnums.d.ts","../../../node_modules/yoga-layout/dist/src/wrapAssembly.d.ts","../../../node_modules/yoga-layout/dist/src/index.d.ts","../../../node_modules/@opentui/core/index.d.ts","../src/types/log.types.ts","../src/types/file.types.ts","../src/types/theme.types.ts","../src/types/screen.types.ts","../src/types/message.types.ts","../src/types/prompt.types.ts","../src/types/keyboard.types.ts","../src/types/filter.types.ts","../src/types/index.ts","../src/themes/dark.ts","../src/themes/light.ts","../src/themes/high-contrast.ts","../src/themes/utils.ts","../src/themes/index.ts","../src/context/logger_context.tsx","../src/hooks/use_theme.ts","../src/components/log/log_message.tsx","../src/components/log/trace_log.tsx","../src/components/log/debug_log.tsx","../src/components/log/info_log.tsx","../src/components/log/success_log.tsx","../src/components/log/warning_log.tsx","../src/components/log/error_log.tsx","../src/components/log/fatal_log.tsx","../src/components/log/index.ts","../src/utils/filetype.ts","../src/utils/colors/log-colors.ts","../src/utils/colors/sidebar-colors.ts","../src/utils/colors/progress-colors.ts","../src/utils/colors/table-colors.ts","../src/utils/colors/file-colors.ts","../src/utils/colors/prompt-colors.ts","../src/utils/colors/helpers.ts","../src/utils/colors/index.ts","../src/components/file/file_log.tsx","../src/components/file/index.ts","../src/components/prompt/prompt_renderer.tsx","../src/components/prompt/index.ts","../src/utils/stdout-printer.ts","../../../node_modules/@opentui/react/src/index.d.ts","../src/services/screen.ts","../src/components/sidebar/sidebar_item.tsx","../src/components/sidebar/sidebar_separator.tsx","../src/components/sidebar/sidebar.tsx","../src/components/screen/loading_message.tsx","../src/components/screen/progress_message.tsx","../src/components/screen/group_renderer.tsx","../src/components/screen/table_message.tsx","../src/components/screen/message_renderer.tsx","../src/components/screen/screen_bridge.tsx","../src/keyboard/keyboard_manager.ts","../src/keyboard/create_bindings.ts","../src/keyboard/index.ts","../src/components/help/help_overlay.tsx","../src/filter/filter_engine.ts","../src/filter/index.ts","../src/components/filter/filter_bar.tsx","../src/components/screen_manager_bridge.tsx","../src/services/screen_manager.tsx","../src/utils/format.ts","../src/utils/index.ts","../src/services/logger.ts","../src/services/prompt.ts","../src/services/index.ts","../src/hooks/index.ts","../src/index.ts","../src/components/screen/index.ts","../src/components/sidebar/index.ts","../src/components/index.ts","../src/components/filter/index.ts","../src/components/help/index.ts","../../../node_modules/@types/deep-eql/index.d.ts","../../../node_modules/assertion-error/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts"],"fileIdsList":[[74,153,216,224,228,231,233,234,235,247],[68,153,216,224,228,231,233,234,235,247],[69,70,153,216,224,228,231,233,234,235,247],[147,148,153,216,224,228,231,233,234,235,247],[153,216,224,228,231,233,234,235,247],[153,213,214,216,224,228,231,233,234,235,247],[153,215,216,224,228,231,233,234,235,247],[216,224,228,231,233,234,235,247],[153,216,224,228,231,233,234,235,247,255],[153,216,217,222,224,227,228,231,233,234,235,237,247,252,264],[153,216,217,218,224,227,228,231,233,234,235,247],[153,216,219,224,228,231,233,234,235,247,265],[153,216,220,221,224,228,231,233,234,235,238,247],[153,216,221,224,228,231,233,234,235,247,252,261],[153,216,222,224,227,228,231,233,234,235,237,247],[153,215,216,223,224,228,231,233,234,235,247],[153,216,224,225,228,231,233,234,235,247],[153,216,224,226,227,228,231,233,234,235,247],[153,215,216,224,227,228,231,233,234,235,247],[153,216,224,227,228,229,231,233,234,235,247,252,264],[153,216,224,227,228,229,231,233,234,235,247,252,255],[153,203,216,224,227,228,230,231,233,234,235,237,247,252,264],[153,216,224,227,228,230,231,233,234,235,237,247,252,261,264],[153,216,224,228,230,231,232,233,234,235,247,252,261,264],[151,152,153,154,155,156,157,158,159,160,161,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271],[153,216,224,227,228,231,233,234,235,247],[153,216,224,228,231,233,235,247],[153,216,224,228,231,233,234,235,236,247,264],[153,216,224,227,228,231,233,234,235,237,247,252],[153,216,224,228,231,233,234,235,238,247],[153,216,224,228,231,233,234,235,239,247],[153,216,224,227,228,231,233,234,235,242,247],[153,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271],[153,216,224,228,231,233,234,235,244,247],[153,216,224,228,231,233,234,235,245,247],[153,216,221,224,228,231,233,234,235,237,247,255],[153,216,224,227,228,231,233,234,235,247,248],[153,216,224,228,231,233,234,235,247,249,265,268],[153,216,224,227,228,231,233,234,235,247,252,254,255],[153,216,224,228,231,233,234,235,247,253,255],[153,216,224,228,231,233,234,235,247,255,265],[153,216,224,228,231,233,234,235,247,256],[153,213,216,224,228,231,233,234,235,247,252,258],[153,216,224,228,231,233,234,235,247,252,257],[153,216,224,227,228,231,233,234,235,247,259,260],[153,216,224,228,231,233,234,235,247,259,260],[153,216,221,224,228,231,233,234,235,237,247,252,261],[153,216,224,228,231,233,234,235,247,262],[153,216,224,228,231,233,234,235,237,247,263],[153,216,224,228,230,231,233,234,235,245,247,264],[153,216,224,228,231,233,234,235,247,265,266],[153,216,221,224,228,231,233,234,235,247,266],[153,216,224,228,231,233,234,235,247,252,267],[153,216,224,228,231,233,234,235,236,247,268],[153,216,224,228,231,233,234,235,247,269],[153,216,219,224,228,231,233,234,235,247],[153,216,221,224,228,231,233,234,235,247],[153,216,224,228,231,233,234,235,247,265],[153,203,216,224,228,231,233,234,235,247],[153,216,224,228,231,233,234,235,247,264],[153,216,224,228,231,233,234,235,247,270],[153,216,224,228,231,233,234,235,242,247],[153,216,224,228,231,233,234,235,247,260],[153,203,216,224,227,228,229,231,233,234,235,242,247,252,255,264,267,268,270],[153,216,224,228,231,233,234,235,247,252,271],[66,67,153,216,224,228,231,233,234,235,247],[153,169,172,175,176,216,224,228,231,233,234,235,247,264],[153,172,216,224,228,231,233,234,235,247,252,264],[153,172,176,216,224,228,231,233,234,235,247,264],[153,216,224,228,231,233,234,235,247,252],[153,166,216,224,228,231,233,234,235,247],[153,170,216,224,228,231,233,234,235,247],[153,168,169,172,216,224,228,231,233,234,235,247,264],[153,216,224,228,231,233,234,235,237,247,261],[153,216,224,228,231,233,234,235,247,272],[153,166,216,224,228,231,233,234,235,247,272],[153,168,172,216,224,228,231,233,234,235,237,247,264],[153,163,164,165,167,171,216,224,227,228,231,233,234,235,247,252,264],[153,172,180,188,216,224,228,231,233,234,235,247],[153,164,170,216,224,228,231,233,234,235,247],[153,172,197,198,216,224,228,231,233,234,235,247],[153,164,167,172,216,224,228,231,233,234,235,247,255,264,272],[153,172,216,224,228,231,233,234,235,247],[153,168,172,216,224,228,231,233,234,235,247,264],[153,163,216,224,228,231,233,234,235,247],[153,166,167,168,170,171,172,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,198,199,200,201,202,216,224,228,231,233,234,235,247],[153,172,190,193,216,224,228,231,233,234,235,247],[153,172,180,181,182,216,224,228,231,233,234,235,247],[153,170,172,181,183,216,224,228,231,233,234,235,247],[153,171,216,224,228,231,233,234,235,247],[153,164,166,172,216,224,228,231,233,234,235,247],[153,172,176,181,183,216,224,228,231,233,234,235,247],[153,176,216,224,228,231,233,234,235,247],[153,170,172,175,216,224,228,231,233,234,235,247,264],[153,164,168,172,180,216,224,228,231,233,234,235,247],[153,172,190,216,224,228,231,233,234,235,247],[153,183,216,224,228,231,233,234,235,247],[153,166,172,197,216,224,228,231,233,234,235,247,255,270,272],[72,73,153,216,224,228,231,233,234,235,247],[72,153,216,224,228,231,233,234,235,247],[68,71,84,90,101,109,153,216,224,228,231,233,234,235,247],[71,110,153,216,224,228,231,233,234,235,247],[71,75,76,91,131,153,216,224,228,231,233,234,235,247],[71,132,153,216,224,228,231,233,234,235,247],[71,75,91,128,153,216,224,228,231,233,234,235,247],[71,129,153,216,224,228,231,233,234,235,247],[71,100,111,113,133,142,143,153,216,224,228,231,233,234,235,247],[71,84,92,153,216,224,228,231,233,234,235,247],[71,92,93,94,95,96,97,98,99,153,216,224,228,231,233,234,235,247],[71,75,84,91,153,216,224,228,231,233,234,235,247],[71,112,153,216,224,228,231,233,234,235,247],[71,75,84,91,124,153,216,224,228,231,233,234,235,247],[71,120,121,122,123,124,125,153,216,224,228,231,233,234,235,247],[68,71,84,92,153,216,224,228,231,233,234,235,247],[71,84,91,92,110,120,121,122,123,153,216,224,228,231,233,234,235,247],[71,84,91,153,216,224,228,231,233,234,235,247],[68,71,75,84,91,112,116,122,124,153,216,224,228,231,233,234,235,247],[71,75,84,109,153,216,224,228,231,233,234,235,247],[68,71,84,90,115,119,125,128,129,131,132,134,153,216,224,228,231,233,234,235,247],[71,117,118,119,153,216,224,228,231,233,234,235,247],[71,75,91,116,117,118,153,216,224,228,231,233,234,235,247],[71,75,91,116,153,216,224,228,231,233,234,235,247],[71,91,153,216,224,228,231,233,234,235,247],[68,71,75,84,89,153,216,224,228,231,233,234,235,247],[71,76,80,83,153,216,224,228,231,233,234,235,247],[71,83,130,153,216,224,228,231,233,234,235,247],[71,78,90,153,216,224,228,231,233,234,235,247],[71,84,89,90,100,101,109,111,113,114,128,131,139,140,153,216,224,228,231,233,234,235,247],[71,82,116,134,153,216,224,228,231,233,234,235,247],[71,82,126,127,153,216,224,228,231,233,234,235,247],[71,82,153,216,224,228,231,233,234,235,247],[71,116,134,137,138,153,216,224,228,231,233,234,235,247],[71,84,116,136,153,216,224,228,231,233,234,235,247],[71,84,116,153,216,224,228,231,233,234,235,247],[71,84,134,153,216,224,228,231,233,234,235,247],[71,75,84,89,114,115,116,133,153,216,224,228,231,233,234,235,247],[71,78,153,216,224,228,231,233,234,235,247],[71,78,85,86,87,88,153,216,224,228,231,233,234,235,247],[71,78,85,86,87,153,216,224,228,231,233,234,235,247],[71,75,153,216,224,228,231,233,234,235,247],[71,76,153,216,224,228,231,233,234,235,247],[71,76,77,78,79,80,81,82,83,153,216,224,228,231,233,234,235,247],[71,79,153,216,224,228,231,233,234,235,247],[68,71,75,153,216,224,228,231,233,234,235,247],[71,153,216,224,228,231,233,234,235,247],[68,71,75,76,78,153,216,224,228,231,233,234,235,247],[71,75,84,102,153,216,224,228,231,233,234,235,247],[71,102,103,104,105,106,107,108,153,216,224,228,231,233,234,235,247],[71,84,153,216,224,228,231,233,234,235,247],[71,101,109,114,135,153,216,224,228,231,233,234,235,247],[71,84,109,153,216,224,228,231,233,234,235,247]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"cf8db38686dfd74567ea692266fe44fbb32fa0e25fc0888ad6fc40e65873607e","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"5fba75eca68da8a68a77172693fe3487ffcd2a1ee0a52105d6a26c477864b92f","impliedFormat":99},{"version":"396bdbd3fdc5e0482bf18f62d8c7bddca46d36fe16bdb5bb19093a8418677fd6","impliedFormat":99},{"version":"e0c394ad75777f77b761a10d69c0c9f9dd7afb04c910758dcb0a50bcaae08527","impliedFormat":99},{"version":"5c187cdbece8ad89247f507b3f6b04aad849d4b3fd8108289e19e9d452714882","impliedFormat":99},{"version":"753b64b831aa731751b352e7bc9ef4d95b8c25df769dd629f8ec6a84478a85c7","impliedFormat":99},{"version":"c766668b5854a1ab34ce3711f20598ddc2a5d5b2061e25f46e7b6fca0532cb9e","impliedFormat":99},{"version":"f873bb8d0fcc8ddcf56e8388cb0ffb94b66a3717c0be566746d80017b8f2d78f","signature":"b70ce54887161fbb5bcbaea8e2f0fc2d3a43e6e4c6fbce878c323e0e8b42e35c","impliedFormat":1},{"version":"72c3f3cbd6f80f9d463dc6b911e6a06bd14b6406b9714c4a6cf584054bbc4f36","signature":"2938117ae8e941e160d7b64c0bf3d186e4267d150c377ceb331ce2c6b49b4d9e","impliedFormat":1},{"version":"58089f0ada3a33be8ef3c844461aa99d094a56d60d9e94b2a3095d74ecfb2b8c","signature":"0db800b6c2e29a5ff31704a4f1df37bbf8c36588a37ab9385ded2cb66664198a","impliedFormat":1},{"version":"2ed15724d03bfa538873e1b6dd2fef9efded6a91e1db9fd942592eb713bc546b","signature":"425cd29133c724b2d7d4acf21f98e371b4fbcfd090ad52f69408fed9e6cb4116","impliedFormat":1},{"version":"cbf4f819fad213e56eaa7ee4a35ee36e76941c13f63a1b14d01383a76b631a8b","signature":"ee39c8ed991293658db362974c89e3abf91dc5fa9ac0713f2dcda68bd825c1b8","impliedFormat":1},{"version":"23da2ff3b3655961d5c9634467667df1026a81593ff2fa270c6bf7c52e97b230","signature":"8c67289016965d2791b4486f63106ee49219c700852f841d24fcdccc780f82c6","impliedFormat":1},{"version":"f140c643225686f76ab5f29a9b243922b90ef3d47cad20bdacf0ba4db9dc483d","signature":"801b7c1b9714a0932f8caab11149bd318514b29799b6cabb8bc2aa9458e0e52d","impliedFormat":1},{"version":"db53a9c8b9ead0e9f29fd96a98ffd2a9822aef3799619a0c1702fb47c5fc068d","signature":"676aa4d1e7f098b6de1555cbc01d1e08efca88cd43ef195289f24500eebb1862","impliedFormat":1},{"version":"5d4d1962914783eaa1c058ce47032bf346e88195a29d61ab46dc2bb00686009f","signature":"c06854e27792af653a0121282350f9aa8507db70efd36368bcb1c2aa24c1bfb7","impliedFormat":1},{"version":"c6f9ecadbe9709a5826ee4ca5d0745ad3aef4cf231ef3a5c7b759f9a7acb7d42","signature":"bebac2e278fa1f13c0eda81c90d415c522f168ab8d0c0a2d3a29914881f64ef0","impliedFormat":1},{"version":"6e0ceda3480a7c61d1675fd3876e8c0a10f8163e66017477fdb340986c4ad674","signature":"2ecc59f6b0da18dcbd267c3fcdc9c9b415f5deb1b6a420d4b82e3f834e5eeb11","impliedFormat":1},{"version":"f256e453123902384a393497eff5052a2b1c4cefc9355ad33b2a99461bd6fcf3","signature":"7b6238b807eaea1efabebc55c0893993d02f28f9b239f9aa1d56ec116f0182df","impliedFormat":1},{"version":"cd59690f28aa67666c93ad60ef1baabf6c3c920ed4a646425c89b98b9184a196","signature":"c9ec652899f1a040a9e567c1acca222af92a677e851f6f663ca66dfeebecbbcb","impliedFormat":1},{"version":"3516413d28e8f58a1db749ceb6965d04998c5996bc742cc45fc14fd5edf91208","signature":"3b80dd8ee2ab1bfdf37aaa134dea1f0e25cd26a3f946710351ca89a98bdaf353","impliedFormat":1},{"version":"9836ac60919471282ada12aefa2d160d425b8ef16f206fc884fb86be398aa7f9","signature":"adb3b7451cee5d1888db09c3a451654551f74a4ebca6575b954858afa992bdbe","impliedFormat":1},{"version":"c03c67b1e35e59b05d203f72e1812b0724ba76b4ed7d5d944db58da0c2725052","signature":"1968a258815a96d6c8a81a6c180da565c2efac6b7a471bad92b7830654cc2911","impliedFormat":1},{"version":"df30038e172401d958e2da9dc3406b6ace95adf0bdf001d98f3692f58b66a369","signature":"c84cf7ffbff05bc0c77ef2fda2eb9433716ea70c2eb89fc5df852bc09274aeb6","impliedFormat":1},{"version":"986a78df6b5b8ee093c1b7b0e372d243262452e245b8ec1d1e11f774a9c3c3d6","signature":"7913b63af83ad5e2c043208954525f32133a3843daa17a3fa1c677f11d4d3c68","impliedFormat":1},{"version":"40309c6ab963b44bb5debb8b898b262668d12397061dac5d9c56f4c570e7a0fd","signature":"18d47a6e0f016cd435518701be9583370ef16bf9a827aa06668da1ae2d72b95d","impliedFormat":1},{"version":"6217ed729e269d95e2220b19828d037679373ac47490112dba594b35875dfe93","signature":"7f2289ada43f9c7ec0e10095569e16b72c312cef6327ab36f5f8311c8344854f","impliedFormat":1},{"version":"79c6b3725f9e1e5ed023e9d0393969d9237b83f2132660dfea8576eaa8c30588","signature":"ee858e1a78b79e82b88e75c7436024a0104767ab79b40ca35fbbed1ec91fd68f","impliedFormat":1},{"version":"c70f8ce82f5d1f3add11a051bfdb176b33cdbe75d041d8e6e664aeda6f652624","signature":"0c4555e4b6757bc009c825e63b07681d2cd3ce045467fffdc7dd1fd7f4816708","impliedFormat":1},{"version":"38ff8beee20cbadd2c9d4a3ee993da13e421487b2ba1452851aafcea6b44aa9b","signature":"064c944a95d2c82ae8aa4ca43824cefd5f2e3e5109eaba22760df6b668c8a1e3","impliedFormat":1},{"version":"b6ed569e073be20af8e5d50521f8e096d96a09219a8574a9b8cf35928ed5a0b6","signature":"b58660c1cfa4d1b97079b9aca88a9bc5c898cfad6563458ad9f435718ba9ef53","impliedFormat":1},{"version":"87cb5490aa90d90be0e8b0924cc063c7cd6bf42b8868d81233b536b440b673f5","impliedFormat":1},{"version":"929a3e7a10d9227d7aede3d47585e99b9cc5105ac8436cbe4f5e66e9108efde2","signature":"d7e09da75a6331a5720c2e2c6f4ead3c7f9ae50dffad60b0a711a7ae64f414f8","impliedFormat":1},{"version":"a24c19883d87e6452945d603ac19fec6ff497a4837cb2bc0fb0710d458bbef5a","signature":"358fe558f3f976c3c60ca80d0cdae357de21656f3c74c26c4fc1c6815b5c2bc1","impliedFormat":1},{"version":"76093d2d7c73e98e328723044234577e14ce71583bd3ace424121609acd33ff7","signature":"e93842086f1460b0ee0c24cafc9ea4ce4fea2237ce3f8ce73df584c185435bf2","impliedFormat":1},{"version":"1673aa288800c3beb024d4f7914df0dd99e2db4b3c6762745828f1486c8fc5ff","signature":"8937cafce26d10b243b30712a60a24cdc5e04c458d30de90076a9ffe45faa8fa","impliedFormat":1},{"version":"ccb43b6ff2dbe34c9a2a993801c24c6655dd9bfec148b024f57b4e123422f65b","signature":"8c32711d0848f12a6c8d79f45e1130389793148f9544c6b4a089dc9d6b050984","impliedFormat":1},{"version":"b47649503d33c2fb0ce94aa4006431a9e51150c7ce2025271236b2d5e5442f7f","signature":"45c7fe8da8aa0b5307326a136d5840479b0000dd811db19579d84a06a7645cac","impliedFormat":1},{"version":"5316e12af65569cc2a2fad22c9f3ff26911f0b20a7173eed50b44e2ddac6841c","signature":"a1c405f1b41bddc06d62e7289134beb105da81444422ac091f48b995cd5df55d","impliedFormat":1},{"version":"92ca5e5beeeb43b71214e0fb9e5ce210d4d63fb31b040ce77253964de9b3182c","signature":"37394593e79add5a80ac9e6846d1e254e89c4969471697ba3f66b1332dbddf01","impliedFormat":1},{"version":"8471aee3d37af66ec9c5a3744a76522fbc686adb570ccf5ec56102b4c8ce24ae","signature":"e5c70fc5bb69411480ba975d6f79f75114a4a33fb1f44f73e5bb15f64ea77a16","impliedFormat":1},{"version":"d4c66a5502ff8fe6532540f71b665f940aa0250b12516f84793f37f548bf1187","signature":"0d3582f7a4e0cc7534b4afd2c0cec3a1b3e26c9989f52733ce226a62faeb9838","impliedFormat":1},{"version":"d3bcc1601db7dcf36cbce460d0edbf661a11bb884d48699a4ce34f34703c6b80","impliedFormat":1},{"version":"2539f30b74da735d67145f122c0ac323ea9a330d073087ae346d72fd18dc8591","signature":"bf3395f2882607cc0967912e4e778eb371eaa36137079a2516e8ad31a35c08cd","impliedFormat":1},{"version":"d138c4e51e21c884e1696190b9aa6f4b222f87bb910bce4148f76e4c7944009d","impliedFormat":1},{"version":"11021439e8ca39813a4b6af53927c87e55da0cd799e0c5e37ccdf54db36462f7","signature":"730fe113ede6093b0d67b12b81fb0ce298ec0ad14653182bdcee99a7009f947f","impliedFormat":1},{"version":"ddddff3810f1c1fe84383658f3c8a048ef5cd492ce1b24182f9694c6c31e2589","impliedFormat":99},{"version":"da49e6356b2245cba3387e0d04e778ae5b2662341ee82cfd405b5260bdf65604","signature":"9c5f77202bd07003e3b6cee9d559e400994f6b5279d29b464c9d7c48b06a6371","impliedFormat":1},{"version":"7e0d384f42c4cc26d2965a86d017444b992339712e1cf2867be78a0fb97a17e6","signature":"0156b5ad34f943c21f4928ecde7901dd59bc2dfc1cff6567e4c66e9154de0152","impliedFormat":1},{"version":"fccd7e80a147bd2fd4f3c8b2d30005e8feb38e8bf24ca29bc58b921a410e844e","signature":"52cb6ac5f1905db68400c1fc0f99ea58331813c781c0380b41932fc477c0bb27","impliedFormat":1},{"version":"5534f0e137e330c79b3353fb214f8d2bf09852010c14498a4e589ebcfc528fdc","signature":"8a089b0cb9eba52fd5c023cc98681a75360ea73cabd502422ce7165e97da399a","impliedFormat":1},{"version":"b9dc3429298d102840901968dac15006c798aca2c65afe8702fa5b7105013f67","signature":"a60899cb4199bb221fd258e7e9ad355d7bd06f90aeb6a6a3b1b87584bcd66f6e","impliedFormat":1},{"version":"822c14d6c28e31c30ef3bd866b0477966e7b9da6a59d9774fa9d9dc056d913c5","signature":"3e5f60c5193f575a4eb15bb5b5b45ca9c27c7029a1dcb642d919dbbfed8ca56e","impliedFormat":1},{"version":"a95c7190a8f1ed2864734d0ec745eceb4125d054ef7373a64b6a36a96e104839","signature":"ef0814e785cbb05ea2cb8a2d6e4a048f22a817eeeee6e240b88ee1a279421d75","impliedFormat":1},{"version":"45522761a7f9f4659f1691e50a36cba3a9452582e9ea4adaa524e51fe7edf6e9","signature":"76f41212516994518e83ac26ed188b6e76810fc723bdd13217c4ae13ab4ba3c8","impliedFormat":1},{"version":"da34c29e2f284d8522294dc4ae6dd3101f6487c7e6ee1e45508b4abb34ca1e7b","signature":"62b3c67454b834d7d5b96fadfedfeb24f8387c6ed609113b16da11cd90a5e207","impliedFormat":1},{"version":"332d3076101439e903136bb9a9d65475bc33935f20f151fb57e578c35d49a6fb","signature":"f8288318c094c5776eeb127b1851e157e03c577c4da019738bbecd5688022204","impliedFormat":1},{"version":"32bcad548179de2023c2d95cc7bc571595b884324c068ce25ad73ee2912f9e0a","signature":"af68dca8f1d33f07479d7635281edbcde40fb3451761b03e5ba04a163f2162ba","impliedFormat":1},{"version":"0d95876a849bd9e23cf259863a37563ed82aa50821d114721f3b296b7eb20d2b","signature":"7bb7c57996755029bfc8a56434b2e11057b1cde76677a154f87705be04bd3fa7","impliedFormat":1},{"version":"9dcae1bd733424c90621a237b98c72a80d538a90c871f120cfb9018693b9108e","signature":"bb8a184a8e970454dc61466213fdda2683b16c782332f681b263da4429d89fad","impliedFormat":1},{"version":"128b1efc8f085be749d8a7ba826c9fa5351207b02c861486e8bb273121b7d70b","signature":"67bc15be37c48d4e2f9cdaed7074eabe2466a57ad64a9c4a291e2359c0878aee","impliedFormat":1},{"version":"c4a9d98a0533493fba0bb62a20b44bf2eff1a588c3e3de5a33fbb2176fd08c7c","signature":"af9abc3d3157c418622dbb68a322049d690f775230999a2dcb25cee82a07c010","impliedFormat":1},{"version":"7c1272416b41b34b055cabdb2c92bd15a8140cff4bf4de060e1f9fc63c0cfc9f","signature":"a6b999ec5606fdae7700b824e604fd66c6e7b186fa21646344bce24d5dd82b30","impliedFormat":1},{"version":"cf3fe1f3b68e14219631c1c6abd7927057bbfe48c6d4f51f195d8f533e58a4cd","signature":"2713c9107bd407d7f579c11577c980b79f59f77c9a501142d708e4bbc89fc78f","impliedFormat":1},{"version":"c73b1ccfa232868d7ffa7a40d1bf75f7ddaf8ec271a99dfd85ae01af18c3477a","signature":"48b5a6834a731db117ac7f60a85ff387d8050f5969248f945246fe1678f1c499","impliedFormat":1},{"version":"eb4869d0f3a94c3d6872dab952ad98bc0cfe7645719fbf67989a1d310ed6925e","signature":"d0a51d2c5f2c0d7c14090fdee6d7ff51c6b8f0f40368069a2c3fd71926f42da3","impliedFormat":1},{"version":"1e7b7688c0971f8c9aa3af937d11a3d0ef9860ce75a6940131c8741c2583671c","signature":"bd9d68331144fa439a71b2e009683ee4c068a5881737070c1034f17f397110fe","impliedFormat":1},{"version":"84e52f889c0292f4260d961b16d5b79bf9825aff21a188e4aa76256c6e5e75a3","signature":"7f090e6da84580f814b7122660dc4e493eafba870fb27a2a5c6ccc441ad18680","impliedFormat":1},{"version":"05e52802c19292344bc0727b3fa03d03a0e11f364a8a671a4533365aeb6759e9","signature":"efd331577677f1f3511bdc38d7068b5b5f4535f86bc99911a9ff397184de0c47","impliedFormat":1},{"version":"3b0551937c0501443b585437c3a9945ff645b5f2b3ccc280781c898fb52f585a","signature":"15bd16bc2486150134cdb72a5c4b75ac51db1579a5971533a827bae6a1cc03b5","impliedFormat":1},{"version":"f67242868b2528a18400a7cdf4d4cb087c0c1ac0482534ece6b1f54571ac697f","impliedFormat":1},{"version":"b487bf2801beb9a7cbc6d6a17e89f33bf04d3ee2c09ff6765c407615cfb8200d","impliedFormat":1},{"version":"7fc93c707275f7c96ae4c4b747f455430cabf87a9e6eae9340e8b84c9d8e4e88","signature":"9ae272f57f7555534e6c65c6b39311e0b71ee852d71208e2ac7daeedeacca256","impliedFormat":1},{"version":"dcea894910479b997b421e951e6b536a4794965d07f3d851f6b00f20d5c8ae46","impliedFormat":1},{"version":"f4ea0dcd066abe8b4687fe447942ec72e0cbbbab4c9355b7d4e402d02ed1a6ac","impliedFormat":1},{"version":"9f723d49c45799ac34e50aed1473c225231f3cc0568683741beb525f8dc7c33b","signature":"5e7e1721b63dacf8be86a9eb5944ec704a48e6536bafa165b0fcdea5115a5157","impliedFormat":1},{"version":"b5b3cb65df94d9ae8f9ee6a310740feb753e0a79b34e88aa8a207785be2307de","impliedFormat":1},{"version":"84a1e6a1c674460be6ab03d44dac40dfa64148c5c97043a6ae53e6614ba8afda","impliedFormat":1},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"dd0109710de4cd93e245121ab86d8c66d20f3ead80074b68e9c3e349c4f53342","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"cf83d90d5faf27b994c2e79af02e32b555dbfe42cd9bd1571445f2168d1f4e2d","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"0e28335ac43f4d94dd2fe6d9e6fa6813570640839addd10d309d7985f33a6308","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true,"impliedFormat":1},{"version":"961cf7535b9c521cd634055b1b6ac49b94d055f0b573ce7fdc4cfaddab080b7c","impliedFormat":1},{"version":"806a8c6daae69e5695e7200d9eca6bc1e4298f38d90edda3ce67a794da31a24f","impliedFormat":1},{"version":"ac86245c2f31335bfd52cbe7fc760f9fc4f165387875869a478a6d9616a95e72","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"9d96a7ce809392ff2cb99691acf7c62e632fe56897356ba013b689277aca3619","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"27c0a08e343c6a0ae17bd13ba6d44a9758236dc904cd5e4b43456996cd51f520","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"6f80e51ba310608cd71bcdc09a171d7bbfb3b316048601c9ec215ce16a8dcfbc","impliedFormat":1},{"version":"a3bdc774995d56caaac759a424831091bb22450ca3590f34dae53d98323be191","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"2ca2bca6845a7234eff5c3d192727a068fca72ac565f3c819c6b04ccc83dadc0","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"17d06eb5709839c7ce719f0c38ada6f308fb433f2cd6d8c87b35856e07400950","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"6c00f77f0335ae0c18bd45a6c7c9c97c9625fb7e5dd6d5936eadf70718bce52e","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"586eaf66bace2e731cee0ddfbfac326ad74a83c1acfeac4afb2db85ad23226c7","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"d1a14d87cedcf4f0b8173720d6eb29cc02878bf2b6dabf9c9d9cee742f275368","impliedFormat":1},{"version":"e60efae9fe48a2955f66bf4cbf0f082516185b877daf50d9c5e2a009660a7714","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"cd9189eacf0f9143b8830e9d6769335aa6d902c04195f04145bcbf19e7f26fcb","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"916be7d770b0ae0406be9486ac12eb9825f21514961dd050594c4b250617d5a8","impliedFormat":1}],"root":[[76,114],[116,146]],"options":{"composite":true,"declarationMap":true,"emitDeclarationOnly":true,"jsx":4,"jsxImportSource":"@opentui/react","module":101,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"verbatimModuleSyntax":true},"referencedMap":[[75,1],[70,2],[71,3],[115,2],[149,4],[147,5],[150,5],[213,6],[214,6],[215,7],[153,8],[216,9],[217,10],[218,11],[151,5],[219,12],[220,13],[221,14],[222,15],[223,16],[224,17],[225,17],[226,18],[227,19],[228,20],[229,21],[154,5],[152,5],[230,22],[231,23],[232,24],[272,25],[233,26],[234,27],[235,26],[236,28],[237,29],[238,30],[239,31],[240,31],[241,31],[242,32],[243,33],[244,34],[245,35],[246,36],[247,37],[248,37],[249,38],[250,5],[251,5],[252,39],[253,40],[254,39],[255,41],[256,42],[257,43],[258,44],[259,45],[260,46],[261,47],[262,48],[263,49],[264,50],[265,51],[266,52],[267,53],[268,54],[269,55],[155,26],[156,5],[157,56],[158,57],[159,5],[160,58],[161,5],[204,59],[205,60],[206,61],[207,61],[208,62],[209,5],[210,9],[211,63],[212,60],[270,64],[271,65],[273,5],[66,5],[68,66],[69,2],[148,5],[162,5],[67,5],[63,5],[64,5],[12,5],[10,5],[11,5],[16,5],[15,5],[2,5],[17,5],[18,5],[19,5],[20,5],[21,5],[22,5],[23,5],[24,5],[3,5],[25,5],[26,5],[4,5],[27,5],[31,5],[28,5],[29,5],[30,5],[32,5],[33,5],[34,5],[5,5],[35,5],[36,5],[37,5],[38,5],[6,5],[42,5],[39,5],[40,5],[41,5],[43,5],[7,5],[44,5],[49,5],[50,5],[45,5],[46,5],[47,5],[48,5],[8,5],[54,5],[51,5],[52,5],[53,5],[55,5],[9,5],[56,5],[65,5],[57,5],[58,5],[60,5],[59,5],[1,5],[61,5],[62,5],[14,5],[13,5],[180,67],[192,68],[178,69],[193,70],[202,71],[169,72],[170,73],[168,74],[201,75],[196,76],[200,77],[172,78],[189,79],[171,80],[199,81],[166,82],[167,76],[173,83],[174,5],[179,84],[177,83],[164,85],[203,86],[194,87],[183,88],[182,83],[184,89],[187,90],[181,91],[185,92],[197,75],[175,93],[176,94],[188,95],[165,70],[191,96],[190,83],[186,97],[195,5],[163,5],[198,98],[72,5],[74,99],[73,100],[110,101],[111,102],[132,103],[145,104],[129,105],[146,106],[144,107],[94,108],[98,108],[99,108],[100,109],[95,108],[92,110],[96,108],[93,108],[97,108],[113,111],[112,110],[122,112],[142,113],[120,114],[124,115],[121,116],[125,117],[123,118],[133,119],[143,120],[119,121],[117,122],[118,123],[90,124],[130,125],[131,126],[140,123],[91,127],[141,128],[127,129],[128,130],[126,131],[139,132],[137,133],[138,134],[116,135],[134,136],[85,137],[87,137],[89,138],[86,137],[88,139],[77,140],[83,141],[84,142],[82,143],[76,144],[80,141],[81,145],[79,146],[78,141],[106,145],[108,147],[109,148],[102,149],[104,145],[107,145],[103,145],[105,145],[101,145],[135,145],[136,150],[114,151]],"semanticDiagnosticsPerFile":[[76,[{"start":14,"length":4,"messageText":"Module '\"@opentui/core\"' has no exported member 'RGBA'.","category":1,"code":2305},{"start":26,"length":15,"code":1541,"category":1,"messageText":{"messageText":"Type-only import of an ECMAScript module from a CommonJS module must have a 'resolution-mode' attribute.","category":1,"code":1541,"next":[{"info":true}]}}]],[77,[{"start":14,"length":4,"messageText":"Module '\"@opentui/core\"' has no exported member 'RGBA'.","category":1,"code":2305},{"start":26,"length":15,"code":1541,"category":1,"messageText":{"messageText":"Type-only import of an ECMAScript module from a CommonJS module must have a 'resolution-mode' attribute.","category":1,"code":1541,"next":[{"info":true}]}}]],[79,[{"start":14,"length":4,"messageText":"Module '\"@opentui/core\"' has no exported member 'RGBA'.","category":1,"code":2305},{"start":20,"length":11,"messageText":"Module '\"@opentui/core\"' has no exported member 'SyntaxStyle'.","category":1,"code":2305},{"start":33,"length":16,"messageText":"Module '\"@opentui/core\"' has no exported member 'TreeSitterClient'.","category":1,"code":2305},{"start":57,"length":15,"code":1541,"category":1,"messageText":{"messageText":"Type-only import of an ECMAScript module from a CommonJS module must have a 'resolution-mode' attribute.","category":1,"code":1541,"next":[{"info":true}]}}]],[83,[{"start":547,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":717,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":954,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[84,[{"start":1723,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1739,"length":24,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1765,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1788,"length":19,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[85,[{"start":147,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[86,[{"start":116,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[87,[{"start":176,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[88,[{"start":90,"length":9,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":107,"length":11,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":129,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":147,"length":12,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":170,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":195,"length":20,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":1169,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1490,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1700,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1878,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":2179,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[89,[{"start":9,"length":9,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":26,"length":11,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":48,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":66,"length":12,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":89,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":114,"length":20,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":147,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":162,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":181,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":196,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":214,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":235,"length":12,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[90,[{"start":9,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":24,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":36,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":85,"length":11,"messageText":"Module '\"@opentui/core\"' has no exported member 'SyntaxStyle'.","category":1,"code":2305},{"start":103,"length":16,"messageText":"Module '\"@opentui/core\"' has no exported member 'TreeSitterClient'.","category":1,"code":2305},{"start":127,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":153,"length":9,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":164,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":184,"length":20,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":1708,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":2643,"length":73,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":2825,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[91,[{"start":9,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":33,"length":31,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":207,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[92,[{"start":9,"length":14,"messageText":"Module '\"@opentui/core\"' has no exported member 'TextAttributes'.","category":1,"code":2305},{"start":31,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":57,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":73,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":707,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1774,"length":885,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[93,[{"start":9,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":27,"length":19,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":185,"length":39,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[94,[{"start":9,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":27,"length":19,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":185,"length":39,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[95,[{"start":9,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":27,"length":19,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":184,"length":38,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[96,[{"start":9,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":27,"length":19,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":187,"length":41,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[97,[{"start":9,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":27,"length":19,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":187,"length":41,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[98,[{"start":9,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":27,"length":19,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":185,"length":39,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[99,[{"start":9,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":27,"length":19,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":185,"length":39,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[100,[{"start":9,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":27,"length":19,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":57,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":73,"length":17,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":101,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":117,"length":17,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":145,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":160,"length":16,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":187,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":205,"length":19,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":235,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":253,"length":19,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":283,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":299,"length":17,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":327,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":343,"length":17,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[101,[{"start":78,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":833,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1232,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[102,[{"start":188,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1095,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[103,[{"start":27,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":432,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":645,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1078,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[104,[{"start":32,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":477,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[105,[{"start":49,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[106,[{"start":56,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[107,[{"start":50,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[108,[{"start":9,"length":4,"messageText":"Module '\"@opentui/core\"' has no exported member 'RGBA'.","category":1,"code":2305},{"start":21,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":135,"length":24,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":167,"length":17,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":435,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":825,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1183,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[109,[{"start":29,"length":24,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":55,"length":22,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":85,"length":17,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":145,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":163,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":180,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":201,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":226,"length":21,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":288,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":305,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":325,"length":22,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":375,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":395,"length":19,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":441,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":460,"length":18,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":507,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":528,"length":20,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":582,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":603,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":624,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":650,"length":14,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[110,[{"start":9,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":42,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":66,"length":34,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":111,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":134,"length":25,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":170,"length":22,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":194,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":215,"length":29,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":1094,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1432,"length":1253,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[111,[{"start":9,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":24,"length":16,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[112,[{"start":9,"length":14,"messageText":"Module '\"@opentui/core\"' has no exported member 'TextAttributes'.","category":1,"code":2305},{"start":31,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":57,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":73,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":325,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":580,"length":98,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[113,[{"start":9,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":31,"length":23,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[114,[{"start":93,"length":24,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":125,"length":19,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":3878,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[116,[{"start":445,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[117,[{"start":9,"length":14,"messageText":"Module '\"@opentui/core\"' has no exported member 'TextAttributes'.","category":1,"code":2305},{"start":31,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":57,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":73,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":279,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":800,"length":967,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[118,[{"start":9,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":25,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":54,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":135,"length":156,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[119,[{"start":9,"length":14,"messageText":"Module '\"@opentui/core\"' has no exported member 'TextAttributes'.","category":1,"code":2305},{"start":31,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":57,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":73,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":129,"length":20,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":160,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":184,"length":25,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":429,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1212,"length":1850,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[120,[{"start":9,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":19,"length":9,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":30,"length":6,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":62,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":80,"length":24,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":320,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1208,"length":113,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[121,[{"start":9,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":25,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":194,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1274,"length":555,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[122,[{"start":9,"length":14,"messageText":"Module '\"@opentui/core\"' has no exported member 'TextAttributes'.","category":1,"code":2305},{"start":31,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":57,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":73,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":133,"length":24,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":320,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":437,"length":614,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":1221,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[123,[{"start":9,"length":14,"messageText":"Module '\"@opentui/core\"' has no exported member 'TextAttributes'.","category":1,"code":2305},{"start":31,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":57,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":77,"length":29,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":240,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":917,"length":650,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[124,[{"start":9,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":27,"length":24,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":62,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":77,"length":22,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":132,"length":23,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":166,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":189,"length":24,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":224,"length":20,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":252,"length":22,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":285,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":305,"length":21,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":337,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":353,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":594,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":757,"length":207,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[125,[{"start":9,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":19,"length":9,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":54,"length":14,"messageText":"Module '\"@opentui/core\"' has no exported member 'TextAttributes'.","category":1,"code":2305},{"start":76,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":102,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":118,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":155,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":177,"length":31,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":219,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":242,"length":24,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":277,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":298,"length":22,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":1985,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":2747,"length":1558,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[126,[{"start":216,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":4921,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[127,[{"start":704,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":10593,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[128,[{"start":9,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":26,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":50,"length":23,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":84,"length":21,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":107,"length":20,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":135,"length":22,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[129,[{"start":9,"length":14,"messageText":"Module '\"@opentui/core\"' has no exported member 'TextAttributes'.","category":1,"code":2305},{"start":31,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":57,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":73,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":110,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":176,"length":25,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":981,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1141,"length":1914,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[130,[{"start":216,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":238,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":320,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[131,[{"start":9,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":29,"length":20,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":62,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":80,"length":24,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":108,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":132,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[132,[{"start":9,"length":14,"messageText":"Module '\"@opentui/core\"' has no exported member 'TextAttributes'.","category":1,"code":2305},{"start":31,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":57,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":73,"length":26,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":181,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":203,"length":23,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":529,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":702,"length":1937,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[133,[{"start":9,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":19,"length":9,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":30,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":43,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":76,"length":11,"messageText":"Module '\"@opentui/react\"' has no exported member 'useKeyboard'.","category":1,"code":2305},{"start":95,"length":16,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":122,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":144,"length":31,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":186,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":201,"length":23,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":235,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":255,"length":28,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":294,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":313,"length":25,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":349,"length":9,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":366,"length":25,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":404,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":423,"length":21,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":448,"length":20,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":477,"length":22,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":573,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":589,"length":24,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":617,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":636,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":659,"length":20,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":944,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":5626,"length":1329,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[134,[{"start":9,"length":17,"messageText":"Module '\"@opentui/core\"' has no exported member 'createCliRenderer'.","category":1,"code":2305},{"start":33,"length":11,"messageText":"Module '\"@opentui/core\"' has no exported member 'CliRenderer'.","category":1,"code":2305},{"start":52,"length":15,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/core\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":78,"length":10,"messageText":"Module '\"@opentui/react\"' has no exported member 'createRoot'.","category":1,"code":2305},{"start":96,"length":16,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}},{"start":123,"length":6,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":137,"length":13,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":161,"length":21,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":190,"length":28,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":229,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":251,"length":20,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":374,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":9731,"length":41,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":9796,"length":57,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"@opentui/react/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]],[135,[{"start":64,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287},{"start":1547,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[136,[{"start":21,"length":24,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":49,"length":22,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":75,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":93,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":110,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":131,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":151,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":170,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":186,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":202,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":217,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":234,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":255,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":276,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":302,"length":19,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":353,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":373,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":392,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":412,"length":15,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":457,"length":21,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":486,"length":21,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":539,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":553,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":573,"length":13,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[137,[{"start":363,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":377,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":397,"length":19,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":704,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[138,[{"start":365,"length":6,"messageText":"A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.","category":1,"code":1287}]],[139,[{"start":9,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":30,"length":22,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":63,"length":6,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":77,"length":13,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":101,"length":6,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":115,"length":13,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":139,"length":6,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":153,"length":13,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[140,[{"start":9,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":25,"length":16,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[141,[{"start":1285,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1299,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1311,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1323,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1334,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1348,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1362,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1374,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1391,"length":27,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":1430,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1445,"length":28,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":1485,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1507,"length":30,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":1656,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1672,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1696,"length":30,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":1849,"length":24,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1877,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1898,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1919,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1940,"length":22,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1966,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":1984,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2006,"length":25,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":2045,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2064,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2079,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2104,"length":21,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":2137,"length":21,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2166,"length":27,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":2334,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2351,"length":6,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2361,"length":6,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2371,"length":6,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2386,"length":21,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":2527,"length":9,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2540,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2554,"length":17,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2575,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2590,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2609,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2624,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2647,"length":19,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":2783,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2799,"length":18,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":2937,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2954,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":2978,"length":21,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":3117,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":3131,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":3147,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":3170,"length":19,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[142,[{"start":9,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":29,"length":21,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":123,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":146,"length":24,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":249,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":271,"length":23,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":371,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":394,"length":24,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":497,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":512,"length":20,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":540,"length":22,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":664,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":684,"length":21,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[143,[{"start":9,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":24,"length":15,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":101,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":120,"length":20,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":211,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":235,"length":25,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[144,[{"start":29,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":43,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":55,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":67,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":78,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":92,"length":10,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":106,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":118,"length":8,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":135,"length":16,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":182,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":197,"length":17,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":247,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":269,"length":19,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":385,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":401,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":420,"length":14,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":438,"length":15,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":457,"length":13,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":474,"length":20,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":498,"length":12,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":519,"length":19,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":572,"length":7,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":581,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":594,"length":16,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":618,"length":20,"messageText":"An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097},{"start":739,"length":19,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":766,"length":29,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[145,[{"start":9,"length":9,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":26,"length":18,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]],[146,[{"start":9,"length":11,"messageText":"ECMAScript imports and exports cannot be written in a CommonJS file under 'verbatimModuleSyntax'. Adjust the 'type' field in the nearest 'package.json' to make this file an ECMAScript module, or adjust your 'verbatimModuleSyntax', 'module', and 'moduleResolution' settings in TypeScript.","category":1,"code":1295},{"start":28,"length":20,"messageText":"An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.","category":1,"code":5097}]]],"latestChangedDtsFile":"./src/components/help/index.d.ts","version":"5.9.3"}