@sayoriqwq/effect-harness 0.0.1 → 0.0.2

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 (4068) hide show
  1. package/HARNESS.md +55 -23
  2. package/README.md +60 -90
  3. package/dist/bin/effect-harness.js +20 -25
  4. package/dist/bin/effect-harness.js.map +1 -1
  5. package/dist/src/cli/Main.d.ts +3 -2
  6. package/dist/src/cli/Main.js +21 -117
  7. package/dist/src/cli/Main.js.map +1 -1
  8. package/dist/src/harness/Errors.d.ts +2 -2
  9. package/dist/src/harness/Errors.js +4 -4
  10. package/dist/src/harness/Errors.js.map +1 -1
  11. package/dist/src/harness/Guardrails.d.ts +1 -4
  12. package/dist/src/harness/Guardrails.js +27 -46
  13. package/dist/src/harness/Guardrails.js.map +1 -1
  14. package/dist/src/harness/Model.d.ts +40 -32
  15. package/dist/src/harness/Model.js +92 -91
  16. package/dist/src/harness/Model.js.map +1 -1
  17. package/dist/src/harness/ProviderDiscovery.d.ts +169 -0
  18. package/dist/src/harness/ProviderDiscovery.js +153 -0
  19. package/dist/src/harness/ProviderDiscovery.js.map +1 -0
  20. package/dist/src/harness/SourcePin.d.ts +1 -9
  21. package/dist/src/harness/SourcePin.js +120 -226
  22. package/dist/src/harness/SourcePin.js.map +1 -1
  23. package/dist/src/harness/verify/JsonFields.d.ts +1 -0
  24. package/dist/src/harness/verify/JsonFields.js +4 -0
  25. package/dist/src/harness/verify/JsonFields.js.map +1 -0
  26. package/dist/src/harness/verify/Pipeline.d.ts +7 -0
  27. package/dist/src/harness/verify/Pipeline.js +55 -0
  28. package/dist/src/harness/verify/Pipeline.js.map +1 -0
  29. package/dist/src/harness/verify/ProviderProfile.d.ts +3 -0
  30. package/dist/src/harness/verify/ProviderProfile.js +706 -0
  31. package/dist/src/harness/verify/ProviderProfile.js.map +1 -0
  32. package/dist/src/harness/verify/ProviderRepository.d.ts +4 -0
  33. package/dist/src/harness/verify/ProviderRepository.js +127 -0
  34. package/dist/src/harness/verify/ProviderRepository.js.map +1 -0
  35. package/dist/src/harness/verify/Tsgo.d.ts +3 -0
  36. package/dist/src/harness/verify/Tsgo.js +166 -0
  37. package/dist/src/harness/verify/Tsgo.js.map +1 -0
  38. package/dist/src/harness/verify/TsgoMetadata.d.ts +4 -0
  39. package/dist/src/harness/verify/TsgoMetadata.js +50 -0
  40. package/dist/src/harness/verify/TsgoMetadata.js.map +1 -0
  41. package/dist/src/harness/verify/TsgoPolicy.d.ts +205 -0
  42. package/dist/src/harness/verify/TsgoPolicy.js +140 -0
  43. package/dist/src/harness/verify/TsgoPolicy.js.map +1 -0
  44. package/dist/src/harness/verify/TsgoSuppressions.d.ts +2 -0
  45. package/dist/src/harness/verify/TsgoSuppressions.js +24 -0
  46. package/dist/src/harness/verify/TsgoSuppressions.js.map +1 -0
  47. package/dist/src/harness/verify/VerifyStage.d.ts +62 -0
  48. package/dist/src/harness/verify/VerifyStage.js +85 -0
  49. package/dist/src/harness/verify/VerifyStage.js.map +1 -0
  50. package/dist/src/platform/Json.d.ts +2 -6
  51. package/dist/src/platform/Json.js +3 -22
  52. package/dist/src/platform/Json.js.map +1 -1
  53. package/dist/src/platform/Process.d.ts +1 -3
  54. package/dist/src/platform/Process.js +1 -46
  55. package/dist/src/platform/Process.js.map +1 -1
  56. package/harness/code.md +83 -0
  57. package/harness/diagnostic-layers.md +94 -0
  58. package/harness/effect-routes.md +50 -0
  59. package/harness/feedback-loop.md +156 -0
  60. package/harness/index.md +78 -17
  61. package/harness/offcial-guide.md +50 -0
  62. package/harness/offcial-migrate.md +220 -0
  63. package/harness/source.md +74 -35
  64. package/harness/tsgo-routes.md +58 -0
  65. package/harness/tsgo.md +241 -0
  66. package/package.json +30 -31
  67. package/provider/docs/diagnostics.md +48 -0
  68. package/provider/docs/discovery.md +104 -0
  69. package/provider/docs/editor-policy.md +55 -0
  70. package/provider/docs/effect-code.md +41 -0
  71. package/provider/docs/index.md +48 -0
  72. package/provider/docs/managed-surfaces.md +51 -0
  73. package/provider/docs/package-config.md +55 -0
  74. package/provider/docs/quality-policy.md +58 -0
  75. package/provider/docs/source-identity.md +48 -0
  76. package/provider/effect-harness.provider.json +984 -0
  77. package/provider/index.md +185 -0
  78. package/provider/snippets/agents.md +34 -0
  79. package/repos/effect/.changeset/add-adaptive-rate-limiter-store.md +5 -0
  80. package/repos/effect/.changeset/add-values-unprepared.md +17 -0
  81. package/repos/effect/.changeset/calm-tracers-sample.md +5 -0
  82. package/repos/effect/.changeset/curvy-birds-float.md +10 -0
  83. package/repos/effect/.changeset/eff-849-transpose-option.md +5 -0
  84. package/repos/effect/.changeset/every-olives-burn.md +5 -0
  85. package/repos/effect/.changeset/fix-2414.md +5 -0
  86. package/repos/effect/.changeset/fix-2419.md +5 -0
  87. package/repos/effect/.changeset/fix-2497.md +5 -0
  88. package/repos/effect/.changeset/fix-2499.md +5 -0
  89. package/repos/effect/.changeset/fix-anthropic-caller-toolid.md +5 -0
  90. package/repos/effect/.changeset/fix-config-array-default.md +5 -0
  91. package/repos/effect/.changeset/fix-cron-next-missing-day-overflow.md +5 -0
  92. package/repos/effect/.changeset/fix-http-tracer-response-cause.md +5 -0
  93. package/repos/effect/.changeset/fix-httpapi-malformed-json-400.md +5 -0
  94. package/repos/effect/.changeset/fix-rpc-unknown-tag-isolation.md +5 -0
  95. package/repos/effect/.changeset/fix-schema-encoding-checks.md +12 -0
  96. package/repos/effect/.changeset/fix-string-case-digits.md +5 -0
  97. package/repos/effect/.changeset/fix-workflow-defect-reply-serialization.md +5 -0
  98. package/repos/effect/.changeset/frozen-intrinsics-stack-trace-limit.md +7 -0
  99. package/repos/effect/.changeset/fuzzy-crews-fold.md +5 -0
  100. package/repos/effect/.changeset/good-trees-pull.md +5 -0
  101. package/repos/effect/.changeset/major-chairs-design.md +5 -0
  102. package/repos/effect/.changeset/many-badgers-obey.md +5 -0
  103. package/repos/effect/.changeset/modern-carrots-see.md +5 -0
  104. package/repos/effect/.changeset/neat-windows-buy.md +10 -0
  105. package/repos/effect/.changeset/openapi-generator-sse-constraint-decoder.md +7 -0
  106. package/repos/effect/.changeset/openrouter-input-audio.md +9 -0
  107. package/repos/effect/.changeset/pre.json +46 -0
  108. package/repos/effect/.changeset/pretty-moments-clap.md +5 -0
  109. package/repos/effect/.changeset/quiet-tigers-yell.md +5 -0
  110. package/repos/effect/.changeset/random-choice.md +5 -0
  111. package/repos/effect/.changeset/remove-schema-stringtree-keep-declarations.md +5 -0
  112. package/repos/effect/.changeset/rpc-client-http-early-close.md +5 -0
  113. package/repos/effect/.changeset/schema-lazy-bottom.md +13 -0
  114. package/repos/effect/.changeset/semantic-matching.md +13 -0
  115. package/repos/effect/.changeset/short-stamps-throw.md +5 -0
  116. package/repos/effect/.changeset/slick-signs-wish.md +5 -0
  117. package/repos/effect/.changeset/slick-toes-rush.md +5 -0
  118. package/repos/effect/.changeset/sqlite-bun-prepare-error-channel.md +5 -0
  119. package/repos/effect/.changeset/sqlite-do-durable-object-transactions.md +5 -0
  120. package/repos/effect/.changeset/to-codec-json-schema.md +5 -0
  121. package/repos/effect/.changeset/try-promise-catch-defect.md +11 -0
  122. package/repos/effect/.changeset/twelve-dragons-move.md +5 -0
  123. package/repos/effect/.changeset/use-url-can-parse.md +5 -0
  124. package/repos/effect/.oxlintrc.json +1 -0
  125. package/repos/effect/AGENTS.md +9 -0
  126. package/repos/effect/cookbooks/schedule.md +425 -3197
  127. package/repos/effect/migration/schema.md +38 -0
  128. package/repos/effect/package.json +3 -1
  129. package/repos/effect/packages/ai/anthropic/CHANGELOG.md +65 -0
  130. package/repos/effect/packages/ai/anthropic/package.json +1 -1
  131. package/repos/effect/packages/ai/anthropic/src/AnthropicLanguageModel.ts +3 -3
  132. package/repos/effect/packages/ai/anthropic/src/Generated.ts +2 -2
  133. package/repos/effect/packages/ai/openai/CHANGELOG.md +63 -0
  134. package/repos/effect/packages/ai/openai/package.json +1 -1
  135. package/repos/effect/packages/ai/openai/src/Generated.ts +3 -3
  136. package/repos/effect/packages/ai/openai/src/OpenAiLanguageModel.ts +2 -2
  137. package/repos/effect/packages/ai/openai/src/internal/utilities.ts +0 -6
  138. package/repos/effect/packages/ai/openai-compat/CHANGELOG.md +63 -0
  139. package/repos/effect/packages/ai/openai-compat/package.json +1 -1
  140. package/repos/effect/packages/ai/openai-compat/src/OpenAiLanguageModel.ts +1 -1
  141. package/repos/effect/packages/ai/openai-compat/src/internal/utilities.ts +0 -9
  142. package/repos/effect/packages/ai/openrouter/CHANGELOG.md +69 -0
  143. package/repos/effect/packages/ai/openrouter/package.json +1 -1
  144. package/repos/effect/packages/ai/openrouter/src/Generated.ts +3 -3
  145. package/repos/effect/packages/ai/openrouter/src/OpenRouterLanguageModel.ts +66 -1
  146. package/repos/effect/packages/ai/openrouter/test/OpenRouterLanguageModel.test.ts +265 -0
  147. package/repos/effect/packages/atom/react/CHANGELOG.md +63 -0
  148. package/repos/effect/packages/atom/react/package.json +1 -1
  149. package/repos/effect/packages/atom/solid/CHANGELOG.md +63 -0
  150. package/repos/effect/packages/atom/solid/package.json +1 -1
  151. package/repos/effect/packages/atom/vue/CHANGELOG.md +63 -0
  152. package/repos/effect/packages/atom/vue/package.json +1 -1
  153. package/repos/effect/packages/effect/CHANGELOG.md +178 -0
  154. package/repos/effect/packages/effect/SCHEMA.md +19 -38
  155. package/repos/effect/packages/effect/package.json +1 -1
  156. package/repos/effect/packages/effect/src/ChannelSchema.ts +9 -9
  157. package/repos/effect/packages/effect/src/Config.ts +15 -6
  158. package/repos/effect/packages/effect/src/ConfigProvider.ts +4 -3
  159. package/repos/effect/packages/effect/src/Context.ts +4 -5
  160. package/repos/effect/packages/effect/src/Cron.ts +4 -0
  161. package/repos/effect/packages/effect/src/Effect.ts +86 -36
  162. package/repos/effect/packages/effect/src/Latch.ts +21 -0
  163. package/repos/effect/packages/effect/src/Layer.ts +4 -4
  164. package/repos/effect/packages/effect/src/LayerMap.ts +4 -3
  165. package/repos/effect/packages/effect/src/Random.ts +42 -0
  166. package/repos/effect/packages/effect/src/Schedule.ts +8 -8
  167. package/repos/effect/packages/effect/src/Schema.ts +1071 -715
  168. package/repos/effect/packages/effect/src/SchemaAST.ts +262 -176
  169. package/repos/effect/packages/effect/src/SchemaParser.ts +85 -77
  170. package/repos/effect/packages/effect/src/SchemaTransformation.ts +5 -6
  171. package/repos/effect/packages/effect/src/String.ts +46 -12
  172. package/repos/effect/packages/effect/src/internal/effect.ts +76 -61
  173. package/repos/effect/packages/effect/src/internal/matcher.ts +0 -5
  174. package/repos/effect/packages/effect/src/internal/request.ts +1 -1
  175. package/repos/effect/packages/effect/src/internal/schema/arbitrary.ts +24 -3
  176. package/repos/effect/packages/effect/src/internal/schema/representation.ts +1 -5
  177. package/repos/effect/packages/effect/src/internal/schema/schema.ts +1 -1
  178. package/repos/effect/packages/effect/src/internal/stackTraceLimit.ts +63 -0
  179. package/repos/effect/packages/effect/src/internal/tracer.ts +4 -3
  180. package/repos/effect/packages/effect/src/testing/TestSchema.ts +14 -13
  181. package/repos/effect/packages/effect/src/unstable/ai/AnthropicStructuredOutput.ts +2 -2
  182. package/repos/effect/packages/effect/src/unstable/ai/Chat.ts +1 -1
  183. package/repos/effect/packages/effect/src/unstable/ai/LanguageModel.ts +7 -7
  184. package/repos/effect/packages/effect/src/unstable/ai/McpSchema.ts +16 -14
  185. package/repos/effect/packages/effect/src/unstable/ai/McpServer.ts +7 -7
  186. package/repos/effect/packages/effect/src/unstable/ai/OpenAiStructuredOutput.ts +2 -2
  187. package/repos/effect/packages/effect/src/unstable/ai/Response.ts +9 -5
  188. package/repos/effect/packages/effect/src/unstable/ai/Tool.ts +53 -50
  189. package/repos/effect/packages/effect/src/unstable/cli/Argument.ts +9 -8
  190. package/repos/effect/packages/effect/src/unstable/cli/Flag.ts +9 -8
  191. package/repos/effect/packages/effect/src/unstable/cli/Param.ts +11 -86
  192. package/repos/effect/packages/effect/src/unstable/cli/Primitive.ts +5 -6
  193. package/repos/effect/packages/effect/src/unstable/cli/Prompt.ts +1 -1
  194. package/repos/effect/packages/effect/src/unstable/cli/internal/ansi.ts +0 -33
  195. package/repos/effect/packages/effect/src/unstable/cli/internal/config.ts +0 -8
  196. package/repos/effect/packages/effect/src/unstable/cli/internal/parser.ts +2 -2
  197. package/repos/effect/packages/effect/src/unstable/cluster/MessageStorage.ts +1 -1
  198. package/repos/effect/packages/effect/src/unstable/cluster/Reply.ts +6 -2
  199. package/repos/effect/packages/effect/src/unstable/cluster/ShardingConfig.ts +2 -2
  200. package/repos/effect/packages/effect/src/unstable/devtools/DevToolsSchema.ts +1 -1
  201. package/repos/effect/packages/effect/src/unstable/encoding/Msgpack.ts +9 -7
  202. package/repos/effect/packages/effect/src/unstable/encoding/Ndjson.ts +10 -10
  203. package/repos/effect/packages/effect/src/unstable/encoding/Sse.ts +1 -1
  204. package/repos/effect/packages/effect/src/unstable/eventlog/Event.ts +3 -3
  205. package/repos/effect/packages/effect/src/unstable/http/HttpBody.ts +1 -1
  206. package/repos/effect/packages/effect/src/unstable/http/HttpClient.ts +78 -23
  207. package/repos/effect/packages/effect/src/unstable/http/HttpClientRequest.ts +1 -1
  208. package/repos/effect/packages/effect/src/unstable/http/HttpIncomingMessage.ts +1 -1
  209. package/repos/effect/packages/effect/src/unstable/http/HttpMiddleware.ts +12 -3
  210. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApi.ts +1 -1
  211. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApiBuilder.ts +42 -26
  212. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApiClient.ts +10 -10
  213. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApiEndpoint.ts +45 -33
  214. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApiMiddleware.ts +6 -5
  215. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApiSchema.ts +16 -43
  216. package/repos/effect/packages/effect/src/unstable/httpapi/OpenApi.ts +5 -5
  217. package/repos/effect/packages/effect/src/unstable/observability/OtlpTracer.ts +2 -1
  218. package/repos/effect/packages/effect/src/unstable/observability/internal/otlpProtobuf.ts +0 -75
  219. package/repos/effect/packages/effect/src/unstable/observability/internal/protobuf.ts +0 -42
  220. package/repos/effect/packages/effect/src/unstable/persistence/KeyValueStore.ts +2 -2
  221. package/repos/effect/packages/effect/src/unstable/persistence/Persistable.ts +7 -7
  222. package/repos/effect/packages/effect/src/unstable/persistence/PersistedQueue.ts +4 -4
  223. package/repos/effect/packages/effect/src/unstable/persistence/Persistence.ts +5 -5
  224. package/repos/effect/packages/effect/src/unstable/persistence/RateLimiter.ts +599 -5
  225. package/repos/effect/packages/effect/src/unstable/reactivity/AsyncResult.ts +4 -4
  226. package/repos/effect/packages/effect/src/unstable/reactivity/Atom.ts +1 -1
  227. package/repos/effect/packages/effect/src/unstable/reactivity/AtomHttpApi.ts +1 -1
  228. package/repos/effect/packages/effect/src/unstable/rpc/Rpc.ts +7 -8
  229. package/repos/effect/packages/effect/src/unstable/rpc/RpcClient.ts +26 -4
  230. package/repos/effect/packages/effect/src/unstable/rpc/RpcGroup.ts +3 -4
  231. package/repos/effect/packages/effect/src/unstable/rpc/RpcMessage.ts +19 -0
  232. package/repos/effect/packages/effect/src/unstable/rpc/RpcMiddleware.ts +6 -5
  233. package/repos/effect/packages/effect/src/unstable/rpc/RpcSchema.ts +12 -9
  234. package/repos/effect/packages/effect/src/unstable/rpc/RpcServer.ts +4 -4
  235. package/repos/effect/packages/effect/src/unstable/rpc/RpcWorker.ts +3 -3
  236. package/repos/effect/packages/effect/src/unstable/schema/Model.ts +2 -2
  237. package/repos/effect/packages/effect/src/unstable/schema/VariantSchema.ts +19 -17
  238. package/repos/effect/packages/effect/src/unstable/sql/SqlConnection.ts +5 -0
  239. package/repos/effect/packages/effect/src/unstable/sql/SqlModel.ts +2 -2
  240. package/repos/effect/packages/effect/src/unstable/sql/SqlResolver.ts +21 -8
  241. package/repos/effect/packages/effect/src/unstable/sql/SqlSchema.ts +5 -5
  242. package/repos/effect/packages/effect/src/unstable/sql/Statement.ts +11 -0
  243. package/repos/effect/packages/effect/src/unstable/workflow/Activity.ts +8 -6
  244. package/repos/effect/packages/effect/src/unstable/workflow/DurableDeferred.ts +33 -33
  245. package/repos/effect/packages/effect/src/unstable/workflow/Workflow.ts +5 -5
  246. package/repos/effect/packages/effect/src/unstable/workflow/WorkflowEngine.ts +11 -11
  247. package/repos/effect/packages/effect/test/Config.test.ts +60 -0
  248. package/repos/effect/packages/effect/test/ConfigProvider.test.ts +11 -0
  249. package/repos/effect/packages/effect/test/Cron.test.ts +15 -0
  250. package/repos/effect/packages/effect/test/Effect.test.ts +252 -0
  251. package/repos/effect/packages/effect/test/Latch.test.ts +12 -0
  252. package/repos/effect/packages/effect/test/Random.test.ts +37 -0
  253. package/repos/effect/packages/effect/test/Request.test.ts +28 -0
  254. package/repos/effect/packages/effect/test/Schedule.test.ts +21 -4
  255. package/repos/effect/packages/effect/test/StackTraceLimit.test.ts +60 -0
  256. package/repos/effect/packages/effect/test/String.test.ts +25 -0
  257. package/repos/effect/packages/effect/test/cluster/ClusterWorkflowEngine.test.ts +42 -1
  258. package/repos/effect/packages/effect/test/rpc/RpcClient.test.ts +28 -3
  259. package/repos/effect/packages/effect/test/schema/Schema.test.ts +621 -109
  260. package/repos/effect/packages/effect/test/schema/SchemaAST.test.ts +132 -11
  261. package/repos/effect/packages/effect/test/schema/representation/fromASTs.test.ts +291 -2
  262. package/repos/effect/packages/effect/test/schema/representation/toCodeDocument.test.ts +1 -1
  263. package/repos/effect/packages/effect/test/schema/toArbitrary.test.ts +21 -6
  264. package/repos/effect/packages/effect/test/schema/toCodec.test.ts +94 -50
  265. package/repos/effect/packages/effect/test/schema/toEquivalence.test.ts +7 -0
  266. package/repos/effect/packages/effect/test/schema/toFormatter.test.ts +9 -1
  267. package/repos/effect/packages/effect/test/schema/toJsonSchemaDocument.test.ts +1 -1
  268. package/repos/effect/packages/effect/test/schema/v3-v4.test.ts +6 -6
  269. package/repos/effect/packages/effect/test/unstable/ai/AnthropicStructuredOutput.test.ts +2 -2
  270. package/repos/effect/packages/effect/test/unstable/ai/OpenAiStructuredOutput.test.ts +2 -2
  271. package/repos/effect/packages/effect/test/unstable/cli/Arguments.test.ts +8 -2
  272. package/repos/effect/packages/effect/test/unstable/cli/Param.test.ts +8 -2
  273. package/repos/effect/packages/effect/test/unstable/cli/Primitive.test.ts +16 -2
  274. package/repos/effect/packages/effect/test/unstable/cli/Prompt.test.ts +32 -0
  275. package/repos/effect/packages/effect/test/unstable/http/HttpClient.test.ts +442 -1
  276. package/repos/effect/packages/effect/test/unstable/http/HttpMiddleware.test.ts +41 -0
  277. package/repos/effect/packages/effect/test/unstable/httpapi/HttpApiBuilder.test.ts +58 -1
  278. package/repos/effect/packages/effect/test/unstable/httpapi/HttpApiSchema.test.ts +16 -2
  279. package/repos/effect/packages/effect/test/unstable/persistence/RateLimiter.test.ts +697 -0
  280. package/repos/effect/packages/effect/test/unstable/sql/SqlResolver.test.ts +37 -0
  281. package/repos/effect/packages/effect/typeperf/README.md +176 -0
  282. package/repos/effect/packages/effect/typeperf/config.json +99 -0
  283. package/repos/effect/packages/effect/typeperf/run.mjs +195 -0
  284. package/repos/effect/packages/effect/typeperf/suites/schema/baseline.ts +4 -0
  285. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/array.ts +14 -0
  286. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/brand.ts +10 -0
  287. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/decode-unknown-effect.ts +8 -0
  288. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/encode-unknown-effect.ts +8 -0
  289. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/exit.ts +14 -0
  290. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/non-empty-array.ts +14 -0
  291. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/record.ts +14 -0
  292. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/struct-mixed.ts +22 -0
  293. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/struct-mutable-only.ts +22 -0
  294. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/struct-optional-only.ts +22 -0
  295. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/struct-required.ts +22 -0
  296. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/struct-with-rest.ts +17 -0
  297. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/tagged-union.ts +16 -0
  298. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-codec-array-from-single.ts +12 -0
  299. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-codec-json.ts +13 -0
  300. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-codec-string-tree.ts +10 -0
  301. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-encoded.ts +10 -0
  302. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-standard-json-schema.ts +11 -0
  303. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-type.ts +10 -0
  304. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/tuple-with-rest.ts +20 -0
  305. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/tuple.ts +16 -0
  306. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/union.ts +15 -0
  307. package/repos/effect/packages/effect/typeperf/suites/schema/thresholds.json +68 -0
  308. package/repos/effect/packages/effect/typetest/Config.tst.ts +12 -0
  309. package/repos/effect/packages/effect/typetest/Effect.tst.ts +70 -0
  310. package/repos/effect/packages/effect/typetest/Random.tst.ts +22 -0
  311. package/repos/effect/packages/effect/typetest/schema/Array.tst.ts +18 -0
  312. package/repos/effect/packages/effect/typetest/schema/Schema.tst.ts +96 -1
  313. package/repos/effect/packages/effect/typetest/schema/Struct.tst.ts +49 -19
  314. package/repos/effect/packages/effect/typetest/schema/Union.tst.ts +18 -0
  315. package/repos/effect/packages/effect/typetest/schema/toArbitrary.tst.ts +1 -1
  316. package/repos/effect/packages/opentelemetry/CHANGELOG.md +65 -0
  317. package/repos/effect/packages/opentelemetry/package.json +1 -1
  318. package/repos/effect/packages/opentelemetry/src/Tracer.ts +1 -1
  319. package/repos/effect/packages/opentelemetry/test/Tracer.test.ts +16 -0
  320. package/repos/effect/packages/platform-browser/CHANGELOG.md +63 -0
  321. package/repos/effect/packages/platform-browser/package.json +1 -1
  322. package/repos/effect/packages/platform-bun/CHANGELOG.md +72 -0
  323. package/repos/effect/packages/platform-bun/package.json +1 -1
  324. package/repos/effect/packages/platform-node/CHANGELOG.md +74 -0
  325. package/repos/effect/packages/platform-node/package.json +1 -1
  326. package/repos/effect/packages/platform-node/src/NodeHttpServer.ts +4 -3
  327. package/repos/effect/packages/platform-node/test/RpcServer.test.ts +81 -2
  328. package/repos/effect/packages/platform-node-shared/CHANGELOG.md +63 -0
  329. package/repos/effect/packages/platform-node-shared/package.json +1 -1
  330. package/repos/effect/packages/platform-node-shared/test/fixtures/bash/parent-exits-early.sh +0 -0
  331. package/repos/effect/packages/platform-node-shared/test/fixtures/bash/spawn-children.sh +0 -0
  332. package/repos/effect/packages/sql/clickhouse/CHANGELOG.md +74 -0
  333. package/repos/effect/packages/sql/clickhouse/package.json +1 -1
  334. package/repos/effect/packages/sql/clickhouse/src/ClickhouseClient.ts +3 -0
  335. package/repos/effect/packages/sql/d1/CHANGELOG.md +65 -0
  336. package/repos/effect/packages/sql/d1/package.json +1 -1
  337. package/repos/effect/packages/sql/d1/src/D1Client.ts +18 -0
  338. package/repos/effect/packages/sql/libsql/CHANGELOG.md +65 -0
  339. package/repos/effect/packages/sql/libsql/package.json +1 -1
  340. package/repos/effect/packages/sql/libsql/src/LibsqlClient.ts +3 -0
  341. package/repos/effect/packages/sql/mssql/CHANGELOG.md +71 -0
  342. package/repos/effect/packages/sql/mssql/package.json +1 -1
  343. package/repos/effect/packages/sql/mssql/src/MssqlClient.ts +16 -1
  344. package/repos/effect/packages/sql/mysql2/CHANGELOG.md +65 -0
  345. package/repos/effect/packages/sql/mysql2/package.json +1 -1
  346. package/repos/effect/packages/sql/mysql2/src/MysqlClient.ts +3 -0
  347. package/repos/effect/packages/sql/pg/CHANGELOG.md +65 -0
  348. package/repos/effect/packages/sql/pg/package.json +1 -1
  349. package/repos/effect/packages/sql/pg/src/PgClient.ts +3 -0
  350. package/repos/effect/packages/sql/pglite/CHANGELOG.md +65 -0
  351. package/repos/effect/packages/sql/pglite/package.json +1 -1
  352. package/repos/effect/packages/sql/pglite/src/PgliteClient.ts +10 -0
  353. package/repos/effect/packages/sql/sqlite-bun/CHANGELOG.md +67 -0
  354. package/repos/effect/packages/sql/sqlite-bun/package.json +1 -1
  355. package/repos/effect/packages/sql/sqlite-bun/src/SqliteClient.ts +15 -9
  356. package/repos/effect/packages/sql/sqlite-do/CHANGELOG.md +67 -0
  357. package/repos/effect/packages/sql/sqlite-do/package.json +1 -1
  358. package/repos/effect/packages/sql/sqlite-do/src/SqliteClient.ts +122 -30
  359. package/repos/effect/packages/sql/sqlite-do/src/SqliteMigrator.ts +19 -4
  360. package/repos/effect/packages/sql/sqlite-do/test/Client.test.ts +304 -9
  361. package/repos/effect/packages/sql/sqlite-node/CHANGELOG.md +65 -0
  362. package/repos/effect/packages/sql/sqlite-node/package.json +1 -1
  363. package/repos/effect/packages/sql/sqlite-node/src/SqliteClient.ts +22 -0
  364. package/repos/effect/packages/sql/sqlite-node/test/Client.test.ts +2 -0
  365. package/repos/effect/packages/sql/sqlite-react-native/CHANGELOG.md +65 -0
  366. package/repos/effect/packages/sql/sqlite-react-native/package.json +1 -1
  367. package/repos/effect/packages/sql/sqlite-react-native/src/SqliteClient.ts +3 -0
  368. package/repos/effect/packages/sql/sqlite-wasm/CHANGELOG.md +65 -0
  369. package/repos/effect/packages/sql/sqlite-wasm/package.json +1 -1
  370. package/repos/effect/packages/sql/sqlite-wasm/src/SqliteClient.ts +6 -0
  371. package/repos/effect/packages/tools/ai-docgen/src/main.ts +3 -1
  372. package/repos/effect/packages/tools/bundle/README.md +226 -0
  373. package/repos/effect/packages/tools/bundle/fixtures/schema-class.ts +12 -0
  374. package/repos/effect/packages/tools/bundle/src/Cli.ts +23 -4
  375. package/repos/effect/packages/tools/bundle/src/Plugins.ts +55 -10
  376. package/repos/effect/packages/tools/bundle/src/Reporter.ts +106 -7
  377. package/repos/effect/packages/tools/bundle/src/Rollup.ts +24 -2
  378. package/repos/effect/packages/tools/bundle/src/bin.ts +0 -0
  379. package/repos/effect/packages/tools/bundle/test/Plugins.test.ts +74 -0
  380. package/repos/effect/packages/tools/bundle/vitest.config.ts +6 -0
  381. package/repos/effect/packages/tools/jsdocs/src/Jsdocs.ts +61 -0
  382. package/repos/effect/packages/tools/jsdocs/src/bin.ts +20 -8
  383. package/repos/effect/packages/tools/jsdocs/test/jsdocs.test.ts +54 -1
  384. package/repos/effect/packages/tools/openapi-generator/CHANGELOG.md +76 -0
  385. package/repos/effect/packages/tools/openapi-generator/package.json +1 -1
  386. package/repos/effect/packages/tools/openapi-generator/src/OpenApiTransformer.ts +3 -3
  387. package/repos/effect/packages/tools/openapi-generator/src/bin.ts +0 -0
  388. package/repos/effect/packages/tools/openapi-generator/test/OpenApiGenerator.test.ts +4 -3
  389. package/repos/effect/packages/tools/oxc/oxlintrc.json +1 -0
  390. package/repos/effect/packages/tools/oxc/src/oxlint/index.ts +2 -0
  391. package/repos/effect/packages/tools/oxc/src/oxlint/rules/no-unused-internal.ts +642 -0
  392. package/repos/effect/packages/tools/oxc/test/no-unused-internal.test.ts +129 -0
  393. package/repos/effect/packages/tools/utils/src/bin.ts +0 -0
  394. package/repos/effect/packages/vitest/CHANGELOG.md +63 -0
  395. package/repos/effect/packages/vitest/package.json +1 -1
  396. package/repos/effect/scripts/bundle-analyze.sh +61 -0
  397. package/repos/effect/scripts/bundle-compare-selected.sh +97 -0
  398. package/repos/effect/scripts/bundle-compare.sh +0 -0
  399. package/repos/effect/scripts/worktree-setup.sh +0 -0
  400. package/repos/effect/tsconfig.json +3 -0
  401. package/repos/effect/tsconfig.packages.json +1 -0
  402. package/repos/effect.subtree.json +36 -12
  403. package/repos/tsgo/.changeset/config.json +22 -0
  404. package/repos/tsgo/.cuggino.json +1 -0
  405. package/repos/tsgo/.gitattributes +1 -0
  406. package/repos/tsgo/.github/workflows/ci.yml +105 -0
  407. package/repos/tsgo/.github/workflows/generate-stable-branch.yml +173 -0
  408. package/repos/tsgo/.github/workflows/refresh-flake-hash.yml +90 -0
  409. package/repos/tsgo/.github/workflows/release.yml +148 -0
  410. package/repos/tsgo/.github/workflows/update-typescript-go.yml +315 -0
  411. package/repos/tsgo/.github/workflows/validate-generated-stable.yml +152 -0
  412. package/repos/tsgo/.github/workflows/version.yml +48 -0
  413. package/repos/tsgo/.gitmodules +4 -0
  414. package/repos/tsgo/.golangci.yml +92 -0
  415. package/repos/tsgo/.opencode/commands/port-commit.md +25 -0
  416. package/repos/tsgo/.specs/ast-navigation-utilities.md +118 -0
  417. package/repos/tsgo/.specs/auto-import-style-overrides.md +75 -0
  418. package/repos/tsgo/.specs/cli-platform-filesystem.md +24 -0
  419. package/repos/tsgo/.specs/completion-infrastructure.md +105 -0
  420. package/repos/tsgo/.specs/deterministic-keys.md +138 -0
  421. package/repos/tsgo/.specs/diagnostic-metadata-generation.md +131 -0
  422. package/repos/tsgo/.specs/diagnostic-metadata-previews.md +97 -0
  423. package/repos/tsgo/.specs/diagnostics-and-quickfixes-patterns.md +231 -0
  424. package/repos/tsgo/.specs/document-symbol-postprocessing.md +68 -0
  425. package/repos/tsgo/.specs/duplicate-package.md +52 -0
  426. package/repos/tsgo/.specs/effect-fn-opportunity-layer-members.md +31 -0
  427. package/repos/tsgo/.specs/effect-links-type-cache.md +144 -0
  428. package/repos/tsgo/.specs/effect-type-version-detection.md +37 -0
  429. package/repos/tsgo/.specs/fixable-context.md +123 -0
  430. package/repos/tsgo/.specs/inlay-hints-gen-suppression.md +53 -0
  431. package/repos/tsgo/.specs/layer-info-mermaid-links.md +59 -0
  432. package/repos/tsgo/.specs/missed-pipeable-opportunity.md +82 -0
  433. package/repos/tsgo/.specs/missing-effect-error-return-awareness.md +21 -0
  434. package/repos/tsgo/.specs/path-scoped-diagnostic-config.md +265 -0
  435. package/repos/tsgo/.specs/perf-replace-iterchildren-with-foreachchild.md +124 -0
  436. package/repos/tsgo/.specs/quick-fix-baselines.md +59 -0
  437. package/repos/tsgo/.specs/refactor-infrastructure.md +93 -0
  438. package/repos/tsgo/.specs/release-prepare.md +39 -0
  439. package/repos/tsgo/.specs/rule-context.md +82 -0
  440. package/repos/tsgo/.specs/scope-aware-global-diagnostics.md +68 -0
  441. package/repos/tsgo/.specs/setup-diagnostic-prompt-parity.md +47 -0
  442. package/repos/tsgo/.specs/setup-implicit-prepare-script.md +27 -0
  443. package/repos/tsgo/.specs/setup-unified-pipeline.md +41 -0
  444. package/repos/tsgo/.specs/tsconfig-schema-generation.md +46 -0
  445. package/repos/tsgo/.specs/tsgo-cli-only.md +33 -0
  446. package/repos/tsgo/.specs/wildcard-directives.md +45 -0
  447. package/repos/tsgo/.vscode/settings.json +33 -0
  448. package/repos/tsgo/AGENTS.md +63 -0
  449. package/repos/tsgo/LICENSE +21 -0
  450. package/repos/tsgo/README.md +297 -0
  451. package/repos/tsgo/_packages/tsgo/CHANGELOG.md +619 -0
  452. package/repos/tsgo/_packages/tsgo/LICENSE +21 -0
  453. package/repos/tsgo/_packages/tsgo/package.json +50 -0
  454. package/repos/tsgo/_packages/tsgo/src/ansi.ts +29 -0
  455. package/repos/tsgo/_packages/tsgo/src/cli.ts +348 -0
  456. package/repos/tsgo/_packages/tsgo/src/config.ts +38 -0
  457. package/repos/tsgo/_packages/tsgo/src/metadata.json +2020 -0
  458. package/repos/tsgo/_packages/tsgo/src/presets.ts +133 -0
  459. package/repos/tsgo/_packages/tsgo/src/setup/assessment.ts +233 -0
  460. package/repos/tsgo/_packages/tsgo/src/setup/changes.ts +969 -0
  461. package/repos/tsgo/_packages/tsgo/src/setup/consts.ts +55 -0
  462. package/repos/tsgo/_packages/tsgo/src/setup/diff-renderer.ts +295 -0
  463. package/repos/tsgo/_packages/tsgo/src/setup/errors.ts +26 -0
  464. package/repos/tsgo/_packages/tsgo/src/setup/index.ts +31 -0
  465. package/repos/tsgo/_packages/tsgo/src/setup/rule-info.ts +69 -0
  466. package/repos/tsgo/_packages/tsgo/src/setup/rule-prompt.ts +614 -0
  467. package/repos/tsgo/_packages/tsgo/src/setup/target-prompt.ts +169 -0
  468. package/repos/tsgo/_packages/tsgo/src/setup/target.ts +34 -0
  469. package/repos/tsgo/_packages/tsgo/src/setup/tsconfig-prompt.ts +93 -0
  470. package/repos/tsgo/_packages/tsgo/src/setup/types.ts +98 -0
  471. package/repos/tsgo/_packages/tsgo/test/config-cli.test.ts +84 -0
  472. package/repos/tsgo/_packages/tsgo/test/presets.test.ts +48 -0
  473. package/repos/tsgo/_packages/tsgo/test/setup/__snapshots__/setup-cli.test.ts.snap +866 -0
  474. package/repos/tsgo/_packages/tsgo/test/setup/changes.test.ts +668 -0
  475. package/repos/tsgo/_packages/tsgo/test/setup/consts.test.ts +38 -0
  476. package/repos/tsgo/_packages/tsgo/test/setup/diff-renderer.test.ts +225 -0
  477. package/repos/tsgo/_packages/tsgo/test/setup/setup-cli.test.ts +797 -0
  478. package/repos/tsgo/_packages/tsgo/tsconfig.json +7 -0
  479. package/repos/tsgo/_packages/tsgo/tsconfig.src.json +17 -0
  480. package/repos/tsgo/_packages/tsgo/tsconfig.test.json +18 -0
  481. package/repos/tsgo/_packages/tsgo/tsdown.config.ts +37 -0
  482. package/repos/tsgo/_packages/tsgo/vitest.config.ts +7 -0
  483. package/repos/tsgo/_packages/tsgo-darwin-arm64/CHANGELOG.md +193 -0
  484. package/repos/tsgo/_packages/tsgo-darwin-arm64/LICENSE +21 -0
  485. package/repos/tsgo/_packages/tsgo-darwin-arm64/README.md +1 -0
  486. package/repos/tsgo/_packages/tsgo-darwin-arm64/package.json +29 -0
  487. package/repos/tsgo/_packages/tsgo-darwin-x64/CHANGELOG.md +193 -0
  488. package/repos/tsgo/_packages/tsgo-darwin-x64/LICENSE +21 -0
  489. package/repos/tsgo/_packages/tsgo-darwin-x64/README.md +1 -0
  490. package/repos/tsgo/_packages/tsgo-darwin-x64/package.json +29 -0
  491. package/repos/tsgo/_packages/tsgo-linux-arm/CHANGELOG.md +193 -0
  492. package/repos/tsgo/_packages/tsgo-linux-arm/LICENSE +21 -0
  493. package/repos/tsgo/_packages/tsgo-linux-arm/README.md +1 -0
  494. package/repos/tsgo/_packages/tsgo-linux-arm/package.json +29 -0
  495. package/repos/tsgo/_packages/tsgo-linux-arm64/CHANGELOG.md +193 -0
  496. package/repos/tsgo/_packages/tsgo-linux-arm64/LICENSE +21 -0
  497. package/repos/tsgo/_packages/tsgo-linux-arm64/README.md +1 -0
  498. package/repos/tsgo/_packages/tsgo-linux-arm64/package.json +29 -0
  499. package/repos/tsgo/_packages/tsgo-linux-x64/CHANGELOG.md +193 -0
  500. package/repos/tsgo/_packages/tsgo-linux-x64/LICENSE +21 -0
  501. package/repos/tsgo/_packages/tsgo-linux-x64/README.md +1 -0
  502. package/repos/tsgo/_packages/tsgo-linux-x64/package.json +29 -0
  503. package/repos/tsgo/_packages/tsgo-win32-arm64/CHANGELOG.md +193 -0
  504. package/repos/tsgo/_packages/tsgo-win32-arm64/LICENSE +21 -0
  505. package/repos/tsgo/_packages/tsgo-win32-arm64/README.md +1 -0
  506. package/repos/tsgo/_packages/tsgo-win32-arm64/package.json +29 -0
  507. package/repos/tsgo/_packages/tsgo-win32-x64/CHANGELOG.md +193 -0
  508. package/repos/tsgo/_packages/tsgo-win32-x64/LICENSE +21 -0
  509. package/repos/tsgo/_packages/tsgo-win32-x64/README.md +1 -0
  510. package/repos/tsgo/_packages/tsgo-win32-x64/package.json +29 -0
  511. package/repos/tsgo/_patches/001-cmd-tsgo-main.patch +16 -0
  512. package/repos/tsgo/_patches/002-checker-checker.patch +74 -0
  513. package/repos/tsgo/_patches/003-checker-exports.patch +27 -0
  514. package/repos/tsgo/_patches/004-checker-relater.patch +23 -0
  515. package/repos/tsgo/_patches/005-checker-types.patch +26 -0
  516. package/repos/tsgo/_patches/006-compiler-program.patch +15 -0
  517. package/repos/tsgo/_patches/007-core-compileroptions.patch +23 -0
  518. package/repos/tsgo/_patches/008-diagnostics-generate.patch +20 -0
  519. package/repos/tsgo/_patches/009-execute-tsc-emit.patch +69 -0
  520. package/repos/tsgo/_patches/010-fourslash-fourslash.patch +417 -0
  521. package/repos/tsgo/_patches/011-ls-codeactions.patch +117 -0
  522. package/repos/tsgo/_patches/012-ls-hover.patch +41 -0
  523. package/repos/tsgo/_patches/013-tsoptions-parsinghelpers.patch +69 -0
  524. package/repos/tsgo/_patches/014-ast-utilities-nil-check.patch +13 -0
  525. package/repos/tsgo/_patches/015-ls-inlay-hints.patch +36 -0
  526. package/repos/tsgo/_patches/017-ls-server-refactor-capability.patch +12 -0
  527. package/repos/tsgo/_patches/018-ls-autoimport-stylepolicy.patch +170 -0
  528. package/repos/tsgo/_patches/021-core-version-suffix.patch +18 -0
  529. package/repos/tsgo/_patches/022-ls-completions.patch +55 -0
  530. package/repos/tsgo/_patches/023-checker-effect-links.patch +12 -0
  531. package/repos/tsgo/_patches/024-ls-document-symbols.patch +36 -0
  532. package/repos/tsgo/_patches/025-tsoptions-diagnostic-scopes.patch +31 -0
  533. package/repos/tsgo/_patches/027-ls-autoimport-view.patch +42 -0
  534. package/repos/tsgo/_tools/gen_shims/main.go +516 -0
  535. package/repos/tsgo/_tools/perf-check-tsgo.sh +166 -0
  536. package/repos/tsgo/_tools/release-prepare.sh +190 -0
  537. package/repos/tsgo/_tools/setup-repo.sh +129 -0
  538. package/repos/tsgo/_tools/tsconfig-base-schema.json +1383 -0
  539. package/repos/tsgo/_tools/update-flake-vendor-hash.sh +137 -0
  540. package/repos/tsgo/_tools/version-prepare.sh +24 -0
  541. package/repos/tsgo/etscheckerhooks/doc.go +6 -0
  542. package/repos/tsgo/etscheckerhooks/external_library_test.go +98 -0
  543. package/repos/tsgo/etscheckerhooks/init.go +42 -0
  544. package/repos/tsgo/etscore/climode.go +23 -0
  545. package/repos/tsgo/etscore/climode_test.go +59 -0
  546. package/repos/tsgo/etscore/consts.go +5 -0
  547. package/repos/tsgo/etscore/go.mod +7 -0
  548. package/repos/tsgo/etscore/options.go +367 -0
  549. package/repos/tsgo/etscore/options_parser.go +488 -0
  550. package/repos/tsgo/etscore/options_schema_test.go +423 -0
  551. package/repos/tsgo/etscore/options_test.go +685 -0
  552. package/repos/tsgo/etscore/severity.go +79 -0
  553. package/repos/tsgo/etscore/version_generated.go +5 -0
  554. package/repos/tsgo/etscore/version_generated_test.go +36 -0
  555. package/repos/tsgo/etsexecutehooks/doc.go +11 -0
  556. package/repos/tsgo/etsexecutehooks/init.go +58 -0
  557. package/repos/tsgo/etsexecutehooks/init_test.go +292 -0
  558. package/repos/tsgo/etslshooks/doc.go +15 -0
  559. package/repos/tsgo/etslshooks/document_symbols.go +556 -0
  560. package/repos/tsgo/etslshooks/init.go +359 -0
  561. package/repos/tsgo/etslshooks/inlay_hints.go +108 -0
  562. package/repos/tsgo/etstesthooks/doc.go +10 -0
  563. package/repos/tsgo/etstesthooks/init.go +45 -0
  564. package/repos/tsgo/etstesthooks/init_test.go +71 -0
  565. package/repos/tsgo/flake.lock +80 -0
  566. package/repos/tsgo/flake.nix +189 -0
  567. package/repos/tsgo/go.mod +107 -0
  568. package/repos/tsgo/go.sum +24 -0
  569. package/repos/tsgo/go.work +47 -0
  570. package/repos/tsgo/go.work.sum +34 -0
  571. package/repos/tsgo/internal/autoimportstyle/stylepolicy.go +266 -0
  572. package/repos/tsgo/internal/autoimportstyle/stylepolicy_test.go +462 -0
  573. package/repos/tsgo/internal/bundledeffect/effect.go +105 -0
  574. package/repos/tsgo/internal/codefixes/disable_diagnostics.go +44 -0
  575. package/repos/tsgo/internal/codegen/codegen.go +21 -0
  576. package/repos/tsgo/internal/codegens/codegens.go +27 -0
  577. package/repos/tsgo/internal/completion/completion.go +25 -0
  578. package/repos/tsgo/internal/completion/context.go +46 -0
  579. package/repos/tsgo/internal/completion/position.go +136 -0
  580. package/repos/tsgo/internal/completion/position_test.go +121 -0
  581. package/repos/tsgo/internal/completions/completions.go +33 -0
  582. package/repos/tsgo/internal/completions/context_self_in_classes.go +144 -0
  583. package/repos/tsgo/internal/completions/context_self_in_classes_test.go +162 -0
  584. package/repos/tsgo/internal/completions/duration_input.go +85 -0
  585. package/repos/tsgo/internal/completions/duration_input_test.go +95 -0
  586. package/repos/tsgo/internal/completions/effect_codegens_comment.go +57 -0
  587. package/repos/tsgo/internal/completions/effect_codegens_comment_test.go +121 -0
  588. package/repos/tsgo/internal/completions/effect_data_classes.go +66 -0
  589. package/repos/tsgo/internal/completions/effect_diagnostics_comment.go +68 -0
  590. package/repos/tsgo/internal/completions/effect_diagnostics_comment_test.go +145 -0
  591. package/repos/tsgo/internal/completions/effect_jsdoc_comment.go +42 -0
  592. package/repos/tsgo/internal/completions/effect_jsdoc_comment_test.go +112 -0
  593. package/repos/tsgo/internal/completions/effect_rpc_make_classes.go +56 -0
  594. package/repos/tsgo/internal/completions/effect_rpc_make_classes_test.go +67 -0
  595. package/repos/tsgo/internal/completions/effect_schema_self_in_classes.go +200 -0
  596. package/repos/tsgo/internal/completions/effect_self_in_classes.go +78 -0
  597. package/repos/tsgo/internal/completions/effect_self_in_classes_test.go +67 -0
  598. package/repos/tsgo/internal/completions/effect_sql_model_self_in_classes.go +62 -0
  599. package/repos/tsgo/internal/completions/effect_sql_model_self_in_classes_test.go +67 -0
  600. package/repos/tsgo/internal/completions/fn_function_star.go +90 -0
  601. package/repos/tsgo/internal/completions/fn_function_star_test.go +125 -0
  602. package/repos/tsgo/internal/completions/fourslash_test.go +177 -0
  603. package/repos/tsgo/internal/completions/gen_function_star.go +59 -0
  604. package/repos/tsgo/internal/completions/schema_brand.go +63 -0
  605. package/repos/tsgo/internal/completions/schema_brand_test.go +54 -0
  606. package/repos/tsgo/internal/diagnostics/effectDiagnosticMessages.json +390 -0
  607. package/repos/tsgo/internal/directives/parser.go +344 -0
  608. package/repos/tsgo/internal/directives/parser_test.go +926 -0
  609. package/repos/tsgo/internal/effectconfigraw/hooks.go +338 -0
  610. package/repos/tsgo/internal/effecttest/autoimport_style_consistency_test.go +435 -0
  611. package/repos/tsgo/internal/effecttest/baseline.go +638 -0
  612. package/repos/tsgo/internal/effecttest/completion_test.go +134 -0
  613. package/repos/tsgo/internal/effecttest/document_symbols_baseline.go +99 -0
  614. package/repos/tsgo/internal/effecttest/document_symbols_runner.go +234 -0
  615. package/repos/tsgo/internal/effecttest/document_symbols_runner_test.go +64 -0
  616. package/repos/tsgo/internal/effecttest/effect_in_failure_ts2589_test.go +216 -0
  617. package/repos/tsgo/internal/effecttest/feature_flags_test.go +266 -0
  618. package/repos/tsgo/internal/effecttest/hover_test.go +310 -0
  619. package/repos/tsgo/internal/effecttest/inlay_hints_baseline_test.go +177 -0
  620. package/repos/tsgo/internal/effecttest/inlay_hints_test.go +214 -0
  621. package/repos/tsgo/internal/effecttest/issue_173_test.go +84 -0
  622. package/repos/tsgo/internal/effecttest/quickfix_baseline.go +161 -0
  623. package/repos/tsgo/internal/effecttest/quickfix_runner.go +132 -0
  624. package/repos/tsgo/internal/effecttest/quickfix_runner_test.go +67 -0
  625. package/repos/tsgo/internal/effecttest/refactor_baseline.go +122 -0
  626. package/repos/tsgo/internal/effecttest/refactor_runner.go +251 -0
  627. package/repos/tsgo/internal/effecttest/refactor_runner_test.go +67 -0
  628. package/repos/tsgo/internal/effecttest/runner.go +401 -0
  629. package/repos/tsgo/internal/effecttest/runner_test.go +62 -0
  630. package/repos/tsgo/internal/effecttest/vfs.go +87 -0
  631. package/repos/tsgo/internal/fixable/context.go +89 -0
  632. package/repos/tsgo/internal/fixable/fixable.go +38 -0
  633. package/repos/tsgo/internal/fixables/catch_all_to_map_error.go +51 -0
  634. package/repos/tsgo/internal/fixables/catch_to_or_else_succeed.go +44 -0
  635. package/repos/tsgo/internal/fixables/class_self_mismatch.go +54 -0
  636. package/repos/tsgo/internal/fixables/deterministic_keys.go +47 -0
  637. package/repos/tsgo/internal/fixables/disable.go +126 -0
  638. package/repos/tsgo/internal/fixables/effect_fn_iife.go +90 -0
  639. package/repos/tsgo/internal/fixables/effect_fn_opportunity.go +480 -0
  640. package/repos/tsgo/internal/fixables/effect_map_void.go +56 -0
  641. package/repos/tsgo/internal/fixables/effect_succeed_with_void.go +56 -0
  642. package/repos/tsgo/internal/fixables/fixables.go +88 -0
  643. package/repos/tsgo/internal/fixables/instance_of_schema.go +73 -0
  644. package/repos/tsgo/internal/fixables/layer_merge_all_with_dependencies.go +90 -0
  645. package/repos/tsgo/internal/fixables/missed_pipeable_opportunity.go +161 -0
  646. package/repos/tsgo/internal/fixables/missing_effect_error_catch.go +192 -0
  647. package/repos/tsgo/internal/fixables/missing_return_yield_star.go +54 -0
  648. package/repos/tsgo/internal/fixables/missing_star_in_yield_effect_gen.go +52 -0
  649. package/repos/tsgo/internal/fixables/multiple_effect_provide.go +97 -0
  650. package/repos/tsgo/internal/fixables/new_schema_class.go +64 -0
  651. package/repos/tsgo/internal/fixables/overridden_schema_constructor.go +145 -0
  652. package/repos/tsgo/internal/fixables/redundant_schema_tag_identifier.go +50 -0
  653. package/repos/tsgo/internal/fixables/return_effect_in_gen.go +55 -0
  654. package/repos/tsgo/internal/fixables/run_effect_inside_effect.go +178 -0
  655. package/repos/tsgo/internal/fixables/schema_number.go +52 -0
  656. package/repos/tsgo/internal/fixables/schema_struct_with_tag.go +82 -0
  657. package/repos/tsgo/internal/fixables/schema_union_of_literals.go +59 -0
  658. package/repos/tsgo/internal/fixables/scope_in_layer_effect.go +47 -0
  659. package/repos/tsgo/internal/fixables/service_not_as_class.go +115 -0
  660. package/repos/tsgo/internal/fixables/unnecessary_arrow_block.go +45 -0
  661. package/repos/tsgo/internal/fixables/unnecessary_effect_gen.go +79 -0
  662. package/repos/tsgo/internal/fixables/unnecessary_fail_yieldable_error.go +48 -0
  663. package/repos/tsgo/internal/fixables/unnecessary_pipe.go +54 -0
  664. package/repos/tsgo/internal/fixables/unnecessary_pipe_chain.go +83 -0
  665. package/repos/tsgo/internal/fixables/unnecessary_typeof_type.go +39 -0
  666. package/repos/tsgo/internal/fixables/unsafe_effect_type_assertion.go +39 -0
  667. package/repos/tsgo/internal/graph/graph.go +789 -0
  668. package/repos/tsgo/internal/graph/graph_test.go +1099 -0
  669. package/repos/tsgo/internal/keybuilder/keybuilder.go +131 -0
  670. package/repos/tsgo/internal/keybuilder/keybuilder_test.go +226 -0
  671. package/repos/tsgo/internal/layergraph/extract.go +435 -0
  672. package/repos/tsgo/internal/layergraph/format.go +370 -0
  673. package/repos/tsgo/internal/layergraph/format_test.go +145 -0
  674. package/repos/tsgo/internal/layergraph/magic.go +171 -0
  675. package/repos/tsgo/internal/layergraph/magic_test.go +168 -0
  676. package/repos/tsgo/internal/layergraph/mermaidurl.go +32 -0
  677. package/repos/tsgo/internal/layergraph/mermaidurl_test.go +109 -0
  678. package/repos/tsgo/internal/layergraph/outline.go +80 -0
  679. package/repos/tsgo/internal/layergraph/providers.go +144 -0
  680. package/repos/tsgo/internal/layergraph/providers_test.go +132 -0
  681. package/repos/tsgo/internal/layergraph/types.go +112 -0
  682. package/repos/tsgo/internal/layergraph/types_test.go +60 -0
  683. package/repos/tsgo/internal/pluginoptions/resolver.go +158 -0
  684. package/repos/tsgo/internal/refactor/context.go +83 -0
  685. package/repos/tsgo/internal/refactor/refactor.go +28 -0
  686. package/repos/tsgo/internal/refactors/async_await_to_fn.go +179 -0
  687. package/repos/tsgo/internal/refactors/async_await_to_fn_try_promise.go +111 -0
  688. package/repos/tsgo/internal/refactors/async_await_to_gen.go +377 -0
  689. package/repos/tsgo/internal/refactors/async_await_to_gen_try_promise.go +263 -0
  690. package/repos/tsgo/internal/refactors/effect_gen_to_fn.go +308 -0
  691. package/repos/tsgo/internal/refactors/function_to_arrow.go +226 -0
  692. package/repos/tsgo/internal/refactors/layer_magic.go +407 -0
  693. package/repos/tsgo/internal/refactors/make_schema_opaque.go +308 -0
  694. package/repos/tsgo/internal/refactors/make_schema_opaque_with_ns.go +151 -0
  695. package/repos/tsgo/internal/refactors/pipeable_to_datafirst.go +189 -0
  696. package/repos/tsgo/internal/refactors/refactors.go +31 -0
  697. package/repos/tsgo/internal/refactors/remove_unnecessary_effect_gen.go +90 -0
  698. package/repos/tsgo/internal/refactors/structural_type_to_schema.go +65 -0
  699. package/repos/tsgo/internal/refactors/toggle_lazy_const.go +104 -0
  700. package/repos/tsgo/internal/refactors/toggle_pipe_style.go +105 -0
  701. package/repos/tsgo/internal/refactors/toggle_return_type_annotation.go +155 -0
  702. package/repos/tsgo/internal/refactors/toggle_type_annotation.go +122 -0
  703. package/repos/tsgo/internal/refactors/type_to_effect_schema.go +87 -0
  704. package/repos/tsgo/internal/refactors/type_to_effect_schema_class.go +45 -0
  705. package/repos/tsgo/internal/refactors/wrap_with_effect_gen.go +97 -0
  706. package/repos/tsgo/internal/refactors/wrap_with_pipe.go +38 -0
  707. package/repos/tsgo/internal/refactors/write_tag_class_accessors.go +381 -0
  708. package/repos/tsgo/internal/rewriter/tracker.go +149 -0
  709. package/repos/tsgo/internal/rule/context.go +67 -0
  710. package/repos/tsgo/internal/rule/metadata.go +15 -0
  711. package/repos/tsgo/internal/rule/rule.go +73 -0
  712. package/repos/tsgo/internal/rule/rule_test.go +93 -0
  713. package/repos/tsgo/internal/rulerunner/diagnostics.go +249 -0
  714. package/repos/tsgo/internal/rules/any_unknown_in_error_context.go +174 -0
  715. package/repos/tsgo/internal/rules/async_function.go +45 -0
  716. package/repos/tsgo/internal/rules/catch_all_to_map_error.go +109 -0
  717. package/repos/tsgo/internal/rules/catch_to_or_else_succeed.go +105 -0
  718. package/repos/tsgo/internal/rules/catch_unfailable_effect.go +73 -0
  719. package/repos/tsgo/internal/rules/class_self_mismatch.go +160 -0
  720. package/repos/tsgo/internal/rules/crypto_random_uuid.go +88 -0
  721. package/repos/tsgo/internal/rules/deterministic_keys.go +264 -0
  722. package/repos/tsgo/internal/rules/duplicate_package.go +131 -0
  723. package/repos/tsgo/internal/rules/effect_do_notation.go +70 -0
  724. package/repos/tsgo/internal/rules/effect_fn_iife.go +122 -0
  725. package/repos/tsgo/internal/rules/effect_fn_implicit_any.go +131 -0
  726. package/repos/tsgo/internal/rules/effect_fn_opportunity.go +220 -0
  727. package/repos/tsgo/internal/rules/effect_gen_uses_adapter.go +55 -0
  728. package/repos/tsgo/internal/rules/effect_in_failure.go +97 -0
  729. package/repos/tsgo/internal/rules/effect_in_void_success.go +66 -0
  730. package/repos/tsgo/internal/rules/effect_map_flatten.go +78 -0
  731. package/repos/tsgo/internal/rules/effect_map_void.go +123 -0
  732. package/repos/tsgo/internal/rules/effect_succeed_with_void.go +99 -0
  733. package/repos/tsgo/internal/rules/extends_native_error.go +112 -0
  734. package/repos/tsgo/internal/rules/floating_effect.go +150 -0
  735. package/repos/tsgo/internal/rules/generic_effect_services.go +61 -0
  736. package/repos/tsgo/internal/rules/global_console.go +88 -0
  737. package/repos/tsgo/internal/rules/global_date.go +96 -0
  738. package/repos/tsgo/internal/rules/global_error_in_effect_catch.go +116 -0
  739. package/repos/tsgo/internal/rules/global_error_in_effect_failure.go +85 -0
  740. package/repos/tsgo/internal/rules/global_fetch.go +81 -0
  741. package/repos/tsgo/internal/rules/global_random.go +75 -0
  742. package/repos/tsgo/internal/rules/global_timers.go +105 -0
  743. package/repos/tsgo/internal/rules/instance_of_schema.go +80 -0
  744. package/repos/tsgo/internal/rules/layer_merge_all_with_dependencies.go +195 -0
  745. package/repos/tsgo/internal/rules/lazy_effect.go +213 -0
  746. package/repos/tsgo/internal/rules/lazy_promise_in_effect_sync.go +65 -0
  747. package/repos/tsgo/internal/rules/leaking_requirements.go +353 -0
  748. package/repos/tsgo/internal/rules/metadata.go +37 -0
  749. package/repos/tsgo/internal/rules/missed_pipeable_opportunity.go +203 -0
  750. package/repos/tsgo/internal/rules/missing_effect_context.go +273 -0
  751. package/repos/tsgo/internal/rules/missing_effect_error.go +115 -0
  752. package/repos/tsgo/internal/rules/missing_effect_service_dependency.go +190 -0
  753. package/repos/tsgo/internal/rules/missing_layer_context.go +87 -0
  754. package/repos/tsgo/internal/rules/missing_return_yield_star.go +98 -0
  755. package/repos/tsgo/internal/rules/missing_star_in_yield_effect_gen.go +77 -0
  756. package/repos/tsgo/internal/rules/multiple_catch_tag.go +229 -0
  757. package/repos/tsgo/internal/rules/multiple_effect_provide.go +119 -0
  758. package/repos/tsgo/internal/rules/nested_effect_gen_yield.go +72 -0
  759. package/repos/tsgo/internal/rules/new_promise.go +50 -0
  760. package/repos/tsgo/internal/rules/new_schema_class.go +102 -0
  761. package/repos/tsgo/internal/rules/node_builtin_import.go +160 -0
  762. package/repos/tsgo/internal/rules/non_object_effect_service_type.go +187 -0
  763. package/repos/tsgo/internal/rules/outdated_api.go +163 -0
  764. package/repos/tsgo/internal/rules/outdated_api_db.go +375 -0
  765. package/repos/tsgo/internal/rules/overridden_schema_constructor.go +175 -0
  766. package/repos/tsgo/internal/rules/prefer_schema_over_json.go +217 -0
  767. package/repos/tsgo/internal/rules/process_env.go +96 -0
  768. package/repos/tsgo/internal/rules/redundant_map_error.go +380 -0
  769. package/repos/tsgo/internal/rules/redundant_or_die.go +194 -0
  770. package/repos/tsgo/internal/rules/redundant_schema_tag_identifier.go +103 -0
  771. package/repos/tsgo/internal/rules/return_effect_in_gen.go +97 -0
  772. package/repos/tsgo/internal/rules/rules.go +92 -0
  773. package/repos/tsgo/internal/rules/rules_json_test.go +856 -0
  774. package/repos/tsgo/internal/rules/run_effect_inside_effect.go +155 -0
  775. package/repos/tsgo/internal/rules/schema_number.go +106 -0
  776. package/repos/tsgo/internal/rules/schema_struct_with_tag.go +162 -0
  777. package/repos/tsgo/internal/rules/schema_sync_in_effect.go +107 -0
  778. package/repos/tsgo/internal/rules/schema_union_of_literals.go +122 -0
  779. package/repos/tsgo/internal/rules/scope_in_layer_effect.go +201 -0
  780. package/repos/tsgo/internal/rules/service_not_as_class.go +179 -0
  781. package/repos/tsgo/internal/rules/strict_boolean_expressions.go +123 -0
  782. package/repos/tsgo/internal/rules/strict_effect_provide.go +77 -0
  783. package/repos/tsgo/internal/rules/try_catch_in_effect_gen.go +55 -0
  784. package/repos/tsgo/internal/rules/unknown_in_effect_catch.go +116 -0
  785. package/repos/tsgo/internal/rules/unnecessary_arrow_block.go +99 -0
  786. package/repos/tsgo/internal/rules/unnecessary_effect_gen.go +139 -0
  787. package/repos/tsgo/internal/rules/unnecessary_fail_yieldable_error.go +85 -0
  788. package/repos/tsgo/internal/rules/unnecessary_pipe.go +71 -0
  789. package/repos/tsgo/internal/rules/unnecessary_pipe_chain.go +74 -0
  790. package/repos/tsgo/internal/rules/unnecessary_typeof_type.go +206 -0
  791. package/repos/tsgo/internal/rules/unsafe_effect_type_assertion.go +170 -0
  792. package/repos/tsgo/internal/schemagen/schemagen.go +740 -0
  793. package/repos/tsgo/internal/schemagen/structural.go +703 -0
  794. package/repos/tsgo/internal/typeparser/context_tag.go +72 -0
  795. package/repos/tsgo/internal/typeparser/context_type.go +38 -0
  796. package/repos/tsgo/internal/typeparser/data_first_signature.go +158 -0
  797. package/repos/tsgo/internal/typeparser/data_first_signature_test.go +324 -0
  798. package/repos/tsgo/internal/typeparser/data_type.go +41 -0
  799. package/repos/tsgo/internal/typeparser/discover.go +223 -0
  800. package/repos/tsgo/internal/typeparser/effect_context.go +237 -0
  801. package/repos/tsgo/internal/typeparser/effect_fn.go +248 -0
  802. package/repos/tsgo/internal/typeparser/effect_fn_opportunity.go +840 -0
  803. package/repos/tsgo/internal/typeparser/effect_fn_test.go +197 -0
  804. package/repos/tsgo/internal/typeparser/effect_gen.go +60 -0
  805. package/repos/tsgo/internal/typeparser/effect_gen_test.go +113 -0
  806. package/repos/tsgo/internal/typeparser/effect_model_type.go +49 -0
  807. package/repos/tsgo/internal/typeparser/effect_type.go +257 -0
  808. package/repos/tsgo/internal/typeparser/effect_yieldable_type.go +51 -0
  809. package/repos/tsgo/internal/typeparser/execution_flow.go +396 -0
  810. package/repos/tsgo/internal/typeparser/expected_and_real_type.go +333 -0
  811. package/repos/tsgo/internal/typeparser/expected_and_real_type_test.go +447 -0
  812. package/repos/tsgo/internal/typeparser/extends_context_service.go +102 -0
  813. package/repos/tsgo/internal/typeparser/extends_context_tag.go +102 -0
  814. package/repos/tsgo/internal/typeparser/extends_data_tagged.go +85 -0
  815. package/repos/tsgo/internal/typeparser/extends_effect_model_class.go +86 -0
  816. package/repos/tsgo/internal/typeparser/extends_effect_service.go +113 -0
  817. package/repos/tsgo/internal/typeparser/extends_effect_tag.go +101 -0
  818. package/repos/tsgo/internal/typeparser/extends_schema_class.go +114 -0
  819. package/repos/tsgo/internal/typeparser/extends_schema_tagged.go +144 -0
  820. package/repos/tsgo/internal/typeparser/extends_sql_model_class.go +84 -0
  821. package/repos/tsgo/internal/typeparser/function_node.go +98 -0
  822. package/repos/tsgo/internal/typeparser/get_type_at_location.go +98 -0
  823. package/repos/tsgo/internal/typeparser/global_error.go +35 -0
  824. package/repos/tsgo/internal/typeparser/helpers.go +111 -0
  825. package/repos/tsgo/internal/typeparser/helpers_test.go +427 -0
  826. package/repos/tsgo/internal/typeparser/layer_type.go +145 -0
  827. package/repos/tsgo/internal/typeparser/lazy_expression.go +90 -0
  828. package/repos/tsgo/internal/typeparser/module_export_reference.go +94 -0
  829. package/repos/tsgo/internal/typeparser/module_identifier.go +183 -0
  830. package/repos/tsgo/internal/typeparser/module_identifier_test.go +111 -0
  831. package/repos/tsgo/internal/typeparser/packagejson.go +40 -0
  832. package/repos/tsgo/internal/typeparser/pipeable.go +114 -0
  833. package/repos/tsgo/internal/typeparser/piping_flow.go +531 -0
  834. package/repos/tsgo/internal/typeparser/promise_type.go +31 -0
  835. package/repos/tsgo/internal/typeparser/reconstruct.go +84 -0
  836. package/repos/tsgo/internal/typeparser/schema_type.go +207 -0
  837. package/repos/tsgo/internal/typeparser/scope_type.go +59 -0
  838. package/repos/tsgo/internal/typeparser/service_type.go +66 -0
  839. package/repos/tsgo/internal/typeparser/service_type_test.go +110 -0
  840. package/repos/tsgo/internal/typeparser/sql_model_type.go +42 -0
  841. package/repos/tsgo/internal/typeparser/stream_type.go +28 -0
  842. package/repos/tsgo/internal/typeparser/type_parser.go +95 -0
  843. package/repos/tsgo/internal/typeparser/unique_types_map.go +66 -0
  844. package/repos/tsgo/internal/typeparser/unroll_members.go +15 -0
  845. package/repos/tsgo/internal/typeparser/yieldable_error.go +85 -0
  846. package/repos/tsgo/package.json +22 -0
  847. package/repos/tsgo/pnpm-lock.yaml +2762 -0
  848. package/repos/tsgo/pnpm-workspace.yaml +7 -0
  849. package/repos/tsgo/schema.json +2812 -0
  850. package/repos/tsgo/shim/api/go.mod +5 -0
  851. package/repos/tsgo/shim/api/shim.go +262 -0
  852. package/repos/tsgo/shim/ast/go.mod +5 -0
  853. package/repos/tsgo/shim/ast/shim.go +2725 -0
  854. package/repos/tsgo/shim/astnav/go.mod +5 -0
  855. package/repos/tsgo/shim/astnav/shim.go +27 -0
  856. package/repos/tsgo/shim/bundled/go.mod +5 -0
  857. package/repos/tsgo/shim/bundled/shim.go +19 -0
  858. package/repos/tsgo/shim/checker/extra-shim.json +10 -0
  859. package/repos/tsgo/shim/checker/go.mod +5 -0
  860. package/repos/tsgo/shim/checker/shim.go +1159 -0
  861. package/repos/tsgo/shim/collections/go.mod +5 -0
  862. package/repos/tsgo/shim/collections/shim.go +16 -0
  863. package/repos/tsgo/shim/compiler/go.mod +5 -0
  864. package/repos/tsgo/shim/compiler/shim.go +50 -0
  865. package/repos/tsgo/shim/core/go.mod +5 -0
  866. package/repos/tsgo/shim/core/shim.go +200 -0
  867. package/repos/tsgo/shim/diagnostics/go.mod +5 -0
  868. package/repos/tsgo/shim/diagnostics/shim.go +2272 -0
  869. package/repos/tsgo/shim/execute/tsc/go.mod +5 -0
  870. package/repos/tsgo/shim/execute/tsc/shim.go +62 -0
  871. package/repos/tsgo/shim/format/go.mod +5 -0
  872. package/repos/tsgo/shim/format/shim.go +72 -0
  873. package/repos/tsgo/shim/fourslash/extra-shim.json +8 -0
  874. package/repos/tsgo/shim/fourslash/go.mod +5 -0
  875. package/repos/tsgo/shim/fourslash/shim.go +59 -0
  876. package/repos/tsgo/shim/ls/autoimport/go.mod +5 -0
  877. package/repos/tsgo/shim/ls/autoimport/shim.go +64 -0
  878. package/repos/tsgo/shim/ls/change/extra-shim.json +5 -0
  879. package/repos/tsgo/shim/ls/change/go.mod +5 -0
  880. package/repos/tsgo/shim/ls/change/shim.go +30 -0
  881. package/repos/tsgo/shim/ls/extra-shim.json +8 -0
  882. package/repos/tsgo/shim/ls/go.mod +5 -0
  883. package/repos/tsgo/shim/ls/lsconv/go.mod +5 -0
  884. package/repos/tsgo/shim/ls/lsconv/shim.go +28 -0
  885. package/repos/tsgo/shim/ls/lsutil/go.mod +5 -0
  886. package/repos/tsgo/shim/ls/lsutil/shim.go +202 -0
  887. package/repos/tsgo/shim/ls/shim.go +154 -0
  888. package/repos/tsgo/shim/lsp/go.mod +5 -0
  889. package/repos/tsgo/shim/lsp/lsproto/go.mod +5 -0
  890. package/repos/tsgo/shim/lsp/lsproto/shim.go +1271 -0
  891. package/repos/tsgo/shim/lsp/shim.go +19 -0
  892. package/repos/tsgo/shim/module/go.mod +5 -0
  893. package/repos/tsgo/shim/module/shim.go +76 -0
  894. package/repos/tsgo/shim/modulespecifiers/go.mod +5 -0
  895. package/repos/tsgo/shim/modulespecifiers/shim.go +87 -0
  896. package/repos/tsgo/shim/packagejson/go.mod +5 -0
  897. package/repos/tsgo/shim/packagejson/shim.go +32 -0
  898. package/repos/tsgo/shim/parser/go.mod +5 -0
  899. package/repos/tsgo/shim/parser/shim.go +55 -0
  900. package/repos/tsgo/shim/project/go.mod +5 -0
  901. package/repos/tsgo/shim/project/logging/go.mod +3 -0
  902. package/repos/tsgo/shim/project/logging/shim.go +20 -0
  903. package/repos/tsgo/shim/project/shim.go +101 -0
  904. package/repos/tsgo/shim/repo/go.mod +5 -0
  905. package/repos/tsgo/shim/repo/shim.go +19 -0
  906. package/repos/tsgo/shim/scanner/go.mod +5 -0
  907. package/repos/tsgo/shim/scanner/shim.go +98 -0
  908. package/repos/tsgo/shim/sourcemap/go.mod +5 -0
  909. package/repos/tsgo/shim/sourcemap/shim.go +37 -0
  910. package/repos/tsgo/shim/testrunner/go.mod +5 -0
  911. package/repos/tsgo/shim/testrunner/shim.go +16 -0
  912. package/repos/tsgo/shim/testutil/baseline/go.mod +5 -0
  913. package/repos/tsgo/shim/testutil/baseline/shim.go +19 -0
  914. package/repos/tsgo/shim/testutil/go.mod +5 -0
  915. package/repos/tsgo/shim/testutil/harnessutil/go.mod +5 -0
  916. package/repos/tsgo/shim/testutil/harnessutil/shim.go +46 -0
  917. package/repos/tsgo/shim/testutil/lsptestutil/go.mod +5 -0
  918. package/repos/tsgo/shim/testutil/lsptestutil/shim.go +17 -0
  919. package/repos/tsgo/shim/testutil/shim.go +15 -0
  920. package/repos/tsgo/shim/testutil/tsbaseline/go.mod +5 -0
  921. package/repos/tsgo/shim/testutil/tsbaseline/shim.go +26 -0
  922. package/repos/tsgo/shim/tsoptions/go.mod +5 -0
  923. package/repos/tsgo/shim/tsoptions/shim.go +126 -0
  924. package/repos/tsgo/shim/tspath/go.mod +5 -0
  925. package/repos/tsgo/shim/tspath/shim.go +165 -0
  926. package/repos/tsgo/shim/vfs/cachedvfs/go.mod +5 -0
  927. package/repos/tsgo/shim/vfs/cachedvfs/shim.go +12 -0
  928. package/repos/tsgo/shim/vfs/go.mod +5 -0
  929. package/repos/tsgo/shim/vfs/iovfs/go.mod +5 -0
  930. package/repos/tsgo/shim/vfs/iovfs/shim.go +14 -0
  931. package/repos/tsgo/shim/vfs/osvfs/go.mod +5 -0
  932. package/repos/tsgo/shim/vfs/osvfs/shim.go +13 -0
  933. package/repos/tsgo/shim/vfs/shim.go +19 -0
  934. package/repos/tsgo/shim/vfs/vfsmatch/shim.go +21 -0
  935. package/repos/tsgo/shim/vfs/vfstest/go.mod +5 -0
  936. package/repos/tsgo/shim/vfs/vfstest/shim.go +16 -0
  937. package/repos/tsgo/testdata/baselines/reference/README.md +297 -0
  938. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.errors.txt +154 -0
  939. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.flows.anyUnknownInErrorContext.mermaid +77 -0
  940. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.flows.txt +1 -0
  941. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.layers.txt +69 -0
  942. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.pipings.txt +197 -0
  943. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.quickfixes.txt +407 -0
  944. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToFn.refactors.txt +98 -0
  945. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToFnTryPromise.refactors.txt +124 -0
  946. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToFn_fetch.refactors.txt +112 -0
  947. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToFn_generics.refactors.txt +98 -0
  948. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToGen.refactors.txt +98 -0
  949. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToGenTryPromise.refactors.txt +130 -0
  950. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToGenTryPromise_anonymous.refactors.txt +370 -0
  951. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToGen_anonymous.refactors.txt +370 -0
  952. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToGen_namedImport.refactors.txt +98 -0
  953. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.errors.txt +52 -0
  954. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.flows.asyncFunction.mermaid +29 -0
  955. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.flows.txt +1 -0
  956. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.layers.txt +1 -0
  957. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.pipings.txt +85 -0
  958. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.quickfixes.txt +43 -0
  959. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.errors.txt +16 -0
  960. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.flows.asyncFunction_preview.mermaid +2 -0
  961. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.flows.txt +1 -0
  962. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.layers.txt +1 -0
  963. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.pipings.txt +15 -0
  964. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.quickfixes.txt +13 -0
  965. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.errors.txt +88 -0
  966. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.flows.catchAllToMapError.mermaid +164 -0
  967. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.flows.txt +1 -0
  968. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.layers.txt +1 -0
  969. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.pipings.txt +289 -0
  970. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.quickfixes.txt +413 -0
  971. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.errors.txt +42 -0
  972. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.flows.catchAllToMapError_effectFn.mermaid +87 -0
  973. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.flows.txt +1 -0
  974. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.layers.txt +1 -0
  975. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.pipings.txt +169 -0
  976. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.quickfixes.txt +129 -0
  977. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.errors.txt +38 -0
  978. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.flows.catchAllToMapError_effectFnRegular.mermaid +66 -0
  979. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.flows.txt +1 -0
  980. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.layers.txt +1 -0
  981. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.pipings.txt +127 -0
  982. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.quickfixes.txt +85 -0
  983. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.errors.txt +65 -0
  984. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.flows.catchToOrElseSucceed.mermaid +131 -0
  985. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.flows.txt +1 -0
  986. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.layers.txt +1 -0
  987. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.pipings.txt +239 -0
  988. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.quickfixes.txt +251 -0
  989. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.errors.txt +16 -0
  990. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.flows.catchToOrElseSucceed_preview.mermaid +18 -0
  991. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.flows.txt +1 -0
  992. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.layers.txt +1 -0
  993. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.pipings.txt +33 -0
  994. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.quickfixes.txt +25 -0
  995. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.errors.txt +63 -0
  996. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.flows.catchUnfailableEffect.mermaid +157 -0
  997. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.flows.txt +1 -0
  998. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.layers.txt +1 -0
  999. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.pipings.txt +265 -0
  1000. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.quickfixes.txt +43 -0
  1001. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.errors.txt +36 -0
  1002. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.flows.catchUnfailableEffect_effectFn.mermaid +73 -0
  1003. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.flows.txt +1 -0
  1004. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.layers.txt +1 -0
  1005. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.pipings.txt +127 -0
  1006. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.quickfixes.txt +33 -0
  1007. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.errors.txt +32 -0
  1008. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.flows.catchUnfailableEffect_effectFnRegular.mermaid +56 -0
  1009. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.flows.txt +1 -0
  1010. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.layers.txt +1 -0
  1011. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.pipings.txt +99 -0
  1012. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.quickfixes.txt +23 -0
  1013. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.errors.txt +54 -0
  1014. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.flows.catchUnfailableEffect_variants.mermaid +78 -0
  1015. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.flows.txt +1 -0
  1016. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.layers.txt +1 -0
  1017. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.pipings.txt +105 -0
  1018. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.quickfixes.txt +53 -0
  1019. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.errors.txt +28 -0
  1020. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.flows.classSelfMismatch.mermaid +3 -0
  1021. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.flows.txt +1 -0
  1022. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.layers.txt +1 -0
  1023. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.pipings.txt +1 -0
  1024. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.quickfixes.txt +37 -0
  1025. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.errors.txt +22 -0
  1026. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.flows.classSelfMismatch_contextTag.mermaid +15 -0
  1027. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.flows.txt +1 -0
  1028. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.layers.txt +1 -0
  1029. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.pipings.txt +29 -0
  1030. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.quickfixes.txt +31 -0
  1031. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.errors.txt +22 -0
  1032. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.flows.classSelfMismatch_effectTag.mermaid +15 -0
  1033. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.flows.txt +1 -0
  1034. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.layers.txt +1 -0
  1035. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.pipings.txt +29 -0
  1036. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.quickfixes.txt +31 -0
  1037. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.errors.txt +20 -0
  1038. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.flows.classSelfMismatch_preview.mermaid +8 -0
  1039. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.flows.txt +1 -0
  1040. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.layers.txt +1 -0
  1041. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.pipings.txt +15 -0
  1042. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.quickfixes.txt +7 -0
  1043. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.errors.txt +92 -0
  1044. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.flows.classSelfMismatch_schema.mermaid +57 -0
  1045. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.flows.txt +1 -0
  1046. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.layers.txt +1 -0
  1047. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.pipings.txt +113 -0
  1048. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.quickfixes.txt +713 -0
  1049. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.errors.txt +24 -0
  1050. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.flows.classSelfMismatch_schemaFalsePositive.mermaid +13 -0
  1051. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.flows.txt +1 -0
  1052. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.layers.txt +1 -0
  1053. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.pipings.txt +1 -0
  1054. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.quickfixes.txt +5 -0
  1055. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.errors.txt +20 -0
  1056. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.flows.classSelfMismatch_unionGiven.mermaid +15 -0
  1057. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.flows.txt +1 -0
  1058. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.layers.txt +1 -0
  1059. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.pipings.txt +29 -0
  1060. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.quickfixes.txt +29 -0
  1061. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.errors.txt +43 -0
  1062. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.flows.package.mermaid +2 -0
  1063. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.flows.test.mermaid +13 -0
  1064. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.flows.txt +2 -0
  1065. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.layers.txt +2 -0
  1066. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.pipings.txt +30 -0
  1067. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.quickfixes.txt +55 -0
  1068. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.errors.txt +80 -0
  1069. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.flows.package.mermaid +2 -0
  1070. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.flows.test.mermaid +21 -0
  1071. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.flows.txt +3 -0
  1072. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.flows.utils.mermaid +17 -0
  1073. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.layers.txt +3 -0
  1074. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.pipings.txt +45 -0
  1075. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.quickfixes.txt +73 -0
  1076. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.errors.txt +43 -0
  1077. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.flows.package.mermaid +2 -0
  1078. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.flows.test.mermaid +13 -0
  1079. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.flows.txt +2 -0
  1080. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.layers.txt +2 -0
  1081. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.pipings.txt +30 -0
  1082. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.quickfixes.txt +55 -0
  1083. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.errors.txt +43 -0
  1084. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.flows.package.mermaid +2 -0
  1085. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.flows.test.mermaid +13 -0
  1086. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.flows.txt +2 -0
  1087. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.layers.txt +2 -0
  1088. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.pipings.txt +30 -0
  1089. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.quickfixes.txt +55 -0
  1090. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.errors.txt +14 -0
  1091. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.flows.duplicatePackage_preview.mermaid +6 -0
  1092. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.flows.txt +1 -0
  1093. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.layers.txt +1 -0
  1094. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.pipings.txt +15 -0
  1095. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.quickfixes.txt +5 -0
  1096. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.errors.txt +28 -0
  1097. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.flows.effectDoNotation.mermaid +21 -0
  1098. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.flows.txt +1 -0
  1099. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.layers.txt +1 -0
  1100. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.pipings.txt +29 -0
  1101. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.quickfixes.txt +33 -0
  1102. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.errors.txt +21 -0
  1103. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.flows.effectDoNotation_preview.mermaid +40 -0
  1104. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.flows.txt +1 -0
  1105. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.layers.txt +1 -0
  1106. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.pipings.txt +51 -0
  1107. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.quickfixes.txt +13 -0
  1108. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.errors.txt +99 -0
  1109. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.flows.effectFnIife.mermaid +135 -0
  1110. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.flows.txt +1 -0
  1111. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.layers.txt +1 -0
  1112. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.pipings.txt +309 -0
  1113. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.quickfixes.txt +435 -0
  1114. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.errors.txt +34 -0
  1115. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.flows.effectFnOpportunity_alreadyEffectFn.mermaid +28 -0
  1116. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.flows.txt +1 -0
  1117. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.layers.txt +1 -0
  1118. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.pipings.txt +85 -0
  1119. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.quickfixes.txt +5 -0
  1120. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.errors.txt +67 -0
  1121. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.flows.effectFnOpportunity_basic.mermaid +52 -0
  1122. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.flows.txt +1 -0
  1123. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.layers.txt +1 -0
  1124. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.pipings.txt +113 -0
  1125. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.quickfixes.txt +514 -0
  1126. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.errors.txt +45 -0
  1127. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.flows.effectFnOpportunity_genWithThis.mermaid +28 -0
  1128. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.flows.txt +1 -0
  1129. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.layers.txt +1 -0
  1130. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.pipings.txt +29 -0
  1131. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.quickfixes.txt +5 -0
  1132. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.errors.txt +49 -0
  1133. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.flows.effectFnOpportunity_inferred.mermaid +40 -0
  1134. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.flows.txt +1 -0
  1135. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.layers.txt +1 -0
  1136. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.pipings.txt +85 -0
  1137. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.quickfixes.txt +80 -0
  1138. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.errors.txt +63 -0
  1139. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.flows.effectFnOpportunity_inferredLayer.mermaid +89 -0
  1140. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.flows.txt +1 -0
  1141. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.layers.txt +1 -0
  1142. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.pipings.txt +163 -0
  1143. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.quickfixes.txt +541 -0
  1144. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.errors.txt +45 -0
  1145. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.flows.effectFnOpportunity_invalid.mermaid +15 -0
  1146. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.flows.txt +1 -0
  1147. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.layers.txt +1 -0
  1148. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.pipings.txt +1 -0
  1149. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.quickfixes.txt +5 -0
  1150. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.errors.txt +65 -0
  1151. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.flows.effectFnOpportunity_multipleReturns.mermaid +61 -0
  1152. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.flows.txt +1 -0
  1153. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.layers.txt +1 -0
  1154. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.pipings.txt +127 -0
  1155. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.quickfixes.txt +135 -0
  1156. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.errors.txt +70 -0
  1157. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.flows.effectFnOpportunity_noPipeWithSpan.mermaid +65 -0
  1158. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.flows.txt +1 -0
  1159. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.layers.txt +1 -0
  1160. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.pipings.txt +109 -0
  1161. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.quickfixes.txt +425 -0
  1162. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.errors.txt +50 -0
  1163. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.flows.effectFnOpportunity_overloadsNever.mermaid +26 -0
  1164. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.flows.txt +1 -0
  1165. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.layers.txt +1 -0
  1166. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.pipings.txt +43 -0
  1167. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.quickfixes.txt +57 -0
  1168. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.errors.txt +94 -0
  1169. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.flows.effectFnOpportunity_overloadsOk.mermaid +43 -0
  1170. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.flows.txt +1 -0
  1171. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.layers.txt +1 -0
  1172. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.pipings.txt +85 -0
  1173. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.quickfixes.txt +773 -0
  1174. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.errors.txt +55 -0
  1175. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.flows.effectFnOpportunity_params.mermaid +40 -0
  1176. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.flows.txt +1 -0
  1177. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.layers.txt +1 -0
  1178. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.pipings.txt +85 -0
  1179. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.quickfixes.txt +303 -0
  1180. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.errors.txt +55 -0
  1181. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.flows.effectFnOpportunity_paramsInPipe.mermaid +91 -0
  1182. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.flows.txt +1 -0
  1183. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.layers.txt +1 -0
  1184. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.pipings.txt +143 -0
  1185. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.quickfixes.txt +5 -0
  1186. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.errors.txt +71 -0
  1187. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.flows.effectFnOpportunity_pipeWithSpan.mermaid +75 -0
  1188. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.flows.txt +1 -0
  1189. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.layers.txt +1 -0
  1190. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.pipings.txt +109 -0
  1191. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.quickfixes.txt +437 -0
  1192. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.errors.txt +42 -0
  1193. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.flows.effectFnOpportunity_plainFew.mermaid +46 -0
  1194. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.flows.txt +1 -0
  1195. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.layers.txt +1 -0
  1196. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.pipings.txt +85 -0
  1197. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.quickfixes.txt +5 -0
  1198. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.errors.txt +70 -0
  1199. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.flows.effectFnOpportunity_plainMany.mermaid +39 -0
  1200. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.flows.txt +1 -0
  1201. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.layers.txt +1 -0
  1202. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.pipings.txt +71 -0
  1203. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.quickfixes.txt +315 -0
  1204. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.errors.txt +62 -0
  1205. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.flows.effectFnOpportunity_returnType.mermaid +40 -0
  1206. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.flows.txt +1 -0
  1207. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.layers.txt +1 -0
  1208. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.pipings.txt +85 -0
  1209. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.quickfixes.txt +126 -0
  1210. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.errors.txt +111 -0
  1211. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.flows.effectFnOpportunity_typeParams.mermaid +64 -0
  1212. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.flows.txt +1 -0
  1213. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.layers.txt +1 -0
  1214. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.pipings.txt +127 -0
  1215. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.quickfixes.txt +1266 -0
  1216. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenToFn.refactors.txt +569 -0
  1217. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenToFn_classMethod.refactors.txt +44 -0
  1218. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenToFn_mixedPipes.refactors.txt +80 -0
  1219. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenToFn_returns.refactors.txt +104 -0
  1220. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenToFn_withPipes.refactors.txt +77 -0
  1221. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.errors.txt +23 -0
  1222. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.flows.effectGenUsesAdapter.mermaid +21 -0
  1223. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.flows.txt +1 -0
  1224. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.layers.txt +1 -0
  1225. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.pipings.txt +57 -0
  1226. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.quickfixes.txt +13 -0
  1227. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.errors.txt +17 -0
  1228. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.flows.effectGenUsesAdapter_preview.mermaid +11 -0
  1229. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.flows.txt +1 -0
  1230. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.layers.txt +1 -0
  1231. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.pipings.txt +29 -0
  1232. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.quickfixes.txt +20 -0
  1233. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.errors.txt +47 -0
  1234. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.flows.effectInFailure.mermaid +55 -0
  1235. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.flows.txt +1 -0
  1236. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.layers.txt +1 -0
  1237. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.pipings.txt +159 -0
  1238. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.quickfixes.txt +43 -0
  1239. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.errors.txt +54 -0
  1240. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.flows.effectMapFlatten.mermaid +127 -0
  1241. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.flows.txt +1 -0
  1242. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.layers.txt +1 -0
  1243. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.pipings.txt +217 -0
  1244. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.quickfixes.txt +33 -0
  1245. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.errors.txt +18 -0
  1246. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.flows.effectMapFlatten_preview.mermaid +20 -0
  1247. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.flows.txt +1 -0
  1248. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.layers.txt +1 -0
  1249. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.pipings.txt +37 -0
  1250. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.quickfixes.txt +13 -0
  1251. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.errors.txt +79 -0
  1252. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.flows.effectMapVoid.mermaid +123 -0
  1253. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.flows.txt +1 -0
  1254. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.layers.txt +1 -0
  1255. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.pipings.txt +181 -0
  1256. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.quickfixes.txt +423 -0
  1257. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.errors.txt +54 -0
  1258. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.flows.effectSucceedWithVoid.mermaid +47 -0
  1259. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.flows.txt +1 -0
  1260. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.layers.txt +1 -0
  1261. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.pipings.txt +127 -0
  1262. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.quickfixes.txt +243 -0
  1263. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.errors.txt +33 -0
  1264. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.flows.extendsNativeError.mermaid +7 -0
  1265. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.flows.txt +1 -0
  1266. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.layers.txt +1 -0
  1267. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.pipings.txt +1 -0
  1268. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.quickfixes.txt +33 -0
  1269. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.errors.txt +56 -0
  1270. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.flows.floatingEffect.mermaid +40 -0
  1271. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.flows.txt +1 -0
  1272. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.layers.txt +1 -0
  1273. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.pipings.txt +125 -0
  1274. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.quickfixes.txt +124 -0
  1275. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.errors.txt +17 -0
  1276. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.flows.floatingEffect_stream.mermaid +8 -0
  1277. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.flows.txt +1 -0
  1278. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.layers.txt +1 -0
  1279. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.pipings.txt +29 -0
  1280. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.quickfixes.txt +13 -0
  1281. package/repos/tsgo/testdata/baselines/reference/effect-v3/functionToArrow.refactors.txt +7 -0
  1282. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.errors.txt +20 -0
  1283. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.flows.genericEffectServices.mermaid +3 -0
  1284. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.flows.txt +1 -0
  1285. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.layers.txt +1 -0
  1286. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.pipings.txt +1 -0
  1287. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.quickfixes.txt +13 -0
  1288. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.errors.txt +17 -0
  1289. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.flows.genericEffectServices_preview.mermaid +2 -0
  1290. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.flows.txt +1 -0
  1291. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.layers.txt +1 -0
  1292. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.pipings.txt +1 -0
  1293. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.quickfixes.txt +7 -0
  1294. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.errors.txt +55 -0
  1295. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.flows.globalConsole.mermaid +58 -0
  1296. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.flows.txt +1 -0
  1297. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.layers.txt +1 -0
  1298. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.pipings.txt +141 -0
  1299. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.quickfixes.txt +49 -0
  1300. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.errors.txt +70 -0
  1301. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.flows.globalConsoleInEffect.mermaid +65 -0
  1302. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.flows.txt +1 -0
  1303. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.layers.txt +1 -0
  1304. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.pipings.txt +225 -0
  1305. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.quickfixes.txt +46 -0
  1306. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.errors.txt +17 -0
  1307. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.flows.globalConsoleInEffect_preview.mermaid +8 -0
  1308. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.flows.txt +1 -0
  1309. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.layers.txt +1 -0
  1310. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.pipings.txt +29 -0
  1311. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.quickfixes.txt +13 -0
  1312. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.errors.txt +39 -0
  1313. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.flows.globalConsoleInEffect_thunks.mermaid +65 -0
  1314. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.flows.txt +1 -0
  1315. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.layers.txt +1 -0
  1316. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.pipings.txt +155 -0
  1317. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.quickfixes.txt +43 -0
  1318. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.errors.txt +14 -0
  1319. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.flows.globalConsole_preview.mermaid +6 -0
  1320. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.flows.txt +1 -0
  1321. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.layers.txt +1 -0
  1322. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.pipings.txt +15 -0
  1323. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.quickfixes.txt +13 -0
  1324. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.errors.txt +50 -0
  1325. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.flows.globalDate.mermaid +26 -0
  1326. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.flows.txt +1 -0
  1327. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.layers.txt +1 -0
  1328. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.pipings.txt +43 -0
  1329. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.quickfixes.txt +52 -0
  1330. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.errors.txt +60 -0
  1331. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.flows.globalDateInEffect.mermaid +32 -0
  1332. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.flows.txt +1 -0
  1333. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.layers.txt +1 -0
  1334. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.pipings.txt +71 -0
  1335. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.quickfixes.txt +49 -0
  1336. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.errors.txt +18 -0
  1337. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.flows.globalDateInEffect_preview.mermaid +5 -0
  1338. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.flows.txt +1 -0
  1339. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.layers.txt +1 -0
  1340. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.pipings.txt +15 -0
  1341. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.quickfixes.txt +13 -0
  1342. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.errors.txt +39 -0
  1343. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.flows.globalDateInEffect_thunks.mermaid +45 -0
  1344. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.flows.txt +1 -0
  1345. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.layers.txt +1 -0
  1346. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.pipings.txt +85 -0
  1347. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.quickfixes.txt +43 -0
  1348. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.errors.txt +14 -0
  1349. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.flows.globalDate_preview.mermaid +2 -0
  1350. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.flows.txt +1 -0
  1351. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.layers.txt +1 -0
  1352. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.pipings.txt +1 -0
  1353. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.quickfixes.txt +13 -0
  1354. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.errors.txt +46 -0
  1355. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.flows.globalErrorInEffectCatch.mermaid +62 -0
  1356. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.flows.txt +1 -0
  1357. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.layers.txt +1 -0
  1358. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.pipings.txt +135 -0
  1359. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.quickfixes.txt +46 -0
  1360. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.errors.txt +87 -0
  1361. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.flows.globalErrorInEffectFailure.mermaid +85 -0
  1362. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.flows.txt +1 -0
  1363. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.layers.txt +1 -0
  1364. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.pipings.txt +191 -0
  1365. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.quickfixes.txt +254 -0
  1366. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.errors.txt +42 -0
  1367. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.flows.globalFetch.mermaid +16 -0
  1368. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.flows.txt +1 -0
  1369. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.layers.txt +1 -0
  1370. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.pipings.txt +99 -0
  1371. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.quickfixes.txt +52 -0
  1372. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.errors.txt +37 -0
  1373. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.flows.globalFetchInEffect.mermaid +17 -0
  1374. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.flows.txt +1 -0
  1375. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.layers.txt +1 -0
  1376. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.pipings.txt +113 -0
  1377. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.quickfixes.txt +29 -0
  1378. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.errors.txt +17 -0
  1379. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.flows.globalFetchInEffect_preview.mermaid +13 -0
  1380. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.flows.txt +1 -0
  1381. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.layers.txt +1 -0
  1382. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.pipings.txt +43 -0
  1383. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.quickfixes.txt +13 -0
  1384. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.errors.txt +42 -0
  1385. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.flows.globalFetchInEffect_thunks.mermaid +45 -0
  1386. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.flows.txt +1 -0
  1387. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.layers.txt +1 -0
  1388. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.pipings.txt +155 -0
  1389. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.quickfixes.txt +53 -0
  1390. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.errors.txt +14 -0
  1391. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.flows.globalFetch_preview.mermaid +2 -0
  1392. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.flows.txt +1 -0
  1393. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.layers.txt +1 -0
  1394. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.pipings.txt +15 -0
  1395. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.quickfixes.txt +13 -0
  1396. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.errors.txt +48 -0
  1397. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.flows.globalRandom.mermaid +27 -0
  1398. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.flows.txt +1 -0
  1399. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.layers.txt +1 -0
  1400. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.pipings.txt +29 -0
  1401. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.quickfixes.txt +55 -0
  1402. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.errors.txt +40 -0
  1403. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.flows.globalRandomInEffect.mermaid +21 -0
  1404. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.flows.txt +1 -0
  1405. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.layers.txt +1 -0
  1406. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.pipings.txt +43 -0
  1407. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.quickfixes.txt +29 -0
  1408. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.errors.txt +18 -0
  1409. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.flows.globalRandomInEffect_preview.mermaid +5 -0
  1410. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.flows.txt +1 -0
  1411. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.layers.txt +1 -0
  1412. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.pipings.txt +15 -0
  1413. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.quickfixes.txt +13 -0
  1414. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.errors.txt +39 -0
  1415. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.flows.globalRandomInEffect_thunks.mermaid +45 -0
  1416. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.flows.txt +1 -0
  1417. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.layers.txt +1 -0
  1418. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.pipings.txt +85 -0
  1419. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.quickfixes.txt +43 -0
  1420. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.errors.txt +14 -0
  1421. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.flows.globalRandom_preview.mermaid +2 -0
  1422. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.flows.txt +1 -0
  1423. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.layers.txt +1 -0
  1424. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.pipings.txt +1 -0
  1425. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.quickfixes.txt +13 -0
  1426. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.errors.txt +48 -0
  1427. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.flows.globalTimers.mermaid +37 -0
  1428. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.flows.txt +1 -0
  1429. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.layers.txt +1 -0
  1430. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.pipings.txt +29 -0
  1431. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.quickfixes.txt +55 -0
  1432. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.errors.txt +48 -0
  1433. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.flows.globalTimersInEffect.mermaid +26 -0
  1434. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.flows.txt +1 -0
  1435. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.layers.txt +1 -0
  1436. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.pipings.txt +57 -0
  1437. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.quickfixes.txt +36 -0
  1438. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.errors.txt +17 -0
  1439. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.flows.globalTimersInEffect_preview.mermaid +4 -0
  1440. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.flows.txt +1 -0
  1441. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.layers.txt +1 -0
  1442. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.pipings.txt +15 -0
  1443. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.quickfixes.txt +13 -0
  1444. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.errors.txt +39 -0
  1445. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.flows.globalTimersInEffect_thunks.mermaid +55 -0
  1446. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.flows.txt +1 -0
  1447. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.layers.txt +1 -0
  1448. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.pipings.txt +85 -0
  1449. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.quickfixes.txt +43 -0
  1450. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.errors.txt +14 -0
  1451. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.flows.globalTimers_preview.mermaid +4 -0
  1452. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.flows.txt +1 -0
  1453. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.layers.txt +1 -0
  1454. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.pipings.txt +1 -0
  1455. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.quickfixes.txt +13 -0
  1456. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.errors.txt +48 -0
  1457. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.flows.instanceOfSchema.mermaid +42 -0
  1458. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.flows.txt +1 -0
  1459. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.layers.txt +1 -0
  1460. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.pipings.txt +85 -0
  1461. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.quickfixes.txt +105 -0
  1462. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMagic_build.refactors.txt +1176 -0
  1463. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMagic_prepare.refactors.txt +390 -0
  1464. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.errors.txt +59 -0
  1465. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.flows.layerMergeAllWithDependencies.mermaid +32 -0
  1466. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.flows.txt +1 -0
  1467. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.layers.txt +349 -0
  1468. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.pipings.txt +43 -0
  1469. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.quickfixes.txt +223 -0
  1470. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.errors.txt +33 -0
  1471. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.flows.lazyPromiseInEffectSync.mermaid +36 -0
  1472. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.flows.txt +1 -0
  1473. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.layers.txt +1 -0
  1474. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.pipings.txt +99 -0
  1475. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.quickfixes.txt +23 -0
  1476. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.errors.txt +15 -0
  1477. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.flows.lazyPromiseInEffectSync_preview.mermaid +8 -0
  1478. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.flows.txt +1 -0
  1479. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.layers.txt +1 -0
  1480. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.pipings.txt +29 -0
  1481. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.quickfixes.txt +13 -0
  1482. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.errors.txt +68 -0
  1483. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.flows.leakingRequirements.mermaid +28 -0
  1484. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.flows.txt +1 -0
  1485. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.layers.txt +1 -0
  1486. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.pipings.txt +57 -0
  1487. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.quickfixes.txt +45 -0
  1488. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.errors.txt +104 -0
  1489. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.flows.leakingRequirements_allowJsdoc.mermaid +46 -0
  1490. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.flows.txt +1 -0
  1491. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.layers.txt +1 -0
  1492. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.pipings.txt +99 -0
  1493. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.quickfixes.txt +39 -0
  1494. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.errors.txt +40 -0
  1495. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.flows.leakingRequirements_genericTag.mermaid +13 -0
  1496. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.flows.txt +1 -0
  1497. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.layers.txt +1 -0
  1498. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.pipings.txt +29 -0
  1499. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.quickfixes.txt +21 -0
  1500. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.errors.txt +20 -0
  1501. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.flows.leakingRequirements_heuristic.mermaid +15 -0
  1502. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.flows.txt +1 -0
  1503. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.layers.txt +1 -0
  1504. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.pipings.txt +29 -0
  1505. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.quickfixes.txt +5 -0
  1506. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.errors.txt +24 -0
  1507. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.flows.leakingRequirements_leakableJsDoc.mermaid +13 -0
  1508. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.flows.txt +1 -0
  1509. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.layers.txt +1 -0
  1510. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.pipings.txt +29 -0
  1511. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.quickfixes.txt +5 -0
  1512. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.errors.txt +22 -0
  1513. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.flows.leakingRequirements_noScope.mermaid +13 -0
  1514. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.flows.txt +1 -0
  1515. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.layers.txt +1 -0
  1516. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.pipings.txt +29 -0
  1517. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.quickfixes.txt +5 -0
  1518. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaque.refactors.txt +88 -0
  1519. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaqueWithNs_shortImport.refactors.txt +88 -0
  1520. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaque_brand.refactors.txt +73 -0
  1521. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaque_shortImport.refactors.txt +88 -0
  1522. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaque_shortImportAlias.refactors.txt +88 -0
  1523. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaque_union.refactors.txt +88 -0
  1524. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.errors.txt +69 -0
  1525. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.flows.missedPipeableOpportunity.mermaid +182 -0
  1526. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.flows.txt +1 -0
  1527. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.layers.txt +1 -0
  1528. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.pipings.txt +303 -0
  1529. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.quickfixes.txt +253 -0
  1530. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.errors.txt +44 -0
  1531. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.flows.missedPipeableOpportunity_error.mermaid +50 -0
  1532. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.flows.txt +1 -0
  1533. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.layers.txt +1 -0
  1534. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.pipings.txt +133 -0
  1535. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.quickfixes.txt +16 -0
  1536. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.errors.txt +53 -0
  1537. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.flows.missedPipeableOpportunity_safer.mermaid +52 -0
  1538. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.flows.txt +1 -0
  1539. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.layers.txt +1 -0
  1540. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.pipings.txt +87 -0
  1541. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.quickfixes.txt +71 -0
  1542. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.errors.txt +30 -0
  1543. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.flows.missingEffectContext_arrowReturnType.mermaid +33 -0
  1544. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.flows.txt +1 -0
  1545. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.layers.txt +1 -0
  1546. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.pipings.txt +51 -0
  1547. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.quickfixes.txt +13 -0
  1548. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.errors.txt +49 -0
  1549. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.flows.missingEffectContext_callExpression.mermaid +22 -0
  1550. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.flows.txt +1 -0
  1551. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.layers.txt +1 -0
  1552. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.pipings.txt +29 -0
  1553. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.quickfixes.txt +43 -0
  1554. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.errors.txt +21 -0
  1555. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.flows.missingEffectContext_conciseBody.mermaid +5 -0
  1556. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.flows.txt +1 -0
  1557. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.layers.txt +1 -0
  1558. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.pipings.txt +1 -0
  1559. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.quickfixes.txt +13 -0
  1560. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.errors.txt +31 -0
  1561. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.flows.missingEffectContext_lazy.mermaid +26 -0
  1562. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.flows.txt +1 -0
  1563. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.layers.txt +1 -0
  1564. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.pipings.txt +29 -0
  1565. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.quickfixes.txt +13 -0
  1566. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.errors.txt +20 -0
  1567. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.flows.missingEffectContext_pipe.mermaid +13 -0
  1568. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.flows.txt +1 -0
  1569. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.layers.txt +1 -0
  1570. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.pipings.txt +19 -0
  1571. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.quickfixes.txt +13 -0
  1572. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.errors.txt +61 -0
  1573. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.flows.missingEffectContext_plainAssignment.mermaid +18 -0
  1574. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.flows.txt +1 -0
  1575. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.layers.txt +1 -0
  1576. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.pipings.txt +15 -0
  1577. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.quickfixes.txt +59 -0
  1578. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.errors.txt +44 -0
  1579. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.flows.missingEffectContext_returnSignature.mermaid +14 -0
  1580. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.flows.txt +1 -0
  1581. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.layers.txt +1 -0
  1582. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.pipings.txt +1 -0
  1583. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.quickfixes.txt +33 -0
  1584. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.errors.txt +15 -0
  1585. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.flows.missingEffectContext_skipArrowDefaults.mermaid +11 -0
  1586. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.flows.txt +1 -0
  1587. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.layers.txt +1 -0
  1588. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.pipings.txt +15 -0
  1589. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.quickfixes.txt +10 -0
  1590. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.errors.txt +53 -0
  1591. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.flows.missingEffectError_callExpression.mermaid +22 -0
  1592. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.flows.txt +1 -0
  1593. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.layers.txt +1 -0
  1594. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.pipings.txt +29 -0
  1595. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.quickfixes.txt +90 -0
  1596. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.errors.txt +67 -0
  1597. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.flows.missingEffectError_plainAssignment.mermaid +24 -0
  1598. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.flows.txt +1 -0
  1599. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.layers.txt +1 -0
  1600. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.pipings.txt +29 -0
  1601. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.quickfixes.txt +211 -0
  1602. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.errors.txt +47 -0
  1603. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.flows.missingEffectError_returnSignature.mermaid +14 -0
  1604. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.flows.txt +1 -0
  1605. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.layers.txt +1 -0
  1606. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.pipings.txt +1 -0
  1607. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.quickfixes.txt +111 -0
  1608. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.errors.txt +36 -0
  1609. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.flows.missingEffectError_tagged.mermaid +22 -0
  1610. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.flows.txt +1 -0
  1611. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.layers.txt +1 -0
  1612. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.pipings.txt +43 -0
  1613. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.quickfixes.txt +110 -0
  1614. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.errors.txt +98 -0
  1615. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.flows.missingEffectServiceDependency.mermaid +80 -0
  1616. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.flows.txt +1 -0
  1617. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.layers.txt +1 -0
  1618. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.pipings.txt +141 -0
  1619. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.quickfixes.txt +33 -0
  1620. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.errors.txt +21 -0
  1621. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.flows.missingEffectServiceDependency_preview.mermaid +16 -0
  1622. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.flows.txt +1 -0
  1623. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.layers.txt +1 -0
  1624. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.pipings.txt +29 -0
  1625. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.quickfixes.txt +13 -0
  1626. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.errors.txt +44 -0
  1627. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.flows.missingLayerContext.mermaid +22 -0
  1628. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.flows.txt +1 -0
  1629. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.layers.txt +1 -0
  1630. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.pipings.txt +29 -0
  1631. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.quickfixes.txt +23 -0
  1632. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.errors.txt +46 -0
  1633. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.flows.missingReturnYieldStar.mermaid +54 -0
  1634. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.flows.txt +1 -0
  1635. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.layers.txt +1 -0
  1636. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.pipings.txt +127 -0
  1637. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.quickfixes.txt +178 -0
  1638. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.errors.txt +21 -0
  1639. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.flows.missingReturnYieldStar_yieldable.mermaid +13 -0
  1640. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.flows.txt +1 -0
  1641. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.layers.txt +1 -0
  1642. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.pipings.txt +29 -0
  1643. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.quickfixes.txt +30 -0
  1644. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.errors.txt +92 -0
  1645. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.flows.missingStarInYieldEffectGen.mermaid +53 -0
  1646. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.flows.txt +1 -0
  1647. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.layers.txt +1 -0
  1648. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.pipings.txt +183 -0
  1649. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.quickfixes.txt +538 -0
  1650. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.errors.txt +53 -0
  1651. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.flows.multipleEffectProvide.mermaid +63 -0
  1652. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.flows.txt +1 -0
  1653. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.layers.txt +1 -0
  1654. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.pipings.txt +71 -0
  1655. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.quickfixes.txt +201 -0
  1656. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.errors.txt +67 -0
  1657. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.flows.multipleEffectProvide_effectFn.mermaid +78 -0
  1658. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.flows.txt +1 -0
  1659. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.layers.txt +1 -0
  1660. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.pipings.txt +77 -0
  1661. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.quickfixes.txt +254 -0
  1662. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.errors.txt +50 -0
  1663. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.flows.multipleEffectProvide_effectFnRegular.mermaid +61 -0
  1664. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.flows.txt +1 -0
  1665. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.layers.txt +1 -0
  1666. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.pipings.txt +59 -0
  1667. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.quickfixes.txt +149 -0
  1668. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.errors.txt +89 -0
  1669. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.flows.nestedEffectGenYield.mermaid +55 -0
  1670. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.flows.txt +1 -0
  1671. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.layers.txt +1 -0
  1672. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.pipings.txt +201 -0
  1673. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.quickfixes.txt +286 -0
  1674. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.errors.txt +21 -0
  1675. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.flows.nestedEffectGenYield_preview.mermaid +7 -0
  1676. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.flows.txt +1 -0
  1677. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.layers.txt +1 -0
  1678. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.pipings.txt +29 -0
  1679. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.quickfixes.txt +13 -0
  1680. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.errors.txt +44 -0
  1681. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.flows.newPromise.mermaid +49 -0
  1682. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.flows.txt +1 -0
  1683. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.layers.txt +1 -0
  1684. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.pipings.txt +71 -0
  1685. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.quickfixes.txt +43 -0
  1686. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.errors.txt +14 -0
  1687. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.flows.newPromise_preview.mermaid +10 -0
  1688. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.flows.txt +1 -0
  1689. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.layers.txt +1 -0
  1690. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.pipings.txt +15 -0
  1691. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.quickfixes.txt +13 -0
  1692. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.errors.txt +103 -0
  1693. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.flows.nodeBuiltinImport.mermaid +6 -0
  1694. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.flows.txt +1 -0
  1695. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.layers.txt +1 -0
  1696. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.pipings.txt +15 -0
  1697. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.quickfixes.txt +217 -0
  1698. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.errors.txt +81 -0
  1699. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.flows.nonObjectEffectServiceType.mermaid +53 -0
  1700. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.flows.txt +1 -0
  1701. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.layers.txt +1 -0
  1702. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.pipings.txt +85 -0
  1703. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.quickfixes.txt +73 -0
  1704. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.errors.txt +18 -0
  1705. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.flows.nonObjectEffectServiceType_preview.mermaid +2 -0
  1706. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.flows.txt +1 -0
  1707. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.layers.txt +1 -0
  1708. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.pipings.txt +1 -0
  1709. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.quickfixes.txt +13 -0
  1710. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.errors.txt +34 -0
  1711. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.flows.outdatedApi.mermaid +50 -0
  1712. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.flows.txt +1 -0
  1713. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.layers.txt +1 -0
  1714. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.pipings.txt +121 -0
  1715. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.quickfixes.txt +42 -0
  1716. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.errors.txt +53 -0
  1717. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.flows.overriddenSchemaConstructor.mermaid +31 -0
  1718. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.flows.txt +1 -0
  1719. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.layers.txt +1 -0
  1720. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.pipings.txt +85 -0
  1721. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.quickfixes.txt +202 -0
  1722. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.errors.txt +25 -0
  1723. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.flows.overriddenSchemaConstructor_static.mermaid +9 -0
  1724. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.flows.txt +1 -0
  1725. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.layers.txt +1 -0
  1726. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.pipings.txt +29 -0
  1727. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.quickfixes.txt +51 -0
  1728. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.errors.txt +17 -0
  1729. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.flows.overriddenSchemaConstructor_valid.mermaid +9 -0
  1730. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.flows.txt +1 -0
  1731. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.layers.txt +1 -0
  1732. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.pipings.txt +15 -0
  1733. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.quickfixes.txt +5 -0
  1734. package/repos/tsgo/testdata/baselines/reference/effect-v3/pipeableToDatafirst.refactors.txt +378 -0
  1735. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.errors.txt +107 -0
  1736. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.flows.preferSchemaOverJson.mermaid +73 -0
  1737. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.flows.txt +1 -0
  1738. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.layers.txt +1 -0
  1739. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.pipings.txt +295 -0
  1740. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.quickfixes.txt +126 -0
  1741. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.errors.txt +36 -0
  1742. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.flows.processEnv.mermaid +17 -0
  1743. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.flows.txt +1 -0
  1744. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.layers.txt +1 -0
  1745. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.pipings.txt +29 -0
  1746. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.quickfixes.txt +33 -0
  1747. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.errors.txt +38 -0
  1748. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.flows.processEnvInEffect.mermaid +23 -0
  1749. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.flows.txt +1 -0
  1750. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.layers.txt +1 -0
  1751. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.pipings.txt +43 -0
  1752. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.quickfixes.txt +23 -0
  1753. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.errors.txt +18 -0
  1754. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.flows.processEnvInEffect_preview.mermaid +5 -0
  1755. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.flows.txt +1 -0
  1756. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.layers.txt +1 -0
  1757. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.pipings.txt +15 -0
  1758. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.quickfixes.txt +13 -0
  1759. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.errors.txt +40 -0
  1760. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.flows.processEnvInEffect_thunks.mermaid +45 -0
  1761. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.flows.txt +1 -0
  1762. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.layers.txt +1 -0
  1763. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.pipings.txt +85 -0
  1764. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.quickfixes.txt +43 -0
  1765. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.errors.txt +15 -0
  1766. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.flows.processEnv_preview.mermaid +2 -0
  1767. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.flows.txt +1 -0
  1768. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.layers.txt +1 -0
  1769. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.pipings.txt +1 -0
  1770. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.quickfixes.txt +13 -0
  1771. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.errors.txt +81 -0
  1772. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.flows.redundantOrDie.mermaid +92 -0
  1773. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.flows.txt +1 -0
  1774. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.layers.txt +1 -0
  1775. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.pipings.txt +285 -0
  1776. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.quickfixes.txt +33 -0
  1777. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.errors.txt +25 -0
  1778. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.flows.redundantOrDie_preview.mermaid +13 -0
  1779. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.flows.txt +1 -0
  1780. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.layers.txt +1 -0
  1781. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.pipings.txt +43 -0
  1782. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.quickfixes.txt +13 -0
  1783. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.errors.txt +51 -0
  1784. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.flows.redundantSchemaTagIdentifier.mermaid +30 -0
  1785. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.flows.txt +1 -0
  1786. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.layers.txt +1 -0
  1787. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.pipings.txt +57 -0
  1788. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.quickfixes.txt +156 -0
  1789. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.errors.txt +18 -0
  1790. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.flows.redundantSchemaTagIdentifier_preview.mermaid +8 -0
  1791. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.flows.txt +1 -0
  1792. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.layers.txt +1 -0
  1793. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.pipings.txt +15 -0
  1794. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.quickfixes.txt +27 -0
  1795. package/repos/tsgo/testdata/baselines/reference/effect-v3/removeUnnecessaryEffectGen.refactors.txt +93 -0
  1796. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.errors.txt +16 -0
  1797. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.flows.returnEffectInGen.mermaid +9 -0
  1798. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.flows.txt +1 -0
  1799. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.layers.txt +1 -0
  1800. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.pipings.txt +29 -0
  1801. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.quickfixes.txt +25 -0
  1802. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.errors.txt +39 -0
  1803. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.flows.returnEffectInGenNoDiagnostics.mermaid +68 -0
  1804. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.flows.txt +1 -0
  1805. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.layers.txt +1 -0
  1806. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.pipings.txt +169 -0
  1807. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.quickfixes.txt +5 -0
  1808. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.errors.txt +39 -0
  1809. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.flows.runEffectInsideEffect.mermaid +47 -0
  1810. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.flows.txt +1 -0
  1811. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.layers.txt +1 -0
  1812. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.pipings.txt +131 -0
  1813. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.quickfixes.txt +57 -0
  1814. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.errors.txt +19 -0
  1815. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.flows.runEffectInsideEffect_preview.mermaid +17 -0
  1816. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.flows.txt +1 -0
  1817. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.layers.txt +1 -0
  1818. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.pipings.txt +33 -0
  1819. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.quickfixes.txt +30 -0
  1820. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.errors.txt +34 -0
  1821. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.flows.schemaStructWithTag.mermaid +4 -0
  1822. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.flows.txt +1 -0
  1823. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.layers.txt +1 -0
  1824. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.pipings.txt +43 -0
  1825. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.quickfixes.txt +35 -0
  1826. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.errors.txt +84 -0
  1827. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.flows.schemaSyncInEffect.mermaid +48 -0
  1828. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.flows.txt +1 -0
  1829. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.layers.txt +1 -0
  1830. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.pipings.txt +225 -0
  1831. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.quickfixes.txt +56 -0
  1832. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.errors.txt +22 -0
  1833. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.flows.schemaSyncInEffect_preview.mermaid +12 -0
  1834. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.flows.txt +1 -0
  1835. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.layers.txt +1 -0
  1836. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.pipings.txt +57 -0
  1837. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.quickfixes.txt +13 -0
  1838. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.errors.txt +46 -0
  1839. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.flows.schemaSyncInEffect_thunks.mermaid +46 -0
  1840. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.flows.txt +1 -0
  1841. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.layers.txt +1 -0
  1842. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.pipings.txt +169 -0
  1843. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.quickfixes.txt +43 -0
  1844. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.errors.txt +17 -0
  1845. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.flows.schemaUnionOfLiterals.mermaid +3 -0
  1846. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.flows.txt +1 -0
  1847. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.layers.txt +1 -0
  1848. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.pipings.txt +47 -0
  1849. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.quickfixes.txt +26 -0
  1850. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.errors.txt +15 -0
  1851. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.flows.schemaUnionOfLiterals_preview.mermaid +2 -0
  1852. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.flows.txt +1 -0
  1853. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.layers.txt +1 -0
  1854. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.pipings.txt +29 -0
  1855. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.quickfixes.txt +24 -0
  1856. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.errors.txt +84 -0
  1857. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.flows.scopeInLayerEffect.mermaid +121 -0
  1858. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.flows.txt +1 -0
  1859. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.layers.txt +102 -0
  1860. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.pipings.txt +251 -0
  1861. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.quickfixes.txt +165 -0
  1862. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.errors.txt +25 -0
  1863. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.flows.scopeInLayerEffect_preview.mermaid +26 -0
  1864. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.flows.txt +1 -0
  1865. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.layers.txt +36 -0
  1866. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.pipings.txt +47 -0
  1867. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.quickfixes.txt +31 -0
  1868. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.errors.txt +82 -0
  1869. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.flows.strictBooleanExpressions.mermaid +19 -0
  1870. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.flows.txt +1 -0
  1871. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.layers.txt +1 -0
  1872. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.pipings.txt +1 -0
  1873. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.quickfixes.txt +113 -0
  1874. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.errors.txt +68 -0
  1875. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.flows.strictEffectProvide.mermaid +77 -0
  1876. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.flows.txt +1 -0
  1877. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.layers.txt +59 -0
  1878. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.pipings.txt +121 -0
  1879. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.quickfixes.txt +43 -0
  1880. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema.refactors.txt +268 -0
  1881. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_avoidConflict.refactors.txt +117 -0
  1882. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_externalType.refactors.txt +62 -0
  1883. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_reuse.refactors.txt +112 -0
  1884. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_symbolNames.refactors.txt +129 -0
  1885. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_typeAlias.refactors.txt +86 -0
  1886. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_union.refactors.txt +58 -0
  1887. package/repos/tsgo/testdata/baselines/reference/effect-v3/toggleLazyConst.refactors.txt +140 -0
  1888. package/repos/tsgo/testdata/baselines/reference/effect-v3/togglePipeStyle.refactors.txt +94 -0
  1889. package/repos/tsgo/testdata/baselines/reference/effect-v3/toggleReturnTypeAnnotation.refactors.txt +335 -0
  1890. package/repos/tsgo/testdata/baselines/reference/effect-v3/toggleTypeAnnotation.refactors.txt +754 -0
  1891. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.errors.txt +76 -0
  1892. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.flows.tryCatchInEffectGen.mermaid +76 -0
  1893. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.flows.txt +1 -0
  1894. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.layers.txt +1 -0
  1895. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.pipings.txt +197 -0
  1896. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.quickfixes.txt +33 -0
  1897. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.errors.txt +19 -0
  1898. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.flows.tryCatchInEffectGen_finally.mermaid +17 -0
  1899. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.flows.txt +1 -0
  1900. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.layers.txt +1 -0
  1901. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.pipings.txt +43 -0
  1902. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.quickfixes.txt +5 -0
  1903. package/repos/tsgo/testdata/baselines/reference/effect-v3/typeToEffectSchema.refactors.txt +319 -0
  1904. package/repos/tsgo/testdata/baselines/reference/effect-v3/typeToEffectSchemaClass.refactors.txt +303 -0
  1905. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.errors.txt +64 -0
  1906. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.flows.txt +1 -0
  1907. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.flows.unknownInEffectCatch.mermaid +87 -0
  1908. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.layers.txt +1 -0
  1909. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.pipings.txt +209 -0
  1910. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.quickfixes.txt +53 -0
  1911. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.errors.txt +41 -0
  1912. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.flows.txt +1 -0
  1913. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.flows.unnecessaryArrowBlock.mermaid +20 -0
  1914. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.layers.txt +1 -0
  1915. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.pipings.txt +1 -0
  1916. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.quickfixes.txt +102 -0
  1917. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.errors.txt +17 -0
  1918. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.flows.txt +1 -0
  1919. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.flows.unnecessaryArrowBlock_preview.mermaid +5 -0
  1920. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.layers.txt +1 -0
  1921. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.pipings.txt +1 -0
  1922. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.quickfixes.txt +22 -0
  1923. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.errors.txt +27 -0
  1924. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.flows.txt +1 -0
  1925. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.flows.unnecessaryEffectGen.mermaid +31 -0
  1926. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.layers.txt +1 -0
  1927. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.pipings.txt +85 -0
  1928. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.quickfixes.txt +32 -0
  1929. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.errors.txt +18 -0
  1930. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.flows.txt +1 -0
  1931. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.flows.unnecessaryEffectGen_ifBlock.mermaid +28 -0
  1932. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.layers.txt +1 -0
  1933. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.pipings.txt +57 -0
  1934. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.quickfixes.txt +5 -0
  1935. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.errors.txt +36 -0
  1936. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.flows.txt +1 -0
  1937. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.flows.unnecessaryEffectGen_noReturn.mermaid +28 -0
  1938. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.layers.txt +1 -0
  1939. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.pipings.txt +99 -0
  1940. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.quickfixes.txt +69 -0
  1941. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.errors.txt +42 -0
  1942. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.flows.txt +1 -0
  1943. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.flows.unnecessaryFailYieldableError.mermaid +45 -0
  1944. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.layers.txt +1 -0
  1945. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.pipings.txt +113 -0
  1946. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.quickfixes.txt +129 -0
  1947. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.errors.txt +29 -0
  1948. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.flows.txt +1 -0
  1949. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.flows.unnecessaryPipe.mermaid +33 -0
  1950. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.layers.txt +1 -0
  1951. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.pipings.txt +61 -0
  1952. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.quickfixes.txt +67 -0
  1953. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.errors.txt +20 -0
  1954. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.flows.txt +1 -0
  1955. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.flows.unnecessaryPipeChain.mermaid +43 -0
  1956. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.layers.txt +1 -0
  1957. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.pipings.txt +45 -0
  1958. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.quickfixes.txt +49 -0
  1959. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.errors.txt +23 -0
  1960. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.flows.txt +1 -0
  1961. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.flows.unnecessaryPipe_disableMidObject.mermaid +20 -0
  1962. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.layers.txt +1 -0
  1963. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.pipings.txt +43 -0
  1964. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.quickfixes.txt +55 -0
  1965. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.errors.txt +23 -0
  1966. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.flows.txt +1 -0
  1967. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.flows.unnecessaryPipe_namespace.mermaid +5 -0
  1968. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.layers.txt +1 -0
  1969. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.pipings.txt +25 -0
  1970. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.quickfixes.txt +29 -0
  1971. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.errors.txt +62 -0
  1972. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.flows.txt +1 -0
  1973. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.flows.unsafeEffectTypeAssertion.mermaid +12 -0
  1974. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.layers.txt +88 -0
  1975. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.pipings.txt +1 -0
  1976. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.quickfixes.txt +283 -0
  1977. package/repos/tsgo/testdata/baselines/reference/effect-v3/wrapWithEffectGen.refactors.txt +425 -0
  1978. package/repos/tsgo/testdata/baselines/reference/effect-v3/wrapWithEffectGen_noclass.refactors.txt +21 -0
  1979. package/repos/tsgo/testdata/baselines/reference/effect-v3/writeTagClassAccessors.refactors.txt +86 -0
  1980. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.errors.txt +153 -0
  1981. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.flows.anyUnknownInErrorContext.mermaid +77 -0
  1982. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.flows.txt +1 -0
  1983. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.layers.txt +69 -0
  1984. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.pipings.txt +197 -0
  1985. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.quickfixes.txt +403 -0
  1986. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.errors.txt +32 -0
  1987. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.flows.anyUnknownInErrorContext_preview.mermaid +13 -0
  1988. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.flows.txt +1 -0
  1989. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.layers.txt +1 -0
  1990. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.pipings.txt +29 -0
  1991. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.quickfixes.txt +37 -0
  1992. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToFn.refactors.txt +92 -0
  1993. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToFnTryPromise.refactors.txt +118 -0
  1994. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToFn_fetch.refactors.txt +106 -0
  1995. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToFn_generics.refactors.txt +92 -0
  1996. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToGen.refactors.txt +92 -0
  1997. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToGenTryPromise.refactors.txt +124 -0
  1998. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToGenTryPromise_anonymous.refactors.txt +358 -0
  1999. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToGen_anonymous.refactors.txt +290 -0
  2000. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToGen_namedImport.refactors.txt +92 -0
  2001. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.errors.txt +52 -0
  2002. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.flows.asyncFunction.mermaid +29 -0
  2003. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.flows.txt +1 -0
  2004. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.layers.txt +1 -0
  2005. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.pipings.txt +85 -0
  2006. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.quickfixes.txt +43 -0
  2007. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.errors.txt +16 -0
  2008. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.flows.asyncFunction_preview.mermaid +2 -0
  2009. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.flows.txt +1 -0
  2010. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.layers.txt +1 -0
  2011. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.pipings.txt +15 -0
  2012. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.quickfixes.txt +13 -0
  2013. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.errors.txt +15 -0
  2014. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.flows.callExpPipeable.mermaid +34 -0
  2015. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.flows.txt +1 -0
  2016. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.layers.txt +1 -0
  2017. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.pipings.txt +55 -0
  2018. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.quickfixes.txt +7 -0
  2019. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.errors.txt +86 -0
  2020. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.flows.catchAllToMapError.mermaid +164 -0
  2021. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.flows.txt +1 -0
  2022. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.layers.txt +1 -0
  2023. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.pipings.txt +289 -0
  2024. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.quickfixes.txt +403 -0
  2025. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.errors.txt +41 -0
  2026. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.flows.catchAllToMapError_effectFn.mermaid +87 -0
  2027. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.flows.txt +1 -0
  2028. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.layers.txt +1 -0
  2029. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.pipings.txt +169 -0
  2030. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.quickfixes.txt +126 -0
  2031. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.errors.txt +21 -0
  2032. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.flows.catchAllToMapError_preview.mermaid +19 -0
  2033. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.flows.txt +1 -0
  2034. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.layers.txt +1 -0
  2035. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.pipings.txt +33 -0
  2036. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.quickfixes.txt +30 -0
  2037. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.errors.txt +63 -0
  2038. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.flows.catchToOrElseSucceed.mermaid +131 -0
  2039. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.flows.txt +1 -0
  2040. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.layers.txt +1 -0
  2041. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.pipings.txt +239 -0
  2042. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.quickfixes.txt +243 -0
  2043. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.errors.txt +15 -0
  2044. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.flows.catchToOrElseSucceed_preview.mermaid +18 -0
  2045. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.flows.txt +1 -0
  2046. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.layers.txt +1 -0
  2047. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.pipings.txt +33 -0
  2048. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.quickfixes.txt +24 -0
  2049. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.errors.txt +93 -0
  2050. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.flows.catchUnfailableEffect.mermaid +152 -0
  2051. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.flows.txt +1 -0
  2052. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.layers.txt +1 -0
  2053. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.pipings.txt +215 -0
  2054. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.quickfixes.txt +78 -0
  2055. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.errors.txt +17 -0
  2056. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.flows.catchUnfailableEffect_preview.mermaid +18 -0
  2057. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.flows.txt +1 -0
  2058. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.layers.txt +1 -0
  2059. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.pipings.txt +33 -0
  2060. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.quickfixes.txt +13 -0
  2061. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.errors.txt +24 -0
  2062. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.flows.classImplementsIssue.mermaid +17 -0
  2063. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.flows.txt +1 -0
  2064. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.layers.txt +1 -0
  2065. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.pipings.txt +1 -0
  2066. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.quickfixes.txt +7 -0
  2067. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.errors.txt +18 -0
  2068. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.flows.classSelfMismatch_contextTag.mermaid +3 -0
  2069. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.flows.txt +1 -0
  2070. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.layers.txt +1 -0
  2071. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.pipings.txt +29 -0
  2072. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.quickfixes.txt +5 -0
  2073. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.errors.txt +57 -0
  2074. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.flows.classSelfMismatch_schema.mermaid +43 -0
  2075. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.flows.txt +1 -0
  2076. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.layers.txt +1 -0
  2077. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.pipings.txt +113 -0
  2078. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.quickfixes.txt +117 -0
  2079. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.errors.txt +23 -0
  2080. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.flows.classSelfMismatch_service.mermaid +3 -0
  2081. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.flows.txt +1 -0
  2082. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.layers.txt +1 -0
  2083. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.pipings.txt +29 -0
  2084. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.quickfixes.txt +32 -0
  2085. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.errors.txt +22 -0
  2086. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.flows.classSelfMismatch_sqlClass.mermaid +15 -0
  2087. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.flows.txt +1 -0
  2088. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.layers.txt +1 -0
  2089. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.pipings.txt +29 -0
  2090. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.quickfixes.txt +31 -0
  2091. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.errors.txt +48 -0
  2092. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.flows.cryptoRandomUUID.mermaid +27 -0
  2093. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.flows.txt +1 -0
  2094. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.layers.txt +1 -0
  2095. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.pipings.txt +29 -0
  2096. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.quickfixes.txt +43 -0
  2097. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.errors.txt +38 -0
  2098. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.flows.cryptoRandomUUIDInEffect.mermaid +21 -0
  2099. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.flows.txt +1 -0
  2100. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.layers.txt +1 -0
  2101. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.pipings.txt +43 -0
  2102. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.quickfixes.txt +23 -0
  2103. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.errors.txt +17 -0
  2104. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.flows.cryptoRandomUUIDInEffect_preview.mermaid +5 -0
  2105. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.flows.txt +1 -0
  2106. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.layers.txt +1 -0
  2107. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.pipings.txt +15 -0
  2108. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.quickfixes.txt +13 -0
  2109. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.errors.txt +39 -0
  2110. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.flows.cryptoRandomUUIDInEffect_thunks.mermaid +55 -0
  2111. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.flows.txt +1 -0
  2112. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.layers.txt +1 -0
  2113. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.pipings.txt +85 -0
  2114. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.quickfixes.txt +43 -0
  2115. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.errors.txt +14 -0
  2116. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.flows.cryptoRandomUUID_preview.mermaid +2 -0
  2117. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.flows.txt +1 -0
  2118. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.layers.txt +1 -0
  2119. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.pipings.txt +1 -0
  2120. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.quickfixes.txt +13 -0
  2121. package/repos/tsgo/testdata/baselines/reference/effect-v4/debugDocumentSymbolFlows.symbols.txt +35 -0
  2122. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.errors.txt +41 -0
  2123. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.flows.package.mermaid +2 -0
  2124. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.flows.test.mermaid +7 -0
  2125. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.flows.txt +2 -0
  2126. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.layers.txt +2 -0
  2127. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.pipings.txt +30 -0
  2128. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.quickfixes.txt +51 -0
  2129. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.errors.txt +78 -0
  2130. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.flows.package.mermaid +2 -0
  2131. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.flows.test.mermaid +15 -0
  2132. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.flows.txt +3 -0
  2133. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.flows.utils.mermaid +13 -0
  2134. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.layers.txt +3 -0
  2135. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.pipings.txt +45 -0
  2136. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.quickfixes.txt +71 -0
  2137. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.errors.txt +41 -0
  2138. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.flows.package.mermaid +2 -0
  2139. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.flows.test.mermaid +7 -0
  2140. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.flows.txt +2 -0
  2141. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.layers.txt +2 -0
  2142. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.pipings.txt +30 -0
  2143. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.quickfixes.txt +51 -0
  2144. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.errors.txt +41 -0
  2145. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.flows.package.mermaid +2 -0
  2146. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.flows.test.mermaid +7 -0
  2147. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.flows.txt +2 -0
  2148. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.layers.txt +2 -0
  2149. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.pipings.txt +30 -0
  2150. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.quickfixes.txt +51 -0
  2151. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.errors.txt +17 -0
  2152. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.flows.deterministicKeys_preview.mermaid +2 -0
  2153. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.flows.txt +1 -0
  2154. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.layers.txt +1 -0
  2155. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.pipings.txt +15 -0
  2156. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.quickfixes.txt +26 -0
  2157. package/repos/tsgo/testdata/baselines/reference/effect-v4/documentSymbolEffectStub.symbols.txt +123 -0
  2158. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.errors.txt +18 -0
  2159. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.flows.duplicatePackage.mermaid +11 -0
  2160. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.flows.txt +1 -0
  2161. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.layers.txt +1 -0
  2162. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.pipings.txt +29 -0
  2163. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.quickfixes.txt +26 -0
  2164. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.errors.txt +29 -0
  2165. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.flows.test.mermaid +6 -0
  2166. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.flows.txt +1 -0
  2167. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.layers.txt +1 -0
  2168. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.pipings.txt +15 -0
  2169. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.quickfixes.txt +17 -0
  2170. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.errors.txt +26 -0
  2171. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.flows.test.mermaid +6 -0
  2172. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.flows.txt +1 -0
  2173. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.layers.txt +1 -0
  2174. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.pipings.txt +15 -0
  2175. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.quickfixes.txt +7 -0
  2176. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.errors.txt +28 -0
  2177. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.flows.effectDoNotation.mermaid +21 -0
  2178. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.flows.txt +1 -0
  2179. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.layers.txt +1 -0
  2180. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.pipings.txt +29 -0
  2181. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.quickfixes.txt +33 -0
  2182. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.errors.txt +21 -0
  2183. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.flows.effectDoNotation_preview.mermaid +40 -0
  2184. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.flows.txt +1 -0
  2185. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.layers.txt +1 -0
  2186. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.pipings.txt +51 -0
  2187. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.quickfixes.txt +13 -0
  2188. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.errors.txt +55 -0
  2189. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.flows.effectFn.mermaid +153 -0
  2190. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.flows.txt +1 -0
  2191. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.layers.txt +1 -0
  2192. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.pipings.txt +233 -0
  2193. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.quickfixes.txt +13 -0
  2194. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.errors.txt +98 -0
  2195. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.flows.effectFnIife.mermaid +135 -0
  2196. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.flows.txt +1 -0
  2197. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.layers.txt +1 -0
  2198. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.pipings.txt +309 -0
  2199. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.quickfixes.txt +429 -0
  2200. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.errors.txt +19 -0
  2201. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.flows.effectFnIife_preview.mermaid +12 -0
  2202. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.flows.txt +1 -0
  2203. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.layers.txt +1 -0
  2204. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.pipings.txt +29 -0
  2205. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.quickfixes.txt +26 -0
  2206. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.errors.txt +117 -0
  2207. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.flows.effectFnImplicitAny.mermaid +109 -0
  2208. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.flows.txt +1 -0
  2209. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.layers.txt +1 -0
  2210. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.pipings.txt +213 -0
  2211. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.quickfixes.txt +42 -0
  2212. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.errors.txt +97 -0
  2213. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.flows.effectFnImplicitAnyNonGen.mermaid +135 -0
  2214. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.flows.txt +1 -0
  2215. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.layers.txt +1 -0
  2216. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.pipings.txt +325 -0
  2217. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.quickfixes.txt +42 -0
  2218. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.errors.txt +29 -0
  2219. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.flows.effectFnImplicitAny_noDiags.mermaid +25 -0
  2220. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.flows.txt +1 -0
  2221. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.layers.txt +30 -0
  2222. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.pipings.txt +61 -0
  2223. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.quickfixes.txt +7 -0
  2224. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.errors.txt +16 -0
  2225. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.flows.effectFnImplicitAny_preview.mermaid +10 -0
  2226. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.flows.txt +1 -0
  2227. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.layers.txt +1 -0
  2228. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.pipings.txt +29 -0
  2229. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.quickfixes.txt +13 -0
  2230. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.errors.txt +33 -0
  2231. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.flows.effectFnOpportunity_alreadyEffectFn.mermaid +28 -0
  2232. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.flows.txt +1 -0
  2233. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.layers.txt +1 -0
  2234. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.pipings.txt +85 -0
  2235. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.quickfixes.txt +5 -0
  2236. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.errors.txt +66 -0
  2237. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.flows.effectFnOpportunity_basic.mermaid +52 -0
  2238. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.flows.txt +1 -0
  2239. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.layers.txt +1 -0
  2240. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.pipings.txt +113 -0
  2241. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.quickfixes.txt +502 -0
  2242. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.errors.txt +61 -0
  2243. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.flows.effectFnOpportunity_defaultConfig.mermaid +51 -0
  2244. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.flows.txt +1 -0
  2245. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.layers.txt +1 -0
  2246. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.pipings.txt +93 -0
  2247. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.quickfixes.txt +153 -0
  2248. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.errors.txt +44 -0
  2249. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.flows.effectFnOpportunity_genWithThis.mermaid +28 -0
  2250. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.flows.txt +1 -0
  2251. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.layers.txt +1 -0
  2252. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.pipings.txt +29 -0
  2253. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.quickfixes.txt +5 -0
  2254. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.errors.txt +48 -0
  2255. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.flows.effectFnOpportunity_inferred.mermaid +40 -0
  2256. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.flows.txt +1 -0
  2257. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.layers.txt +1 -0
  2258. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.pipings.txt +85 -0
  2259. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.quickfixes.txt +78 -0
  2260. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.errors.txt +59 -0
  2261. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.flows.effectFnOpportunity_inferredLayer.mermaid +83 -0
  2262. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.flows.txt +1 -0
  2263. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.layers.txt +1 -0
  2264. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.pipings.txt +163 -0
  2265. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.quickfixes.txt +493 -0
  2266. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.errors.txt +47 -0
  2267. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.flows.effectFnOpportunity_inferredLayerThis.mermaid +59 -0
  2268. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.flows.txt +1 -0
  2269. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.layers.txt +1 -0
  2270. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.pipings.txt +117 -0
  2271. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.quickfixes.txt +279 -0
  2272. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.errors.txt +41 -0
  2273. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.flows.effectFnOpportunity_inferredOf.mermaid +17 -0
  2274. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.flows.txt +1 -0
  2275. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.layers.txt +1 -0
  2276. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.pipings.txt +57 -0
  2277. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.quickfixes.txt +63 -0
  2278. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.errors.txt +40 -0
  2279. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.flows.effectFnOpportunity_inferredServiceMake.mermaid +17 -0
  2280. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.flows.txt +1 -0
  2281. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.layers.txt +1 -0
  2282. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.pipings.txt +43 -0
  2283. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.quickfixes.txt +58 -0
  2284. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.errors.txt +43 -0
  2285. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.flows.effectFnOpportunity_invalid.mermaid +15 -0
  2286. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.flows.txt +1 -0
  2287. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.layers.txt +1 -0
  2288. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.pipings.txt +1 -0
  2289. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.quickfixes.txt +5 -0
  2290. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.errors.txt +64 -0
  2291. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.flows.effectFnOpportunity_multipleReturns.mermaid +61 -0
  2292. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.flows.txt +1 -0
  2293. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.layers.txt +1 -0
  2294. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.pipings.txt +127 -0
  2295. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.quickfixes.txt +132 -0
  2296. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.errors.txt +69 -0
  2297. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.flows.effectFnOpportunity_noPipeWithSpan.mermaid +65 -0
  2298. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.flows.txt +1 -0
  2299. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.layers.txt +1 -0
  2300. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.pipings.txt +109 -0
  2301. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.quickfixes.txt +413 -0
  2302. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.errors.txt +49 -0
  2303. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.flows.effectFnOpportunity_overloadsNever.mermaid +26 -0
  2304. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.flows.txt +1 -0
  2305. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.layers.txt +1 -0
  2306. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.pipings.txt +43 -0
  2307. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.quickfixes.txt +56 -0
  2308. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.errors.txt +93 -0
  2309. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.flows.effectFnOpportunity_overloadsOk.mermaid +43 -0
  2310. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.flows.txt +1 -0
  2311. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.layers.txt +1 -0
  2312. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.pipings.txt +85 -0
  2313. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.quickfixes.txt +761 -0
  2314. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.errors.txt +54 -0
  2315. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.flows.effectFnOpportunity_params.mermaid +40 -0
  2316. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.flows.txt +1 -0
  2317. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.layers.txt +1 -0
  2318. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.pipings.txt +85 -0
  2319. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.quickfixes.txt +294 -0
  2320. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.errors.txt +54 -0
  2321. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.flows.effectFnOpportunity_paramsInPipe.mermaid +91 -0
  2322. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.flows.txt +1 -0
  2323. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.layers.txt +1 -0
  2324. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.pipings.txt +143 -0
  2325. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.quickfixes.txt +5 -0
  2326. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.errors.txt +70 -0
  2327. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.flows.effectFnOpportunity_pipeWithSpan.mermaid +75 -0
  2328. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.flows.txt +1 -0
  2329. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.layers.txt +1 -0
  2330. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.pipings.txt +109 -0
  2331. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.quickfixes.txt +425 -0
  2332. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.errors.txt +41 -0
  2333. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.flows.effectFnOpportunity_plainFew.mermaid +46 -0
  2334. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.flows.txt +1 -0
  2335. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.layers.txt +1 -0
  2336. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.pipings.txt +85 -0
  2337. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.quickfixes.txt +5 -0
  2338. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.errors.txt +69 -0
  2339. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.flows.effectFnOpportunity_plainMany.mermaid +39 -0
  2340. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.flows.txt +1 -0
  2341. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.layers.txt +1 -0
  2342. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.pipings.txt +71 -0
  2343. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.quickfixes.txt +309 -0
  2344. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.errors.txt +15 -0
  2345. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.flows.effectFnOpportunity_preview.mermaid +13 -0
  2346. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.flows.txt +1 -0
  2347. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.layers.txt +1 -0
  2348. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.pipings.txt +29 -0
  2349. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.quickfixes.txt +5 -0
  2350. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.errors.txt +61 -0
  2351. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.flows.effectFnOpportunity_returnType.mermaid +40 -0
  2352. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.flows.txt +1 -0
  2353. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.layers.txt +1 -0
  2354. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.pipings.txt +85 -0
  2355. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.quickfixes.txt +123 -0
  2356. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.errors.txt +110 -0
  2357. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.flows.effectFnOpportunity_typeParams.mermaid +64 -0
  2358. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.flows.txt +1 -0
  2359. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.layers.txt +1 -0
  2360. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.pipings.txt +127 -0
  2361. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.quickfixes.txt +1248 -0
  2362. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.errors.txt +26 -0
  2363. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.flows.effectFnRegular.mermaid +60 -0
  2364. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.flows.txt +1 -0
  2365. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.layers.txt +1 -0
  2366. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.pipings.txt +89 -0
  2367. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.quickfixes.txt +5 -0
  2368. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.errors.txt +107 -0
  2369. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.flows.effectFnUntracedEagerImplicitAny.mermaid +109 -0
  2370. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.flows.txt +1 -0
  2371. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.layers.txt +1 -0
  2372. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.pipings.txt +213 -0
  2373. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.quickfixes.txt +42 -0
  2374. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.errors.txt +107 -0
  2375. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.flows.effectFnUntracedImplicitAny.mermaid +109 -0
  2376. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.flows.txt +1 -0
  2377. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.layers.txt +1 -0
  2378. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.pipings.txt +213 -0
  2379. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.quickfixes.txt +42 -0
  2380. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectGenToFn.refactors.txt +555 -0
  2381. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectGenToFn_classMethod.refactors.txt +42 -0
  2382. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectGenToFn_mixedPipes.refactors.txt +76 -0
  2383. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectGenToFn_withPipes.refactors.txt +73 -0
  2384. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.errors.txt +47 -0
  2385. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.flows.effectInFailure.mermaid +71 -0
  2386. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.flows.txt +1 -0
  2387. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.layers.txt +1 -0
  2388. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.pipings.txt +159 -0
  2389. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.quickfixes.txt +43 -0
  2390. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.errors.txt +24 -0
  2391. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.flows.effectInFailure_preview.mermaid +18 -0
  2392. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.flows.txt +1 -0
  2393. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.layers.txt +1 -0
  2394. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.pipings.txt +43 -0
  2395. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.quickfixes.txt +23 -0
  2396. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.errors.txt +28 -0
  2397. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.flows.effectInVoidSuccess.mermaid +40 -0
  2398. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.flows.txt +1 -0
  2399. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.layers.txt +1 -0
  2400. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.pipings.txt +69 -0
  2401. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.quickfixes.txt +23 -0
  2402. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.errors.txt +17 -0
  2403. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.flows.effectInVoidSuccess_preview.mermaid +10 -0
  2404. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.flows.txt +1 -0
  2405. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.layers.txt +1 -0
  2406. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.pipings.txt +19 -0
  2407. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.quickfixes.txt +13 -0
  2408. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.errors.txt +54 -0
  2409. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.flows.effectMapFlatten.mermaid +127 -0
  2410. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.flows.txt +1 -0
  2411. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.layers.txt +1 -0
  2412. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.pipings.txt +217 -0
  2413. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.quickfixes.txt +33 -0
  2414. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.errors.txt +18 -0
  2415. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.flows.effectMapFlatten_preview.mermaid +20 -0
  2416. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.flows.txt +1 -0
  2417. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.layers.txt +1 -0
  2418. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.pipings.txt +37 -0
  2419. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.quickfixes.txt +13 -0
  2420. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.errors.txt +76 -0
  2421. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.flows.effectMapVoid.mermaid +123 -0
  2422. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.flows.txt +1 -0
  2423. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.layers.txt +1 -0
  2424. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.pipings.txt +181 -0
  2425. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.quickfixes.txt +405 -0
  2426. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.errors.txt +17 -0
  2427. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.flows.effectMapVoid_preview.mermaid +14 -0
  2428. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.flows.txt +1 -0
  2429. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.layers.txt +1 -0
  2430. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.pipings.txt +19 -0
  2431. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.quickfixes.txt +26 -0
  2432. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.errors.txt +53 -0
  2433. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.flows.effectSucceedWithVoid.mermaid +47 -0
  2434. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.flows.txt +1 -0
  2435. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.layers.txt +1 -0
  2436. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.pipings.txt +127 -0
  2437. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.quickfixes.txt +238 -0
  2438. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.errors.txt +15 -0
  2439. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.flows.effectSucceedWithVoid_preview.mermaid +6 -0
  2440. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.flows.txt +1 -0
  2441. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.layers.txt +1 -0
  2442. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.pipings.txt +15 -0
  2443. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.quickfixes.txt +24 -0
  2444. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.errors.txt +154 -0
  2445. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.flows.effect_fn_opportunity_panic.mermaid +207 -0
  2446. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.flows.txt +1 -0
  2447. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.layers.txt +1 -0
  2448. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.pipings.txt +429 -0
  2449. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.quickfixes.txt +267 -0
  2450. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.errors.txt +21 -0
  2451. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.flows.emptyArgs.mermaid +11 -0
  2452. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.flows.txt +1 -0
  2453. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.layers.txt +1 -0
  2454. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.pipings.txt +29 -0
  2455. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.quickfixes.txt +51 -0
  2456. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.errors.txt +32 -0
  2457. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.flows.extendsNativeError.mermaid +7 -0
  2458. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.flows.txt +1 -0
  2459. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.layers.txt +1 -0
  2460. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.pipings.txt +1 -0
  2461. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.quickfixes.txt +33 -0
  2462. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.errors.txt +14 -0
  2463. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.flows.extendsNativeError_preview.mermaid +2 -0
  2464. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.flows.txt +1 -0
  2465. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.layers.txt +1 -0
  2466. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.pipings.txt +1 -0
  2467. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.quickfixes.txt +13 -0
  2468. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.errors.txt +45 -0
  2469. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.flows.floatingEffect.mermaid +24 -0
  2470. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.flows.txt +1 -0
  2471. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.layers.txt +1 -0
  2472. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.pipings.txt +43 -0
  2473. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.quickfixes.txt +52 -0
  2474. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.errors.txt +14 -0
  2475. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.flows.floatingEffectGen.mermaid +8 -0
  2476. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.flows.txt +1 -0
  2477. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.layers.txt +1 -0
  2478. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.pipings.txt +29 -0
  2479. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.quickfixes.txt +13 -0
  2480. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.errors.txt +50 -0
  2481. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.flows.floatingEffectSuppressed.mermaid +46 -0
  2482. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.flows.txt +1 -0
  2483. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.layers.txt +1 -0
  2484. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.pipings.txt +127 -0
  2485. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.quickfixes.txt +53 -0
  2486. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.errors.txt +26 -0
  2487. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.flows.floatingEffect_disabledWildcard.mermaid +21 -0
  2488. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.flows.txt +1 -0
  2489. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.layers.txt +1 -0
  2490. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.pipings.txt +57 -0
  2491. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.quickfixes.txt +23 -0
  2492. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.errors.txt +15 -0
  2493. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.flows.floatingEffect_preview.mermaid +6 -0
  2494. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.flows.txt +1 -0
  2495. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.layers.txt +1 -0
  2496. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.pipings.txt +15 -0
  2497. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.quickfixes.txt +13 -0
  2498. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.errors.txt +15 -0
  2499. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.flows.floatingEffect_stream.mermaid +8 -0
  2500. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.flows.txt +1 -0
  2501. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.layers.txt +1 -0
  2502. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.pipings.txt +29 -0
  2503. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.quickfixes.txt +13 -0
  2504. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.errors.txt +21 -0
  2505. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.flows.floatingEffect_subtypes.mermaid +28 -0
  2506. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.flows.txt +1 -0
  2507. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.layers.txt +1 -0
  2508. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.pipings.txt +75 -0
  2509. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.quickfixes.txt +5 -0
  2510. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.errors.txt +24 -0
  2511. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.flows.functionCalls.mermaid +50 -0
  2512. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.flows.txt +1 -0
  2513. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.layers.txt +1 -0
  2514. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.pipings.txt +73 -0
  2515. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.quickfixes.txt +5 -0
  2516. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionToArrow.refactors.txt +278 -0
  2517. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.errors.txt +55 -0
  2518. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.flows.globalConsole.mermaid +58 -0
  2519. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.flows.txt +1 -0
  2520. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.layers.txt +1 -0
  2521. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.pipings.txt +141 -0
  2522. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.quickfixes.txt +49 -0
  2523. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.errors.txt +70 -0
  2524. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.flows.globalConsoleInEffect.mermaid +63 -0
  2525. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.flows.txt +1 -0
  2526. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.layers.txt +1 -0
  2527. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.pipings.txt +225 -0
  2528. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.quickfixes.txt +56 -0
  2529. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.errors.txt +17 -0
  2530. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.flows.globalConsoleInEffect_preview.mermaid +8 -0
  2531. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.flows.txt +1 -0
  2532. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.layers.txt +1 -0
  2533. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.pipings.txt +29 -0
  2534. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.quickfixes.txt +13 -0
  2535. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.errors.txt +39 -0
  2536. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.flows.globalConsoleInEffect_thunks.mermaid +75 -0
  2537. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.flows.txt +1 -0
  2538. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.layers.txt +1 -0
  2539. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.pipings.txt +155 -0
  2540. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.quickfixes.txt +43 -0
  2541. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.errors.txt +14 -0
  2542. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.flows.globalConsole_preview.mermaid +6 -0
  2543. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.flows.txt +1 -0
  2544. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.layers.txt +1 -0
  2545. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.pipings.txt +15 -0
  2546. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.quickfixes.txt +13 -0
  2547. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.errors.txt +50 -0
  2548. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.flows.globalDate.mermaid +26 -0
  2549. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.flows.txt +1 -0
  2550. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.layers.txt +1 -0
  2551. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.pipings.txt +43 -0
  2552. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.quickfixes.txt +52 -0
  2553. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.errors.txt +60 -0
  2554. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.flows.globalDateInEffect.mermaid +32 -0
  2555. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.flows.txt +1 -0
  2556. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.layers.txt +1 -0
  2557. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.pipings.txt +71 -0
  2558. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.quickfixes.txt +49 -0
  2559. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.errors.txt +18 -0
  2560. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.flows.globalDateInEffect_preview.mermaid +5 -0
  2561. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.flows.txt +1 -0
  2562. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.layers.txt +1 -0
  2563. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.pipings.txt +15 -0
  2564. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.quickfixes.txt +13 -0
  2565. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.errors.txt +39 -0
  2566. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.flows.globalDateInEffect_thunks.mermaid +55 -0
  2567. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.flows.txt +1 -0
  2568. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.layers.txt +1 -0
  2569. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.pipings.txt +85 -0
  2570. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.quickfixes.txt +43 -0
  2571. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.errors.txt +14 -0
  2572. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.flows.globalDate_preview.mermaid +2 -0
  2573. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.flows.txt +1 -0
  2574. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.layers.txt +1 -0
  2575. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.pipings.txt +1 -0
  2576. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.quickfixes.txt +13 -0
  2577. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.errors.txt +29 -0
  2578. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.flows.globalErrorInEffectCatch.mermaid +32 -0
  2579. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.flows.txt +1 -0
  2580. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.layers.txt +1 -0
  2581. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.pipings.txt +71 -0
  2582. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.quickfixes.txt +26 -0
  2583. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.errors.txt +18 -0
  2584. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.flows.globalErrorInEffectCatch_preview.mermaid +20 -0
  2585. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.flows.txt +1 -0
  2586. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.layers.txt +1 -0
  2587. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.pipings.txt +29 -0
  2588. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.quickfixes.txt +13 -0
  2589. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.errors.txt +86 -0
  2590. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.flows.globalErrorInEffectFailure.mermaid +85 -0
  2591. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.flows.txt +1 -0
  2592. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.layers.txt +1 -0
  2593. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.pipings.txt +191 -0
  2594. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.quickfixes.txt +251 -0
  2595. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.errors.txt +15 -0
  2596. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.flows.globalErrorInEffectFailure_preview.mermaid +6 -0
  2597. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.flows.txt +1 -0
  2598. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.layers.txt +1 -0
  2599. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.pipings.txt +15 -0
  2600. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.quickfixes.txt +13 -0
  2601. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.errors.txt +42 -0
  2602. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.flows.globalFetch.mermaid +16 -0
  2603. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.flows.txt +1 -0
  2604. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.layers.txt +1 -0
  2605. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.pipings.txt +99 -0
  2606. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.quickfixes.txt +52 -0
  2607. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.errors.txt +37 -0
  2608. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.flows.globalFetchInEffect.mermaid +17 -0
  2609. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.flows.txt +1 -0
  2610. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.layers.txt +1 -0
  2611. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.pipings.txt +113 -0
  2612. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.quickfixes.txt +29 -0
  2613. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.errors.txt +17 -0
  2614. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.flows.globalFetchInEffect_preview.mermaid +13 -0
  2615. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.flows.txt +1 -0
  2616. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.layers.txt +1 -0
  2617. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.pipings.txt +43 -0
  2618. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.quickfixes.txt +13 -0
  2619. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.errors.txt +42 -0
  2620. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.flows.globalFetchInEffect_thunks.mermaid +55 -0
  2621. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.flows.txt +1 -0
  2622. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.layers.txt +1 -0
  2623. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.pipings.txt +155 -0
  2624. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.quickfixes.txt +53 -0
  2625. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.errors.txt +14 -0
  2626. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.flows.globalFetch_preview.mermaid +2 -0
  2627. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.flows.txt +1 -0
  2628. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.layers.txt +1 -0
  2629. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.pipings.txt +15 -0
  2630. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.quickfixes.txt +13 -0
  2631. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.errors.txt +48 -0
  2632. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.flows.globalRandom.mermaid +27 -0
  2633. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.flows.txt +1 -0
  2634. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.layers.txt +1 -0
  2635. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.pipings.txt +29 -0
  2636. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.quickfixes.txt +55 -0
  2637. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.errors.txt +40 -0
  2638. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.flows.globalRandomInEffect.mermaid +21 -0
  2639. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.flows.txt +1 -0
  2640. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.layers.txt +1 -0
  2641. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.pipings.txt +43 -0
  2642. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.quickfixes.txt +29 -0
  2643. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.errors.txt +18 -0
  2644. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.flows.globalRandomInEffect_preview.mermaid +5 -0
  2645. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.flows.txt +1 -0
  2646. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.layers.txt +1 -0
  2647. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.pipings.txt +15 -0
  2648. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.quickfixes.txt +13 -0
  2649. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.errors.txt +39 -0
  2650. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.flows.globalRandomInEffect_thunks.mermaid +55 -0
  2651. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.flows.txt +1 -0
  2652. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.layers.txt +1 -0
  2653. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.pipings.txt +85 -0
  2654. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.quickfixes.txt +43 -0
  2655. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.errors.txt +14 -0
  2656. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.flows.globalRandom_preview.mermaid +2 -0
  2657. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.flows.txt +1 -0
  2658. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.layers.txt +1 -0
  2659. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.pipings.txt +1 -0
  2660. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.quickfixes.txt +13 -0
  2661. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.errors.txt +48 -0
  2662. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.flows.globalTimers.mermaid +37 -0
  2663. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.flows.txt +1 -0
  2664. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.layers.txt +1 -0
  2665. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.pipings.txt +29 -0
  2666. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.quickfixes.txt +55 -0
  2667. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.errors.txt +48 -0
  2668. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.flows.globalTimersInEffect.mermaid +26 -0
  2669. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.flows.txt +1 -0
  2670. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.layers.txt +1 -0
  2671. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.pipings.txt +57 -0
  2672. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.quickfixes.txt +36 -0
  2673. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.errors.txt +17 -0
  2674. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.flows.globalTimersInEffect_preview.mermaid +4 -0
  2675. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.flows.txt +1 -0
  2676. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.layers.txt +1 -0
  2677. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.pipings.txt +15 -0
  2678. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.quickfixes.txt +13 -0
  2679. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.errors.txt +39 -0
  2680. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.flows.globalTimersInEffect_thunks.mermaid +65 -0
  2681. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.flows.txt +1 -0
  2682. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.layers.txt +1 -0
  2683. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.pipings.txt +85 -0
  2684. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.quickfixes.txt +43 -0
  2685. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.errors.txt +14 -0
  2686. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.flows.globalTimers_preview.mermaid +4 -0
  2687. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.flows.txt +1 -0
  2688. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.layers.txt +1 -0
  2689. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.pipings.txt +1 -0
  2690. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.quickfixes.txt +13 -0
  2691. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.errors.txt +47 -0
  2692. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.flows.instanceOfSchema.mermaid +42 -0
  2693. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.flows.txt +1 -0
  2694. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.layers.txt +1 -0
  2695. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.pipings.txt +85 -0
  2696. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.quickfixes.txt +103 -0
  2697. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.errors.txt +17 -0
  2698. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.flows.instanceOfSchema_preview.mermaid +9 -0
  2699. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.flows.txt +1 -0
  2700. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.layers.txt +1 -0
  2701. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.pipings.txt +15 -0
  2702. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.quickfixes.txt +26 -0
  2703. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.errors.txt +16 -0
  2704. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.flows.interfaceExtendsIssue.mermaid +2 -0
  2705. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.flows.txt +1 -0
  2706. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.layers.txt +1 -0
  2707. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.pipings.txt +1 -0
  2708. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.quickfixes.txt +5 -0
  2709. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.errors.txt +23 -0
  2710. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.flows.interfaceExtendsIssueNoPlugin.mermaid +2 -0
  2711. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.flows.txt +1 -0
  2712. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.layers.txt +1 -0
  2713. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.pipings.txt +1 -0
  2714. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.quickfixes.txt +5 -0
  2715. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.errors.txt +33 -0
  2716. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.flows.issue179_nestedEffectGenThis.mermaid +17 -0
  2717. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.flows.txt +1 -0
  2718. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.layers.txt +1 -0
  2719. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.pipings.txt +1 -0
  2720. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.quickfixes.txt +7 -0
  2721. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.errors.txt +89 -0
  2722. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.flows.issue179_remainingCases.mermaid +126 -0
  2723. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.flows.txt +1 -0
  2724. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.layers.txt +1 -0
  2725. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.pipings.txt +145 -0
  2726. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.quickfixes.txt +10 -0
  2727. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.errors.txt +31 -0
  2728. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.flows.test.mermaid +7 -0
  2729. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.flows.txt +1 -0
  2730. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.layers.txt +1 -0
  2731. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.pipings.txt +1 -0
  2732. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.quickfixes.txt +5 -0
  2733. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.errors.txt +58 -0
  2734. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.flows.layerGraphDocumented.mermaid +93 -0
  2735. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.flows.txt +1 -0
  2736. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.layers.txt +240 -0
  2737. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.pipings.txt +153 -0
  2738. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.quickfixes.txt +5 -0
  2739. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.errors.txt +66 -0
  2740. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.flows.layerGraphDuplicated.mermaid +176 -0
  2741. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.flows.txt +1 -0
  2742. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.layers.txt +480 -0
  2743. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.pipings.txt +261 -0
  2744. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.quickfixes.txt +5 -0
  2745. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.errors.txt +22 -0
  2746. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.flows.layerGraphEffect.mermaid +37 -0
  2747. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.flows.txt +1 -0
  2748. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.layers.txt +64 -0
  2749. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.pipings.txt +65 -0
  2750. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.quickfixes.txt +5 -0
  2751. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.errors.txt +59 -0
  2752. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.flows.followSymbols.mermaid +21 -0
  2753. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.flows.simple.mermaid +95 -0
  2754. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.flows.txt +2 -0
  2755. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.layers.txt +920 -0
  2756. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.pipings.txt +196 -0
  2757. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.quickfixes.txt +5 -0
  2758. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.errors.txt +54 -0
  2759. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.flows.base.mermaid +53 -0
  2760. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.flows.deep.mermaid +3 -0
  2761. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.flows.middle.mermaid +3 -0
  2762. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.flows.txt +3 -0
  2763. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.layers.txt +628 -0
  2764. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.pipings.txt +101 -0
  2765. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.quickfixes.txt +5 -0
  2766. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.errors.txt +52 -0
  2767. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.flows.followSymbols.mermaid +21 -0
  2768. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.flows.simple.mermaid +81 -0
  2769. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.flows.txt +2 -0
  2770. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.layers.txt +396 -0
  2771. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.pipings.txt +178 -0
  2772. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.quickfixes.txt +5 -0
  2773. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.errors.txt +70 -0
  2774. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.flows.layerGraphMultiple.mermaid +165 -0
  2775. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.flows.txt +1 -0
  2776. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.layers.txt +377 -0
  2777. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.pipings.txt +243 -0
  2778. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.quickfixes.txt +5 -0
  2779. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.errors.txt +47 -0
  2780. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.flows.layerGraphSimple.mermaid +95 -0
  2781. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.flows.txt +1 -0
  2782. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.layers.txt +359 -0
  2783. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.pipings.txt +163 -0
  2784. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.quickfixes.txt +5 -0
  2785. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.errors.txt +30 -0
  2786. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.flows.layerGraphSpecialChars.mermaid +16 -0
  2787. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.flows.txt +1 -0
  2788. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.layers.txt +30 -0
  2789. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.pipings.txt +29 -0
  2790. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.quickfixes.txt +5 -0
  2791. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMagic_build.refactors.txt +1314 -0
  2792. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMagic_prepare.refactors.txt +467 -0
  2793. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMagic_prepareReuse.refactors.txt +330 -0
  2794. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.errors.txt +66 -0
  2795. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.flows.layerMergeAllWithDependencies.mermaid +78 -0
  2796. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.flows.txt +1 -0
  2797. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.layers.txt +349 -0
  2798. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.pipings.txt +131 -0
  2799. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.quickfixes.txt +251 -0
  2800. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.errors.txt +33 -0
  2801. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.flows.layerMergeAllWithDependenciesNonPropertyAccess.mermaid +47 -0
  2802. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.flows.txt +1 -0
  2803. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.layers.txt +90 -0
  2804. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.pipings.txt +85 -0
  2805. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.quickfixes.txt +5 -0
  2806. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.errors.txt +21 -0
  2807. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.flows.layerMergeAllWithDependencies_preview.mermaid +32 -0
  2808. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.flows.txt +1 -0
  2809. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.layers.txt +73 -0
  2810. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.pipings.txt +57 -0
  2811. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.quickfixes.txt +30 -0
  2812. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.errors.txt +60 -0
  2813. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.flows.layerServiceTypes.mermaid +99 -0
  2814. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.flows.txt +1 -0
  2815. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.layers.txt +1 -0
  2816. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.pipings.txt +209 -0
  2817. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.quickfixes.txt +16 -0
  2818. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.errors.txt +139 -0
  2819. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.flows.lazyEffect.mermaid +112 -0
  2820. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.flows.txt +1 -0
  2821. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.layers.txt +1 -0
  2822. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.pipings.txt +155 -0
  2823. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.quickfixes.txt +103 -0
  2824. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.errors.txt +17 -0
  2825. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.flows.lazyEffect_preview.mermaid +1 -0
  2826. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.flows.txt +1 -0
  2827. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.layers.txt +1 -0
  2828. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.pipings.txt +1 -0
  2829. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.quickfixes.txt +13 -0
  2830. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.errors.txt +33 -0
  2831. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.flows.lazyPromiseInEffectSync.mermaid +36 -0
  2832. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.flows.txt +1 -0
  2833. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.layers.txt +1 -0
  2834. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.pipings.txt +99 -0
  2835. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.quickfixes.txt +23 -0
  2836. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.errors.txt +15 -0
  2837. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.flows.lazyPromiseInEffectSync_preview.mermaid +8 -0
  2838. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.flows.txt +1 -0
  2839. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.layers.txt +1 -0
  2840. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.pipings.txt +29 -0
  2841. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.quickfixes.txt +13 -0
  2842. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.errors.txt +67 -0
  2843. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.flows.leakingRequirements.mermaid +4 -0
  2844. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.flows.txt +1 -0
  2845. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.layers.txt +1 -0
  2846. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.pipings.txt +57 -0
  2847. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.quickfixes.txt +45 -0
  2848. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.errors.txt +72 -0
  2849. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.flows.leakingRequirements_allowJsdoc.mermaid +7 -0
  2850. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.flows.txt +1 -0
  2851. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.layers.txt +1 -0
  2852. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.pipings.txt +85 -0
  2853. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.quickfixes.txt +21 -0
  2854. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.errors.txt +39 -0
  2855. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.flows.leakingRequirements_genericTag.mermaid +3 -0
  2856. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.flows.txt +1 -0
  2857. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.layers.txt +1 -0
  2858. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.pipings.txt +29 -0
  2859. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.quickfixes.txt +21 -0
  2860. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.errors.txt +19 -0
  2861. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.flows.leakingRequirements_heuristic.mermaid +3 -0
  2862. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.flows.txt +1 -0
  2863. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.layers.txt +1 -0
  2864. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.pipings.txt +29 -0
  2865. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.quickfixes.txt +5 -0
  2866. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.errors.txt +24 -0
  2867. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.flows.leakingRequirements_leakableJsDoc.mermaid +3 -0
  2868. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.flows.txt +1 -0
  2869. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.layers.txt +1 -0
  2870. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.pipings.txt +29 -0
  2871. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.quickfixes.txt +5 -0
  2872. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.errors.txt +21 -0
  2873. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.flows.leakingRequirements_noScope.mermaid +3 -0
  2874. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.flows.txt +1 -0
  2875. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.layers.txt +1 -0
  2876. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.pipings.txt +29 -0
  2877. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.quickfixes.txt +5 -0
  2878. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.errors.txt +39 -0
  2879. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.flows.leakingRequirements_preview.mermaid +3 -0
  2880. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.flows.txt +1 -0
  2881. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.layers.txt +1 -0
  2882. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.pipings.txt +29 -0
  2883. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.quickfixes.txt +21 -0
  2884. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaque.refactors.txt +85 -0
  2885. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaqueWithNs_shortImport.refactors.txt +85 -0
  2886. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaque_brand.refactors.txt +70 -0
  2887. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaque_shortImport.refactors.txt +85 -0
  2888. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaque_shortImportAlias.refactors.txt +85 -0
  2889. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaque_union.refactors.txt +85 -0
  2890. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.errors.txt +70 -0
  2891. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.flows.missedPipeableOpportunity.mermaid +182 -0
  2892. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.flows.txt +1 -0
  2893. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.layers.txt +1 -0
  2894. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.pipings.txt +303 -0
  2895. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.quickfixes.txt +258 -0
  2896. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.errors.txt +44 -0
  2897. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.flows.missedPipeableOpportunity_error.mermaid +60 -0
  2898. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.flows.txt +1 -0
  2899. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.layers.txt +1 -0
  2900. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.pipings.txt +143 -0
  2901. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.quickfixes.txt +40 -0
  2902. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.errors.txt +17 -0
  2903. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.flows.missedPipeableOpportunity_preview.mermaid +15 -0
  2904. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.flows.txt +1 -0
  2905. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.layers.txt +1 -0
  2906. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.pipings.txt +37 -0
  2907. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.quickfixes.txt +26 -0
  2908. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.errors.txt +54 -0
  2909. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.flows.missedPipeableOpportunity_safer.mermaid +44 -0
  2910. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.flows.txt +1 -0
  2911. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.layers.txt +1 -0
  2912. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.pipings.txt +87 -0
  2913. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.quickfixes.txt +73 -0
  2914. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.errors.txt +43 -0
  2915. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.flows.missingEffectContext.mermaid +5 -0
  2916. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.flows.txt +1 -0
  2917. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.layers.txt +1 -0
  2918. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.pipings.txt +1 -0
  2919. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.quickfixes.txt +35 -0
  2920. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.errors.txt +18 -0
  2921. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.flows.missingEffectContext_preview.mermaid +11 -0
  2922. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.flows.txt +1 -0
  2923. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.layers.txt +1 -0
  2924. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.pipings.txt +29 -0
  2925. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.quickfixes.txt +13 -0
  2926. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.errors.txt +58 -0
  2927. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.flows.missingEffectContext_sugg.mermaid +115 -0
  2928. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.flows.txt +1 -0
  2929. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.layers.txt +170 -0
  2930. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.pipings.txt +203 -0
  2931. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.quickfixes.txt +23 -0
  2932. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.errors.txt +38 -0
  2933. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.flows.missingEffectError.mermaid +15 -0
  2934. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.flows.txt +1 -0
  2935. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.layers.txt +1 -0
  2936. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.pipings.txt +29 -0
  2937. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.quickfixes.txt +110 -0
  2938. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.errors.txt +20 -0
  2939. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.flows.missingEffectError_preview.mermaid +9 -0
  2940. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.flows.txt +1 -0
  2941. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.layers.txt +1 -0
  2942. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.pipings.txt +15 -0
  2943. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.quickfixes.txt +45 -0
  2944. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.errors.txt +48 -0
  2945. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.flows.missingLayerContext.mermaid +61 -0
  2946. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.flows.txt +1 -0
  2947. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.layers.txt +1 -0
  2948. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.pipings.txt +113 -0
  2949. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.quickfixes.txt +23 -0
  2950. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.errors.txt +20 -0
  2951. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.flows.missingLayerContext_preview.mermaid +16 -0
  2952. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.flows.txt +1 -0
  2953. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.layers.txt +36 -0
  2954. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.pipings.txt +29 -0
  2955. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.quickfixes.txt +13 -0
  2956. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.errors.txt +54 -0
  2957. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.flows.missingReturnYieldStar.mermaid +71 -0
  2958. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.flows.txt +1 -0
  2959. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.layers.txt +1 -0
  2960. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.pipings.txt +159 -0
  2961. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.quickfixes.txt +210 -0
  2962. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.errors.txt +47 -0
  2963. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.flows.missingReturnYieldStarFn.mermaid +59 -0
  2964. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.flows.txt +1 -0
  2965. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.layers.txt +1 -0
  2966. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.pipings.txt +155 -0
  2967. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.quickfixes.txt +208 -0
  2968. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.errors.txt +30 -0
  2969. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.flows.missingReturnYieldStarFnUntraced.mermaid +29 -0
  2970. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.flows.txt +1 -0
  2971. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.layers.txt +1 -0
  2972. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.pipings.txt +85 -0
  2973. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.quickfixes.txt +67 -0
  2974. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.errors.txt +18 -0
  2975. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.flows.missingReturnYieldStar_preview.mermaid +14 -0
  2976. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.flows.txt +1 -0
  2977. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.layers.txt +1 -0
  2978. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.pipings.txt +43 -0
  2979. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.quickfixes.txt +27 -0
  2980. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.errors.txt +17 -0
  2981. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.flows.missingReturnYiesStarGenThis.mermaid +9 -0
  2982. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.flows.txt +1 -0
  2983. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.layers.txt +1 -0
  2984. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.pipings.txt +15 -0
  2985. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.quickfixes.txt +26 -0
  2986. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.errors.txt +95 -0
  2987. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.flows.missingStarInYieldEffectGen.mermaid +53 -0
  2988. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.flows.txt +1 -0
  2989. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.layers.txt +1 -0
  2990. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.pipings.txt +183 -0
  2991. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.quickfixes.txt +575 -0
  2992. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.errors.txt +19 -0
  2993. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.flows.missingStarInYieldEffectGen_preview.mermaid +11 -0
  2994. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.flows.txt +1 -0
  2995. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.layers.txt +1 -0
  2996. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.pipings.txt +29 -0
  2997. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.quickfixes.txt +27 -0
  2998. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.errors.txt +78 -0
  2999. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.flows.multipleCatchTag.mermaid +240 -0
  3000. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.flows.txt +1 -0
  3001. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.layers.txt +1 -0
  3002. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.pipings.txt +397 -0
  3003. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.quickfixes.txt +33 -0
  3004. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.errors.txt +25 -0
  3005. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.flows.multipleCatchTag_preview.mermaid +40 -0
  3006. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.flows.txt +1 -0
  3007. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.layers.txt +1 -0
  3008. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.pipings.txt +75 -0
  3009. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.quickfixes.txt +13 -0
  3010. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.errors.txt +50 -0
  3011. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.flows.multipleCatchTag_stream.mermaid +149 -0
  3012. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.flows.txt +1 -0
  3013. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.layers.txt +1 -0
  3014. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.pipings.txt +245 -0
  3015. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.quickfixes.txt +13 -0
  3016. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.errors.txt +57 -0
  3017. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.flows.multipleEffectProvide.mermaid +102 -0
  3018. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.flows.txt +1 -0
  3019. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.layers.txt +1 -0
  3020. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.pipings.txt +155 -0
  3021. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.quickfixes.txt +214 -0
  3022. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.errors.txt +72 -0
  3023. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.flows.multipleEffectProvide_effectFn.mermaid +117 -0
  3024. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.flows.txt +1 -0
  3025. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.layers.txt +1 -0
  3026. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.pipings.txt +161 -0
  3027. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.quickfixes.txt +274 -0
  3028. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.errors.txt +55 -0
  3029. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.flows.multipleEffectProvide_effectFnRegular.mermaid +100 -0
  3030. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.flows.txt +1 -0
  3031. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.layers.txt +1 -0
  3032. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.pipings.txt +143 -0
  3033. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.quickfixes.txt +164 -0
  3034. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.errors.txt +21 -0
  3035. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.flows.multipleEffectProvide_preview.mermaid +42 -0
  3036. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.flows.txt +1 -0
  3037. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.layers.txt +1 -0
  3038. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.pipings.txt +75 -0
  3039. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.quickfixes.txt +30 -0
  3040. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.errors.txt +25 -0
  3041. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.flows.multipleFlows.mermaid +36 -0
  3042. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.flows.txt +1 -0
  3043. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.layers.txt +1 -0
  3044. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.pipings.txt +55 -0
  3045. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.quickfixes.txt +5 -0
  3046. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.errors.txt +89 -0
  3047. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.flows.nestedEffectGenYield.mermaid +55 -0
  3048. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.flows.txt +1 -0
  3049. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.layers.txt +1 -0
  3050. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.pipings.txt +201 -0
  3051. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.quickfixes.txt +286 -0
  3052. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.errors.txt +21 -0
  3053. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.flows.nestedEffectGenYield_preview.mermaid +7 -0
  3054. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.flows.txt +1 -0
  3055. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.layers.txt +1 -0
  3056. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.pipings.txt +29 -0
  3057. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.quickfixes.txt +13 -0
  3058. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.errors.txt +52 -0
  3059. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.flows.nestedPipe.mermaid +82 -0
  3060. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.flows.txt +1 -0
  3061. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.layers.txt +1 -0
  3062. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.pipings.txt +113 -0
  3063. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.quickfixes.txt +141 -0
  3064. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.errors.txt +44 -0
  3065. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.flows.newPromise.mermaid +49 -0
  3066. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.flows.txt +1 -0
  3067. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.layers.txt +1 -0
  3068. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.pipings.txt +71 -0
  3069. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.quickfixes.txt +43 -0
  3070. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.errors.txt +14 -0
  3071. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.flows.newPromise_preview.mermaid +10 -0
  3072. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.flows.txt +1 -0
  3073. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.layers.txt +1 -0
  3074. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.pipings.txt +15 -0
  3075. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.quickfixes.txt +13 -0
  3076. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.errors.txt +48 -0
  3077. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.flows.newSchemaClass.mermaid +32 -0
  3078. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.flows.txt +1 -0
  3079. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.layers.txt +1 -0
  3080. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.pipings.txt +85 -0
  3081. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.quickfixes.txt +147 -0
  3082. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.errors.txt +17 -0
  3083. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.flows.newSchemaClass_preview.mermaid +9 -0
  3084. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.flows.txt +1 -0
  3085. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.layers.txt +1 -0
  3086. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.pipings.txt +15 -0
  3087. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.quickfixes.txt +26 -0
  3088. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.errors.txt +102 -0
  3089. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.flows.nodeBuiltinImport.mermaid +6 -0
  3090. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.flows.txt +1 -0
  3091. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.layers.txt +1 -0
  3092. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.pipings.txt +15 -0
  3093. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.quickfixes.txt +217 -0
  3094. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.errors.txt +18 -0
  3095. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.flows.nodeBuiltinImport_preview.mermaid +2 -0
  3096. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.flows.txt +1 -0
  3097. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.layers.txt +1 -0
  3098. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.pipings.txt +1 -0
  3099. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.quickfixes.txt +16 -0
  3100. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.errors.txt +223 -0
  3101. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.flows.outdatedApi.mermaid +236 -0
  3102. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.flows.txt +1 -0
  3103. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.layers.txt +1 -0
  3104. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.pipings.txt +557 -0
  3105. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.quickfixes.txt +352 -0
  3106. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.errors.txt +18 -0
  3107. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.flows.outdatedApi_preview.mermaid +4 -0
  3108. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.flows.txt +1 -0
  3109. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.layers.txt +1 -0
  3110. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.pipings.txt +15 -0
  3111. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.quickfixes.txt +13 -0
  3112. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.errors.txt +42 -0
  3113. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.flows.overriddenSchemaConstructor.mermaid +29 -0
  3114. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.flows.txt +1 -0
  3115. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.layers.txt +1 -0
  3116. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.pipings.txt +57 -0
  3117. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.quickfixes.txt +86 -0
  3118. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.errors.txt +17 -0
  3119. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.flows.overriddenSchemaConstructor_preview.mermaid +9 -0
  3120. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.flows.txt +1 -0
  3121. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.layers.txt +1 -0
  3122. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.pipings.txt +29 -0
  3123. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.quickfixes.txt +25 -0
  3124. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.errors.txt +24 -0
  3125. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.flows.overriddenSchemaConstructor_static.mermaid +9 -0
  3126. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.flows.txt +1 -0
  3127. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.layers.txt +1 -0
  3128. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.pipings.txt +29 -0
  3129. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.quickfixes.txt +49 -0
  3130. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.errors.txt +16 -0
  3131. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.flows.overriddenSchemaConstructor_valid.mermaid +9 -0
  3132. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.flows.txt +1 -0
  3133. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.layers.txt +1 -0
  3134. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.pipings.txt +15 -0
  3135. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.quickfixes.txt +5 -0
  3136. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.errors.txt +22 -0
  3137. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.flows.parsingGen.mermaid +25 -0
  3138. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.flows.txt +1 -0
  3139. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.layers.txt +1 -0
  3140. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.pipings.txt +57 -0
  3141. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.quickfixes.txt +14 -0
  3142. package/repos/tsgo/testdata/baselines/reference/effect-v4/pipeableToDatafirst.refactors.txt +366 -0
  3143. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.errors.txt +15 -0
  3144. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.flows.test.mermaid +6 -0
  3145. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.flows.txt +1 -0
  3146. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.layers.txt +1 -0
  3147. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.pipings.txt +15 -0
  3148. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.quickfixes.txt +5 -0
  3149. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.errors.txt +85 -0
  3150. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.flows.preferSchemaOverJson.mermaid +65 -0
  3151. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.flows.txt +1 -0
  3152. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.layers.txt +1 -0
  3153. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.pipings.txt +211 -0
  3154. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.quickfixes.txt +96 -0
  3155. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.errors.txt +18 -0
  3156. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.flows.preferSchemaOverJson_preview.mermaid +11 -0
  3157. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.flows.txt +1 -0
  3158. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.layers.txt +1 -0
  3159. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.pipings.txt +43 -0
  3160. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.quickfixes.txt +13 -0
  3161. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.errors.txt +36 -0
  3162. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.flows.processEnv.mermaid +17 -0
  3163. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.flows.txt +1 -0
  3164. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.layers.txt +1 -0
  3165. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.pipings.txt +29 -0
  3166. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.quickfixes.txt +33 -0
  3167. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.errors.txt +38 -0
  3168. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.flows.processEnvInEffect.mermaid +23 -0
  3169. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.flows.txt +1 -0
  3170. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.layers.txt +1 -0
  3171. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.pipings.txt +43 -0
  3172. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.quickfixes.txt +23 -0
  3173. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.errors.txt +18 -0
  3174. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.flows.processEnvInEffect_preview.mermaid +5 -0
  3175. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.flows.txt +1 -0
  3176. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.layers.txt +1 -0
  3177. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.pipings.txt +15 -0
  3178. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.quickfixes.txt +13 -0
  3179. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.errors.txt +40 -0
  3180. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.flows.processEnvInEffect_thunks.mermaid +55 -0
  3181. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.flows.txt +1 -0
  3182. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.layers.txt +1 -0
  3183. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.pipings.txt +85 -0
  3184. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.quickfixes.txt +43 -0
  3185. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.errors.txt +15 -0
  3186. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.flows.processEnv_preview.mermaid +2 -0
  3187. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.flows.txt +1 -0
  3188. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.layers.txt +1 -0
  3189. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.pipings.txt +1 -0
  3190. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.quickfixes.txt +10 -0
  3191. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.errors.txt +86 -0
  3192. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.flows.redundantMapError.mermaid +136 -0
  3193. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.flows.txt +1 -0
  3194. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.layers.txt +1 -0
  3195. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.pipings.txt +235 -0
  3196. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.quickfixes.txt +23 -0
  3197. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.errors.txt +32 -0
  3198. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.flows.redundantMapError_preview.mermaid +26 -0
  3199. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.flows.txt +1 -0
  3200. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.layers.txt +1 -0
  3201. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.pipings.txt +43 -0
  3202. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.quickfixes.txt +13 -0
  3203. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.errors.txt +80 -0
  3204. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.flows.redundantOrDie.mermaid +92 -0
  3205. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.flows.txt +1 -0
  3206. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.layers.txt +1 -0
  3207. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.pipings.txt +285 -0
  3208. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.quickfixes.txt +33 -0
  3209. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.errors.txt +24 -0
  3210. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.flows.redundantOrDie_preview.mermaid +13 -0
  3211. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.flows.txt +1 -0
  3212. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.layers.txt +1 -0
  3213. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.pipings.txt +43 -0
  3214. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.quickfixes.txt +13 -0
  3215. package/repos/tsgo/testdata/baselines/reference/effect-v4/removeUnnecessaryEffectGen.refactors.txt +90 -0
  3216. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.errors.txt +15 -0
  3217. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.flows.returnEffectInGen.mermaid +9 -0
  3218. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.flows.txt +1 -0
  3219. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.layers.txt +1 -0
  3220. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.pipings.txt +29 -0
  3221. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.quickfixes.txt +24 -0
  3222. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.errors.txt +37 -0
  3223. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.flows.returnEffectInGenNoDiagnostics.mermaid +64 -0
  3224. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.flows.txt +1 -0
  3225. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.layers.txt +1 -0
  3226. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.pipings.txt +169 -0
  3227. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.quickfixes.txt +5 -0
  3228. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.errors.txt +17 -0
  3229. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.flows.returnEffectInGen_preview.mermaid +9 -0
  3230. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.flows.txt +1 -0
  3231. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.layers.txt +1 -0
  3232. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.pipings.txt +29 -0
  3233. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.quickfixes.txt +26 -0
  3234. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.errors.txt +38 -0
  3235. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.flows.runEffectInsideEffect.mermaid +57 -0
  3236. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.flows.txt +1 -0
  3237. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.layers.txt +1 -0
  3238. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.pipings.txt +131 -0
  3239. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.quickfixes.txt +56 -0
  3240. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.errors.txt +18 -0
  3241. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.flows.runEffectInsideEffect_preview.mermaid +17 -0
  3242. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.flows.txt +1 -0
  3243. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.layers.txt +1 -0
  3244. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.pipings.txt +33 -0
  3245. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.quickfixes.txt +29 -0
  3246. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.errors.txt +36 -0
  3247. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.flows.schemaMutableKey_ts2322.mermaid +15 -0
  3248. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.flows.txt +1 -0
  3249. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.layers.txt +1 -0
  3250. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.pipings.txt +29 -0
  3251. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.quickfixes.txt +5 -0
  3252. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.errors.txt +48 -0
  3253. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.flows.schemaMutableKey_ts2322_pluginDisabled.mermaid +15 -0
  3254. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.flows.txt +1 -0
  3255. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.layers.txt +1 -0
  3256. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.pipings.txt +29 -0
  3257. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.quickfixes.txt +5 -0
  3258. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.errors.txt +50 -0
  3259. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.flows.schemaNumber.mermaid +17 -0
  3260. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.flows.txt +1 -0
  3261. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.layers.txt +1 -0
  3262. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.pipings.txt +43 -0
  3263. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.quickfixes.txt +187 -0
  3264. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.errors.txt +22 -0
  3265. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.flows.schemaNumber_preview.mermaid +6 -0
  3266. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.flows.txt +1 -0
  3267. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.layers.txt +1 -0
  3268. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.pipings.txt +15 -0
  3269. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.quickfixes.txt +53 -0
  3270. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.errors.txt +33 -0
  3271. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.flows.schemaStructWithTag.mermaid +18 -0
  3272. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.flows.txt +1 -0
  3273. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.layers.txt +1 -0
  3274. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.pipings.txt +43 -0
  3275. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.quickfixes.txt +34 -0
  3276. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.errors.txt +21 -0
  3277. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.flows.schemaStructWithTag_preview.mermaid +12 -0
  3278. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.flows.txt +1 -0
  3279. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.layers.txt +1 -0
  3280. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.pipings.txt +29 -0
  3281. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.quickfixes.txt +24 -0
  3282. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.errors.txt +83 -0
  3283. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.flows.schemaSyncInEffect.mermaid +52 -0
  3284. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.flows.txt +1 -0
  3285. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.layers.txt +1 -0
  3286. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.pipings.txt +225 -0
  3287. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.quickfixes.txt +56 -0
  3288. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.errors.txt +45 -0
  3289. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.flows.schemaSyncInEffect_thunks.mermaid +60 -0
  3290. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.flows.txt +1 -0
  3291. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.layers.txt +1 -0
  3292. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.pipings.txt +169 -0
  3293. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.quickfixes.txt +43 -0
  3294. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.errors.txt +30 -0
  3295. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.flows.serviceNotAsClass.mermaid +5 -0
  3296. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.flows.txt +1 -0
  3297. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.layers.txt +1 -0
  3298. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.pipings.txt +43 -0
  3299. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.quickfixes.txt +78 -0
  3300. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.errors.txt +15 -0
  3301. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.flows.serviceNotAsClass_preview.mermaid +2 -0
  3302. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.flows.txt +1 -0
  3303. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.layers.txt +1 -0
  3304. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.pipings.txt +15 -0
  3305. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.quickfixes.txt +26 -0
  3306. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.errors.txt +52 -0
  3307. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.flows.simpleEffect.mermaid +190 -0
  3308. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.flows.txt +1 -0
  3309. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.layers.txt +1 -0
  3310. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.pipings.txt +193 -0
  3311. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.quickfixes.txt +53 -0
  3312. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.errors.txt +22 -0
  3313. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.flows.simplePipe.mermaid +51 -0
  3314. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.flows.txt +1 -0
  3315. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.layers.txt +1 -0
  3316. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.pipings.txt +73 -0
  3317. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.quickfixes.txt +5 -0
  3318. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.errors.txt +81 -0
  3319. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.flows.strictBooleanExpressions.mermaid +19 -0
  3320. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.flows.txt +1 -0
  3321. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.layers.txt +1 -0
  3322. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.pipings.txt +1 -0
  3323. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.quickfixes.txt +113 -0
  3324. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.errors.txt +18 -0
  3325. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.flows.strictBooleanExpressions_preview.mermaid +2 -0
  3326. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.flows.txt +1 -0
  3327. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.layers.txt +1 -0
  3328. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.pipings.txt +1 -0
  3329. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.quickfixes.txt +23 -0
  3330. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.errors.txt +70 -0
  3331. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.flows.strictEffectProvide.mermaid +101 -0
  3332. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.flows.txt +1 -0
  3333. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.layers.txt +59 -0
  3334. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.pipings.txt +177 -0
  3335. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.quickfixes.txt +43 -0
  3336. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.errors.txt +18 -0
  3337. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.flows.strictEffectProvide_preview.mermaid +22 -0
  3338. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.flows.txt +1 -0
  3339. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.layers.txt +1 -0
  3340. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.pipings.txt +43 -0
  3341. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.quickfixes.txt +13 -0
  3342. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema.refactors.txt +264 -0
  3343. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_avoidConflict.refactors.txt +113 -0
  3344. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_externalType.refactors.txt +58 -0
  3345. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_reuse.refactors.txt +108 -0
  3346. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_symbolNames.refactors.txt +125 -0
  3347. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_typeAlias.refactors.txt +82 -0
  3348. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_union.refactors.txt +54 -0
  3349. package/repos/tsgo/testdata/baselines/reference/effect-v4/toggleLazyConst.refactors.txt +132 -0
  3350. package/repos/tsgo/testdata/baselines/reference/effect-v4/togglePipeStyle.refactors.txt +88 -0
  3351. package/repos/tsgo/testdata/baselines/reference/effect-v4/togglePipeStyle_nestedCallback.refactors.txt +108 -0
  3352. package/repos/tsgo/testdata/baselines/reference/effect-v4/toggleReturnTypeAnnotation.refactors.txt +322 -0
  3353. package/repos/tsgo/testdata/baselines/reference/effect-v4/toggleTypeAnnotation.refactors.txt +728 -0
  3354. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.errors.txt +75 -0
  3355. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.flows.tryCatchInEffectGen.mermaid +76 -0
  3356. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.flows.txt +1 -0
  3357. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.layers.txt +1 -0
  3358. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.pipings.txt +197 -0
  3359. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.quickfixes.txt +33 -0
  3360. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.errors.txt +18 -0
  3361. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.flows.tryCatchInEffectGen_finally.mermaid +17 -0
  3362. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.flows.txt +1 -0
  3363. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.layers.txt +1 -0
  3364. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.pipings.txt +43 -0
  3365. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.quickfixes.txt +5 -0
  3366. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.errors.txt +19 -0
  3367. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.flows.tryCatchInEffectGen_preview.mermaid +14 -0
  3368. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.flows.txt +1 -0
  3369. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.layers.txt +1 -0
  3370. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.pipings.txt +29 -0
  3371. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.quickfixes.txt +13 -0
  3372. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.errors.txt +43 -0
  3373. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.flows.tsExpectErrorDoesNotSuppressEffectDiagnostics.mermaid +17 -0
  3374. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.flows.txt +1 -0
  3375. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.layers.txt +1 -0
  3376. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.pipings.txt +43 -0
  3377. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.quickfixes.txt +36 -0
  3378. package/repos/tsgo/testdata/baselines/reference/effect-v4/typeToEffectSchema.refactors.txt +315 -0
  3379. package/repos/tsgo/testdata/baselines/reference/effect-v4/typeToEffectSchemaClass.refactors.txt +299 -0
  3380. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.errors.txt +42 -0
  3381. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.flows.txt +1 -0
  3382. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.flows.unknownInEffectCatch.mermaid +54 -0
  3383. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.layers.txt +1 -0
  3384. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.pipings.txt +127 -0
  3385. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.quickfixes.txt +33 -0
  3386. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.errors.txt +18 -0
  3387. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.flows.txt +1 -0
  3388. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.flows.unknownInEffectCatch_preview.mermaid +14 -0
  3389. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.layers.txt +1 -0
  3390. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.pipings.txt +15 -0
  3391. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.quickfixes.txt +13 -0
  3392. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.errors.txt +41 -0
  3393. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.flows.txt +1 -0
  3394. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.flows.unnecessaryArrowBlock.mermaid +20 -0
  3395. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.layers.txt +1 -0
  3396. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.pipings.txt +1 -0
  3397. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.quickfixes.txt +102 -0
  3398. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.errors.txt +17 -0
  3399. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.flows.txt +1 -0
  3400. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.flows.unnecessaryArrowBlock_preview.mermaid +5 -0
  3401. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.layers.txt +1 -0
  3402. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.pipings.txt +1 -0
  3403. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.quickfixes.txt +22 -0
  3404. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.errors.txt +26 -0
  3405. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.flows.txt +1 -0
  3406. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.flows.unnecessaryEffectGen.mermaid +31 -0
  3407. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.layers.txt +1 -0
  3408. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.pipings.txt +85 -0
  3409. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.quickfixes.txt +31 -0
  3410. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.errors.txt +17 -0
  3411. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.flows.txt +1 -0
  3412. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.flows.unnecessaryEffectGen_ifBlock.mermaid +28 -0
  3413. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.layers.txt +1 -0
  3414. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.pipings.txt +57 -0
  3415. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.quickfixes.txt +5 -0
  3416. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.errors.txt +35 -0
  3417. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.flows.txt +1 -0
  3418. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.flows.unnecessaryEffectGen_noReturn.mermaid +28 -0
  3419. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.layers.txt +1 -0
  3420. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.pipings.txt +99 -0
  3421. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.quickfixes.txt +67 -0
  3422. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.errors.txt +19 -0
  3423. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.flows.txt +1 -0
  3424. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.flows.unnecessaryEffectGen_preview.mermaid +11 -0
  3425. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.layers.txt +1 -0
  3426. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.pipings.txt +29 -0
  3427. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.quickfixes.txt +24 -0
  3428. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.errors.txt +40 -0
  3429. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.flows.txt +1 -0
  3430. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.flows.unnecessaryFailYieldableError.mermaid +51 -0
  3431. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.layers.txt +1 -0
  3432. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.pipings.txt +127 -0
  3433. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.quickfixes.txt +89 -0
  3434. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.errors.txt +19 -0
  3435. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.flows.txt +1 -0
  3436. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.flows.unnecessaryFailYieldableError_preview.mermaid +13 -0
  3437. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.layers.txt +1 -0
  3438. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.pipings.txt +43 -0
  3439. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.quickfixes.txt +28 -0
  3440. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.errors.txt +28 -0
  3441. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.flows.txt +1 -0
  3442. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.flows.unnecessaryPipe.mermaid +33 -0
  3443. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.layers.txt +1 -0
  3444. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.pipings.txt +61 -0
  3445. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.quickfixes.txt +65 -0
  3446. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.errors.txt +30 -0
  3447. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.flows.txt +1 -0
  3448. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.flows.unnecessaryPipeChain.mermaid +98 -0
  3449. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.layers.txt +1 -0
  3450. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.pipings.txt +107 -0
  3451. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.quickfixes.txt +69 -0
  3452. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.errors.txt +15 -0
  3453. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.flows.txt +1 -0
  3454. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.flows.unnecessaryPipeChain_preview.mermaid +14 -0
  3455. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.layers.txt +1 -0
  3456. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.pipings.txt +23 -0
  3457. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.quickfixes.txt +24 -0
  3458. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.errors.txt +22 -0
  3459. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.flows.txt +1 -0
  3460. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.flows.unnecessaryPipe_disableMidObject.mermaid +20 -0
  3461. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.layers.txt +1 -0
  3462. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.pipings.txt +43 -0
  3463. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.quickfixes.txt +53 -0
  3464. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.errors.txt +22 -0
  3465. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.flows.txt +1 -0
  3466. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.flows.unnecessaryPipe_namespace.mermaid +5 -0
  3467. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.layers.txt +1 -0
  3468. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.pipings.txt +25 -0
  3469. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.quickfixes.txt +28 -0
  3470. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.errors.txt +15 -0
  3471. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.flows.txt +1 -0
  3472. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.flows.unnecessaryPipe_preview.mermaid +2 -0
  3473. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.layers.txt +1 -0
  3474. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.pipings.txt +11 -0
  3475. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.quickfixes.txt +24 -0
  3476. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.errors.txt +57 -0
  3477. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.flows.schemas.mermaid +23 -0
  3478. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.flows.test.mermaid +13 -0
  3479. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.flows.txt +2 -0
  3480. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.layers.txt +2 -0
  3481. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.pipings.txt +58 -0
  3482. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.quickfixes.txt +108 -0
  3483. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.errors.txt +20 -0
  3484. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.flows.txt +1 -0
  3485. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.flows.unnecessaryTypeofType_preview.mermaid +9 -0
  3486. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.layers.txt +1 -0
  3487. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.pipings.txt +15 -0
  3488. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.quickfixes.txt +29 -0
  3489. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.errors.txt +62 -0
  3490. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.flows.txt +1 -0
  3491. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.flows.unsafeEffectTypeAssertion.mermaid +12 -0
  3492. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.layers.txt +88 -0
  3493. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.pipings.txt +1 -0
  3494. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.quickfixes.txt +283 -0
  3495. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.errors.txt +19 -0
  3496. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.flows.txt +1 -0
  3497. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.flows.unsafeEffectTypeAssertion_preview.mermaid +2 -0
  3498. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.layers.txt +1 -0
  3499. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.pipings.txt +1 -0
  3500. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.quickfixes.txt +26 -0
  3501. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.errors.txt +21 -0
  3502. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.flows.txt +1 -0
  3503. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.flows.unusedDirective.mermaid +8 -0
  3504. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.layers.txt +1 -0
  3505. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.pipings.txt +29 -0
  3506. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.quickfixes.txt +24 -0
  3507. package/repos/tsgo/testdata/baselines/reference/effect-v4/wrapWithEffectGen.refactors.txt +408 -0
  3508. package/repos/tsgo/testdata/baselines/reference/effect-v4/wrapWithEffectGen_nestedCallback.refactors.txt +10 -0
  3509. package/repos/tsgo/testdata/baselines/reference/effect-v4/wrapWithPipe.refactors.txt +28 -0
  3510. package/repos/tsgo/testdata/baselines/reference/inlayHints/effectInlayHintsDisabledPassthrough.baseline +105 -0
  3511. package/repos/tsgo/testdata/baselines/reference/inlayHints/effectInlayHintsFnSuppression.baseline +18 -0
  3512. package/repos/tsgo/testdata/baselines/reference/inlayHints/effectInlayHintsFnUntracedSuppression.baseline +18 -0
  3513. package/repos/tsgo/testdata/baselines/reference/inlayHints/effectInlayHintsGenSuppression.baseline +18 -0
  3514. package/repos/tsgo/testdata/baselines/reference/inlayHints/effectInlayHintsNonEffectNotSuppressed.baseline +18 -0
  3515. package/repos/tsgo/testdata/baselines/reference/metadata.json +2020 -0
  3516. package/repos/tsgo/testdata/baselines/reference/schema.json +2812 -0
  3517. package/repos/tsgo/testdata/tests/cli-test/package.json +7 -0
  3518. package/repos/tsgo/testdata/tests/cli-test/pnpm-lock.yaml +87 -0
  3519. package/repos/tsgo/testdata/tests/effect-v3/anyUnknownInErrorContext.ts +40 -0
  3520. package/repos/tsgo/testdata/tests/effect-v3/asyncFunction.ts +33 -0
  3521. package/repos/tsgo/testdata/tests/effect-v3/asyncFunction_preview.ts +6 -0
  3522. package/repos/tsgo/testdata/tests/effect-v3/catchAllToMapError.ts +66 -0
  3523. package/repos/tsgo/testdata/tests/effect-v3/catchAllToMapError_effectFn.ts +26 -0
  3524. package/repos/tsgo/testdata/tests/effect-v3/catchAllToMapError_effectFnRegular.ts +25 -0
  3525. package/repos/tsgo/testdata/tests/effect-v3/catchToOrElseSucceed.ts +46 -0
  3526. package/repos/tsgo/testdata/tests/effect-v3/catchToOrElseSucceed_preview.ts +6 -0
  3527. package/repos/tsgo/testdata/tests/effect-v3/catchUnfailableEffect.ts +44 -0
  3528. package/repos/tsgo/testdata/tests/effect-v3/catchUnfailableEffect_effectFn.ts +20 -0
  3529. package/repos/tsgo/testdata/tests/effect-v3/catchUnfailableEffect_effectFnRegular.ts +19 -0
  3530. package/repos/tsgo/testdata/tests/effect-v3/catchUnfailableEffect_variants.ts +32 -0
  3531. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch.ts +18 -0
  3532. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_contextTag.ts +12 -0
  3533. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_effectTag.ts +12 -0
  3534. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_preview.ts +10 -0
  3535. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_schema.ts +55 -0
  3536. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_schemaFalsePositive.ts +17 -0
  3537. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_unionGiven.ts +10 -0
  3538. package/repos/tsgo/testdata/tests/effect-v3/deterministicKeys.ts +29 -0
  3539. package/repos/tsgo/testdata/tests/effect-v3/deterministicKeys_custom.ts +65 -0
  3540. package/repos/tsgo/testdata/tests/effect-v3/deterministicKeys_defaultHashed.ts +29 -0
  3541. package/repos/tsgo/testdata/tests/effect-v3/deterministicKeys_packageIdentifier.ts +29 -0
  3542. package/repos/tsgo/testdata/tests/effect-v3/duplicatePackage_preview.ts +8 -0
  3543. package/repos/tsgo/testdata/tests/effect-v3/effectDoNotation.ts +12 -0
  3544. package/repos/tsgo/testdata/tests/effect-v3/effectDoNotation_preview.ts +12 -0
  3545. package/repos/tsgo/testdata/tests/effect-v3/effectFnIife.ts +53 -0
  3546. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_alreadyEffectFn.ts +27 -0
  3547. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_basic.ts +48 -0
  3548. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_genWithThis.ts +38 -0
  3549. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_inferred.ts +36 -0
  3550. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_inferredLayer.ts +44 -0
  3551. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_invalid.ts +38 -0
  3552. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_multipleReturns.ts +43 -0
  3553. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_noPipeWithSpan.ts +39 -0
  3554. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_overloadsNever.ts +38 -0
  3555. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_overloadsOk.ts +65 -0
  3556. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_params.ts +39 -0
  3557. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_paramsInPipe.ts +48 -0
  3558. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_pipeWithSpan.ts +40 -0
  3559. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_plainFew.ts +35 -0
  3560. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_plainMany.ts +54 -0
  3561. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_returnType.ts +40 -0
  3562. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_typeParams.ts +71 -0
  3563. package/repos/tsgo/testdata/tests/effect-v3/effectGenUsesAdapter.ts +13 -0
  3564. package/repos/tsgo/testdata/tests/effect-v3/effectGenUsesAdapter_preview.ts +7 -0
  3565. package/repos/tsgo/testdata/tests/effect-v3/effectInFailure.ts +22 -0
  3566. package/repos/tsgo/testdata/tests/effect-v3/effectMapFlatten.ts +38 -0
  3567. package/repos/tsgo/testdata/tests/effect-v3/effectMapFlatten_preview.ts +9 -0
  3568. package/repos/tsgo/testdata/tests/effect-v3/effectMapVoid.ts +54 -0
  3569. package/repos/tsgo/testdata/tests/effect-v3/effectSucceedWithVoid.ts +32 -0
  3570. package/repos/tsgo/testdata/tests/effect-v3/extendsNativeError.ts +17 -0
  3571. package/repos/tsgo/testdata/tests/effect-v3/floatingEffect.ts +28 -0
  3572. package/repos/tsgo/testdata/tests/effect-v3/floatingEffect_stream.ts +7 -0
  3573. package/repos/tsgo/testdata/tests/effect-v3/genericEffectServices.ts +10 -0
  3574. package/repos/tsgo/testdata/tests/effect-v3/genericEffectServices_preview.ts +7 -0
  3575. package/repos/tsgo/testdata/tests/effect-v3/globalConsole.ts +36 -0
  3576. package/repos/tsgo/testdata/tests/effect-v3/globalConsoleInEffect.ts +48 -0
  3577. package/repos/tsgo/testdata/tests/effect-v3/globalConsoleInEffect_preview.ts +7 -0
  3578. package/repos/tsgo/testdata/tests/effect-v3/globalConsoleInEffect_thunks.ts +21 -0
  3579. package/repos/tsgo/testdata/tests/effect-v3/globalConsole_preview.ts +5 -0
  3580. package/repos/tsgo/testdata/tests/effect-v3/globalDate.ts +32 -0
  3581. package/repos/tsgo/testdata/tests/effect-v3/globalDateInEffect.ts +41 -0
  3582. package/repos/tsgo/testdata/tests/effect-v3/globalDateInEffect_preview.ts +8 -0
  3583. package/repos/tsgo/testdata/tests/effect-v3/globalDateInEffect_thunks.ts +21 -0
  3584. package/repos/tsgo/testdata/tests/effect-v3/globalDate_preview.ts +5 -0
  3585. package/repos/tsgo/testdata/tests/effect-v3/globalErrorInEffectCatch.ts +27 -0
  3586. package/repos/tsgo/testdata/tests/effect-v3/globalErrorInEffectFailure.ts +49 -0
  3587. package/repos/tsgo/testdata/tests/effect-v3/globalFetch.ts +23 -0
  3588. package/repos/tsgo/testdata/tests/effect-v3/globalFetchInEffect.ts +25 -0
  3589. package/repos/tsgo/testdata/tests/effect-v3/globalFetchInEffect_preview.ts +7 -0
  3590. package/repos/tsgo/testdata/tests/effect-v3/globalFetchInEffect_thunks.ts +21 -0
  3591. package/repos/tsgo/testdata/tests/effect-v3/globalFetch_preview.ts +5 -0
  3592. package/repos/tsgo/testdata/tests/effect-v3/globalRandom.ts +30 -0
  3593. package/repos/tsgo/testdata/tests/effect-v3/globalRandomInEffect.ts +27 -0
  3594. package/repos/tsgo/testdata/tests/effect-v3/globalRandomInEffect_preview.ts +8 -0
  3595. package/repos/tsgo/testdata/tests/effect-v3/globalRandomInEffect_thunks.ts +21 -0
  3596. package/repos/tsgo/testdata/tests/effect-v3/globalRandom_preview.ts +5 -0
  3597. package/repos/tsgo/testdata/tests/effect-v3/globalTimers.ts +30 -0
  3598. package/repos/tsgo/testdata/tests/effect-v3/globalTimersInEffect.ts +33 -0
  3599. package/repos/tsgo/testdata/tests/effect-v3/globalTimersInEffect_preview.ts +8 -0
  3600. package/repos/tsgo/testdata/tests/effect-v3/globalTimersInEffect_thunks.ts +20 -0
  3601. package/repos/tsgo/testdata/tests/effect-v3/globalTimers_preview.ts +4 -0
  3602. package/repos/tsgo/testdata/tests/effect-v3/instanceOfSchema.ts +35 -0
  3603. package/repos/tsgo/testdata/tests/effect-v3/layerMergeAllWithDependencies.ts +40 -0
  3604. package/repos/tsgo/testdata/tests/effect-v3/lazyPromiseInEffectSync.ts +21 -0
  3605. package/repos/tsgo/testdata/tests/effect-v3/lazyPromiseInEffectSync_preview.ts +6 -0
  3606. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements.ts +23 -0
  3607. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements_allowJsdoc.ts +59 -0
  3608. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements_genericTag.ts +14 -0
  3609. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements_heuristic.ts +13 -0
  3610. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements_leakableJsDoc.ts +17 -0
  3611. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements_noScope.ts +15 -0
  3612. package/repos/tsgo/testdata/tests/effect-v3/missedPipeableOpportunity.ts +49 -0
  3613. package/repos/tsgo/testdata/tests/effect-v3/missedPipeableOpportunity_error.ts +34 -0
  3614. package/repos/tsgo/testdata/tests/effect-v3/missedPipeableOpportunity_safer.ts +36 -0
  3615. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_arrowReturnType.ts +20 -0
  3616. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_callExpression.ts +30 -0
  3617. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_conciseBody.ts +11 -0
  3618. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_lazy.ts +21 -0
  3619. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_pipe.ts +10 -0
  3620. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_plainAssignment.ts +39 -0
  3621. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_returnSignature.ts +28 -0
  3622. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_skipArrowDefaults.ts +8 -0
  3623. package/repos/tsgo/testdata/tests/effect-v3/missingEffectError_callExpression.ts +31 -0
  3624. package/repos/tsgo/testdata/tests/effect-v3/missingEffectError_plainAssignment.ts +39 -0
  3625. package/repos/tsgo/testdata/tests/effect-v3/missingEffectError_returnSignature.ts +28 -0
  3626. package/repos/tsgo/testdata/tests/effect-v3/missingEffectError_tagged.ts +23 -0
  3627. package/repos/tsgo/testdata/tests/effect-v3/missingEffectServiceDependency.ts +82 -0
  3628. package/repos/tsgo/testdata/tests/effect-v3/missingEffectServiceDependency_preview.ts +12 -0
  3629. package/repos/tsgo/testdata/tests/effect-v3/missingLayerContext.ts +31 -0
  3630. package/repos/tsgo/testdata/tests/effect-v3/missingReturnYieldStar.ts +27 -0
  3631. package/repos/tsgo/testdata/tests/effect-v3/missingReturnYieldStar_yieldable.ts +11 -0
  3632. package/repos/tsgo/testdata/tests/effect-v3/missingStarInYieldEffectGen.ts +44 -0
  3633. package/repos/tsgo/testdata/tests/effect-v3/multipleEffectProvide.ts +34 -0
  3634. package/repos/tsgo/testdata/tests/effect-v3/multipleEffectProvide_effectFn.ts +48 -0
  3635. package/repos/tsgo/testdata/tests/effect-v3/multipleEffectProvide_effectFnRegular.ts +34 -0
  3636. package/repos/tsgo/testdata/tests/effect-v3/nestedEffectGenYield.ts +36 -0
  3637. package/repos/tsgo/testdata/tests/effect-v3/nestedEffectGenYield_preview.ts +10 -0
  3638. package/repos/tsgo/testdata/tests/effect-v3/newPromise.ts +25 -0
  3639. package/repos/tsgo/testdata/tests/effect-v3/newPromise_preview.ts +5 -0
  3640. package/repos/tsgo/testdata/tests/effect-v3/nodeBuiltinImport.ts +48 -0
  3641. package/repos/tsgo/testdata/tests/effect-v3/nonObjectEffectServiceType.ts +53 -0
  3642. package/repos/tsgo/testdata/tests/effect-v3/nonObjectEffectServiceType_preview.ts +9 -0
  3643. package/repos/tsgo/testdata/tests/effect-v3/outdatedApi.ts +22 -0
  3644. package/repos/tsgo/testdata/tests/effect-v3/overriddenSchemaConstructor.ts +40 -0
  3645. package/repos/tsgo/testdata/tests/effect-v3/overriddenSchemaConstructor_static.ts +15 -0
  3646. package/repos/tsgo/testdata/tests/effect-v3/overriddenSchemaConstructor_valid.ts +10 -0
  3647. package/repos/tsgo/testdata/tests/effect-v3/package.json +11 -0
  3648. package/repos/tsgo/testdata/tests/effect-v3/preferSchemaOverJson.ts +64 -0
  3649. package/repos/tsgo/testdata/tests/effect-v3/processEnv.ts +20 -0
  3650. package/repos/tsgo/testdata/tests/effect-v3/processEnvInEffect.ts +25 -0
  3651. package/repos/tsgo/testdata/tests/effect-v3/processEnvInEffect_preview.ts +8 -0
  3652. package/repos/tsgo/testdata/tests/effect-v3/processEnvInEffect_thunks.ts +22 -0
  3653. package/repos/tsgo/testdata/tests/effect-v3/processEnv_preview.ts +6 -0
  3654. package/repos/tsgo/testdata/tests/effect-v3/redundantOrDie.ts +59 -0
  3655. package/repos/tsgo/testdata/tests/effect-v3/redundantOrDie_preview.ts +13 -0
  3656. package/repos/tsgo/testdata/tests/effect-v3/redundantSchemaTagIdentifier.ts +35 -0
  3657. package/repos/tsgo/testdata/tests/effect-v3/redundantSchemaTagIdentifier_preview.ts +8 -0
  3658. package/repos/tsgo/testdata/tests/effect-v3/returnEffectInGen.ts +6 -0
  3659. package/repos/tsgo/testdata/tests/effect-v3/returnEffectInGenNoDiagnostics.ts +32 -0
  3660. package/repos/tsgo/testdata/tests/effect-v3/runEffectInsideEffect.ts +26 -0
  3661. package/repos/tsgo/testdata/tests/effect-v3/runEffectInsideEffect_preview.ts +9 -0
  3662. package/repos/tsgo/testdata/tests/effect-v3/schemaStructWithTag.ts +20 -0
  3663. package/repos/tsgo/testdata/tests/effect-v3/schemaSyncInEffect.ts +62 -0
  3664. package/repos/tsgo/testdata/tests/effect-v3/schemaSyncInEffect_preview.ts +12 -0
  3665. package/repos/tsgo/testdata/tests/effect-v3/schemaSyncInEffect_thunks.ts +27 -0
  3666. package/repos/tsgo/testdata/tests/effect-v3/schemaUnionOfLiterals.ts +7 -0
  3667. package/repos/tsgo/testdata/tests/effect-v3/schemaUnionOfLiterals_preview.ts +6 -0
  3668. package/repos/tsgo/testdata/tests/effect-v3/scopeInLayerEffect.ts +52 -0
  3669. package/repos/tsgo/testdata/tests/effect-v3/scopeInLayerEffect_preview.ts +12 -0
  3670. package/repos/tsgo/testdata/tests/effect-v3/strictBooleanExpressions.ts +42 -0
  3671. package/repos/tsgo/testdata/tests/effect-v3/strictEffectProvide.ts +49 -0
  3672. package/repos/tsgo/testdata/tests/effect-v3/tryCatchInEffectGen.ts +47 -0
  3673. package/repos/tsgo/testdata/tests/effect-v3/tryCatchInEffectGen_finally.ts +12 -0
  3674. package/repos/tsgo/testdata/tests/effect-v3/unknownInEffectCatch.ts +42 -0
  3675. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryArrowBlock.ts +20 -0
  3676. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryArrowBlock_preview.ts +6 -0
  3677. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryEffectGen.ts +15 -0
  3678. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryEffectGen_ifBlock.ts +11 -0
  3679. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryEffectGen_noReturn.ts +19 -0
  3680. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryFailYieldableError.ts +26 -0
  3681. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryPipe.ts +16 -0
  3682. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryPipeChain.ts +7 -0
  3683. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryPipe_disableMidObject.ts +10 -0
  3684. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryPipe_namespace.ts +11 -0
  3685. package/repos/tsgo/testdata/tests/effect-v3/unsafeEffectTypeAssertion.ts +24 -0
  3686. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToFn.ts +7 -0
  3687. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToFnTryPromise.ts +10 -0
  3688. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToFn_fetch.ts +8 -0
  3689. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToFn_generics.ts +7 -0
  3690. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToGen.ts +7 -0
  3691. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToGenTryPromise.ts +11 -0
  3692. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToGenTryPromise_anonymous.ts +21 -0
  3693. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToGen_anonymous.ts +21 -0
  3694. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToGen_namedImport.ts +7 -0
  3695. package/repos/tsgo/testdata/tests/effect-v3-refactors/effectGenToFn.ts +34 -0
  3696. package/repos/tsgo/testdata/tests/effect-v3-refactors/effectGenToFn_classMethod.ts +13 -0
  3697. package/repos/tsgo/testdata/tests/effect-v3-refactors/effectGenToFn_mixedPipes.ts +13 -0
  3698. package/repos/tsgo/testdata/tests/effect-v3-refactors/effectGenToFn_returns.ts +18 -0
  3699. package/repos/tsgo/testdata/tests/effect-v3-refactors/effectGenToFn_withPipes.ts +13 -0
  3700. package/repos/tsgo/testdata/tests/effect-v3-refactors/functionToArrow.ts +25 -0
  3701. package/repos/tsgo/testdata/tests/effect-v3-refactors/layerMagic_build.ts +45 -0
  3702. package/repos/tsgo/testdata/tests/effect-v3-refactors/layerMagic_prepare.ts +29 -0
  3703. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaque.ts +8 -0
  3704. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaqueWithNs_shortImport.ts +8 -0
  3705. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaque_brand.ts +5 -0
  3706. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaque_shortImport.ts +8 -0
  3707. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaque_shortImportAlias.ts +8 -0
  3708. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaque_union.ts +8 -0
  3709. package/repos/tsgo/testdata/tests/effect-v3-refactors/package.json +11 -0
  3710. package/repos/tsgo/testdata/tests/effect-v3-refactors/pipeableToDatafirst.ts +27 -0
  3711. package/repos/tsgo/testdata/tests/effect-v3-refactors/removeUnnecessaryEffectGen.ts +22 -0
  3712. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema.ts +32 -0
  3713. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_avoidConflict.ts +17 -0
  3714. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_externalType.ts +6 -0
  3715. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_reuse.ts +17 -0
  3716. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_symbolNames.ts +18 -0
  3717. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_typeAlias.ts +9 -0
  3718. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_union.ts +5 -0
  3719. package/repos/tsgo/testdata/tests/effect-v3-refactors/toggleLazyConst.ts +10 -0
  3720. package/repos/tsgo/testdata/tests/effect-v3-refactors/togglePipeStyle.ts +8 -0
  3721. package/repos/tsgo/testdata/tests/effect-v3-refactors/toggleReturnTypeAnnotation.ts +19 -0
  3722. package/repos/tsgo/testdata/tests/effect-v3-refactors/toggleTypeAnnotation.ts +22 -0
  3723. package/repos/tsgo/testdata/tests/effect-v3-refactors/typeToEffectSchema.ts +42 -0
  3724. package/repos/tsgo/testdata/tests/effect-v3-refactors/typeToEffectSchemaClass.ts +38 -0
  3725. package/repos/tsgo/testdata/tests/effect-v3-refactors/wrapWithEffectGen.ts +19 -0
  3726. package/repos/tsgo/testdata/tests/effect-v3-refactors/wrapWithEffectGen_noclass.ts +7 -0
  3727. package/repos/tsgo/testdata/tests/effect-v3-refactors/writeTagClassAccessors.ts +31 -0
  3728. package/repos/tsgo/testdata/tests/effect-v4/anyUnknownInErrorContext.ts +39 -0
  3729. package/repos/tsgo/testdata/tests/effect-v4/anyUnknownInErrorContext_preview.ts +8 -0
  3730. package/repos/tsgo/testdata/tests/effect-v4/asyncFunction.ts +33 -0
  3731. package/repos/tsgo/testdata/tests/effect-v4/asyncFunction_preview.ts +6 -0
  3732. package/repos/tsgo/testdata/tests/effect-v4/callExpPipeable.ts +8 -0
  3733. package/repos/tsgo/testdata/tests/effect-v4/catchAllToMapError.ts +64 -0
  3734. package/repos/tsgo/testdata/tests/effect-v4/catchAllToMapError_effectFn.ts +25 -0
  3735. package/repos/tsgo/testdata/tests/effect-v4/catchAllToMapError_preview.ts +11 -0
  3736. package/repos/tsgo/testdata/tests/effect-v4/catchToOrElseSucceed.ts +44 -0
  3737. package/repos/tsgo/testdata/tests/effect-v4/catchToOrElseSucceed_preview.ts +5 -0
  3738. package/repos/tsgo/testdata/tests/effect-v4/catchUnfailableEffect.ts +56 -0
  3739. package/repos/tsgo/testdata/tests/effect-v4/catchUnfailableEffect_preview.ts +7 -0
  3740. package/repos/tsgo/testdata/tests/effect-v4/classImplementsIssue.ts +18 -0
  3741. package/repos/tsgo/testdata/tests/effect-v4/classSelfMismatch_contextTag.ts +11 -0
  3742. package/repos/tsgo/testdata/tests/effect-v4/classSelfMismatch_schema.ts +38 -0
  3743. package/repos/tsgo/testdata/tests/effect-v4/classSelfMismatch_service.ts +13 -0
  3744. package/repos/tsgo/testdata/tests/effect-v4/classSelfMismatch_sqlClass.ts +12 -0
  3745. package/repos/tsgo/testdata/tests/effect-v4/cryptoRandomUUID.ts +29 -0
  3746. package/repos/tsgo/testdata/tests/effect-v4/cryptoRandomUUIDInEffect.ts +25 -0
  3747. package/repos/tsgo/testdata/tests/effect-v4/cryptoRandomUUIDInEffect_preview.ts +7 -0
  3748. package/repos/tsgo/testdata/tests/effect-v4/cryptoRandomUUIDInEffect_thunks.ts +20 -0
  3749. package/repos/tsgo/testdata/tests/effect-v4/cryptoRandomUUID_preview.ts +4 -0
  3750. package/repos/tsgo/testdata/tests/effect-v4/deterministicKeys.ts +27 -0
  3751. package/repos/tsgo/testdata/tests/effect-v4/deterministicKeys_custom.ts +63 -0
  3752. package/repos/tsgo/testdata/tests/effect-v4/deterministicKeys_defaultHashed.ts +27 -0
  3753. package/repos/tsgo/testdata/tests/effect-v4/deterministicKeys_packageIdentifier.ts +27 -0
  3754. package/repos/tsgo/testdata/tests/effect-v4/deterministicKeys_preview.ts +7 -0
  3755. package/repos/tsgo/testdata/tests/effect-v4/duplicatePackage.ts +6 -0
  3756. package/repos/tsgo/testdata/tests/effect-v4/duplicatePackage_detected.ts +35 -0
  3757. package/repos/tsgo/testdata/tests/effect-v4/duplicatePackage_suppressed.ts +37 -0
  3758. package/repos/tsgo/testdata/tests/effect-v4/effectDoNotation.ts +12 -0
  3759. package/repos/tsgo/testdata/tests/effect-v4/effectDoNotation_preview.ts +11 -0
  3760. package/repos/tsgo/testdata/tests/effect-v4/effectFn.ts +45 -0
  3761. package/repos/tsgo/testdata/tests/effect-v4/effectFnIife.ts +52 -0
  3762. package/repos/tsgo/testdata/tests/effect-v4/effectFnIife_preview.ts +7 -0
  3763. package/repos/tsgo/testdata/tests/effect-v4/effectFnImplicitAny.ts +92 -0
  3764. package/repos/tsgo/testdata/tests/effect-v4/effectFnImplicitAnyNonGen.ts +72 -0
  3765. package/repos/tsgo/testdata/tests/effect-v4/effectFnImplicitAny_noDiags.ts +22 -0
  3766. package/repos/tsgo/testdata/tests/effect-v4/effectFnImplicitAny_preview.ts +6 -0
  3767. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_alreadyEffectFn.ts +26 -0
  3768. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_basic.ts +47 -0
  3769. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_defaultConfig.ts +36 -0
  3770. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_genWithThis.ts +37 -0
  3771. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_inferred.ts +35 -0
  3772. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_inferredLayer.ts +40 -0
  3773. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_inferredLayerThis.ts +31 -0
  3774. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_inferredOf.ts +26 -0
  3775. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_inferredServiceMake.ts +25 -0
  3776. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_invalid.ts +37 -0
  3777. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_multipleReturns.ts +42 -0
  3778. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_noPipeWithSpan.ts +38 -0
  3779. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_overloadsNever.ts +37 -0
  3780. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_overloadsOk.ts +64 -0
  3781. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_params.ts +38 -0
  3782. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_paramsInPipe.ts +47 -0
  3783. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_pipeWithSpan.ts +39 -0
  3784. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_plainFew.ts +34 -0
  3785. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_plainMany.ts +53 -0
  3786. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_preview.ts +8 -0
  3787. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_returnType.ts +39 -0
  3788. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_typeParams.ts +70 -0
  3789. package/repos/tsgo/testdata/tests/effect-v4/effectFnRegular.ts +19 -0
  3790. package/repos/tsgo/testdata/tests/effect-v4/effectFnUntracedEagerImplicitAny.ts +82 -0
  3791. package/repos/tsgo/testdata/tests/effect-v4/effectFnUntracedImplicitAny.ts +82 -0
  3792. package/repos/tsgo/testdata/tests/effect-v4/effectInFailure.ts +22 -0
  3793. package/repos/tsgo/testdata/tests/effect-v4/effectInFailure_preview.ts +8 -0
  3794. package/repos/tsgo/testdata/tests/effect-v4/effectInVoidSuccess.ts +15 -0
  3795. package/repos/tsgo/testdata/tests/effect-v4/effectInVoidSuccess_preview.ts +7 -0
  3796. package/repos/tsgo/testdata/tests/effect-v4/effectMapFlatten.ts +38 -0
  3797. package/repos/tsgo/testdata/tests/effect-v4/effectMapFlatten_preview.ts +8 -0
  3798. package/repos/tsgo/testdata/tests/effect-v4/effectMapVoid.ts +51 -0
  3799. package/repos/tsgo/testdata/tests/effect-v4/effectMapVoid_preview.ts +7 -0
  3800. package/repos/tsgo/testdata/tests/effect-v4/effectSucceedWithVoid.ts +31 -0
  3801. package/repos/tsgo/testdata/tests/effect-v4/effectSucceedWithVoid_preview.ts +5 -0
  3802. package/repos/tsgo/testdata/tests/effect-v4/effect_fn_opportunity_panic.ts +141 -0
  3803. package/repos/tsgo/testdata/tests/effect-v4/emptyArgs.ts +8 -0
  3804. package/repos/tsgo/testdata/tests/effect-v4/extendsNativeError.ts +16 -0
  3805. package/repos/tsgo/testdata/tests/effect-v4/extendsNativeError_preview.ts +4 -0
  3806. package/repos/tsgo/testdata/tests/effect-v4/floatingEffect.ts +26 -0
  3807. package/repos/tsgo/testdata/tests/effect-v4/floatingEffectGen.ts +5 -0
  3808. package/repos/tsgo/testdata/tests/effect-v4/floatingEffectSuppressed.ts +28 -0
  3809. package/repos/tsgo/testdata/tests/effect-v4/floatingEffect_disabledWildcard.ts +13 -0
  3810. package/repos/tsgo/testdata/tests/effect-v4/floatingEffect_preview.ts +5 -0
  3811. package/repos/tsgo/testdata/tests/effect-v4/floatingEffect_stream.ts +5 -0
  3812. package/repos/tsgo/testdata/tests/effect-v4/floatingEffect_subtypes.ts +14 -0
  3813. package/repos/tsgo/testdata/tests/effect-v4/functionCalls.ts +17 -0
  3814. package/repos/tsgo/testdata/tests/effect-v4/globalConsole.ts +36 -0
  3815. package/repos/tsgo/testdata/tests/effect-v4/globalConsoleInEffect.ts +48 -0
  3816. package/repos/tsgo/testdata/tests/effect-v4/globalConsoleInEffect_preview.ts +7 -0
  3817. package/repos/tsgo/testdata/tests/effect-v4/globalConsoleInEffect_thunks.ts +20 -0
  3818. package/repos/tsgo/testdata/tests/effect-v4/globalConsole_preview.ts +4 -0
  3819. package/repos/tsgo/testdata/tests/effect-v4/globalDate.ts +31 -0
  3820. package/repos/tsgo/testdata/tests/effect-v4/globalDateInEffect.ts +41 -0
  3821. package/repos/tsgo/testdata/tests/effect-v4/globalDateInEffect_preview.ts +8 -0
  3822. package/repos/tsgo/testdata/tests/effect-v4/globalDateInEffect_thunks.ts +20 -0
  3823. package/repos/tsgo/testdata/tests/effect-v4/globalDate_preview.ts +4 -0
  3824. package/repos/tsgo/testdata/tests/effect-v4/globalErrorInEffectCatch.ts +16 -0
  3825. package/repos/tsgo/testdata/tests/effect-v4/globalErrorInEffectCatch_preview.ts +8 -0
  3826. package/repos/tsgo/testdata/tests/effect-v4/globalErrorInEffectFailure.ts +48 -0
  3827. package/repos/tsgo/testdata/tests/effect-v4/globalErrorInEffectFailure_preview.ts +5 -0
  3828. package/repos/tsgo/testdata/tests/effect-v4/globalFetch.ts +23 -0
  3829. package/repos/tsgo/testdata/tests/effect-v4/globalFetchInEffect.ts +24 -0
  3830. package/repos/tsgo/testdata/tests/effect-v4/globalFetchInEffect_preview.ts +7 -0
  3831. package/repos/tsgo/testdata/tests/effect-v4/globalFetchInEffect_thunks.ts +20 -0
  3832. package/repos/tsgo/testdata/tests/effect-v4/globalFetch_preview.ts +4 -0
  3833. package/repos/tsgo/testdata/tests/effect-v4/globalRandom.ts +29 -0
  3834. package/repos/tsgo/testdata/tests/effect-v4/globalRandomInEffect.ts +27 -0
  3835. package/repos/tsgo/testdata/tests/effect-v4/globalRandomInEffect_preview.ts +8 -0
  3836. package/repos/tsgo/testdata/tests/effect-v4/globalRandomInEffect_thunks.ts +20 -0
  3837. package/repos/tsgo/testdata/tests/effect-v4/globalRandom_preview.ts +4 -0
  3838. package/repos/tsgo/testdata/tests/effect-v4/globalTimers.ts +29 -0
  3839. package/repos/tsgo/testdata/tests/effect-v4/globalTimersInEffect.ts +32 -0
  3840. package/repos/tsgo/testdata/tests/effect-v4/globalTimersInEffect_preview.ts +7 -0
  3841. package/repos/tsgo/testdata/tests/effect-v4/globalTimersInEffect_thunks.ts +20 -0
  3842. package/repos/tsgo/testdata/tests/effect-v4/globalTimers_preview.ts +4 -0
  3843. package/repos/tsgo/testdata/tests/effect-v4/instanceOfSchema.ts +34 -0
  3844. package/repos/tsgo/testdata/tests/effect-v4/instanceOfSchema_preview.ts +7 -0
  3845. package/repos/tsgo/testdata/tests/effect-v4/interfaceExtendsIssue.ts +10 -0
  3846. package/repos/tsgo/testdata/tests/effect-v4/interfaceExtendsIssueNoPlugin.ts +16 -0
  3847. package/repos/tsgo/testdata/tests/effect-v4/issue179_nestedEffectGenThis.ts +26 -0
  3848. package/repos/tsgo/testdata/tests/effect-v4/issue179_remainingCases.ts +82 -0
  3849. package/repos/tsgo/testdata/tests/effect-v4/jsxIntrinsicElements.ts +41 -0
  3850. package/repos/tsgo/testdata/tests/effect-v4/layerGraphDocumented.ts +51 -0
  3851. package/repos/tsgo/testdata/tests/effect-v4/layerGraphDuplicated.ts +59 -0
  3852. package/repos/tsgo/testdata/tests/effect-v4/layerGraphEffect.ts +15 -0
  3853. package/repos/tsgo/testdata/tests/effect-v4/layerGraphFollowSymbols.ts +59 -0
  3854. package/repos/tsgo/testdata/tests/effect-v4/layerGraphFollowSymbolsDeep.ts +53 -0
  3855. package/repos/tsgo/testdata/tests/effect-v4/layerGraphFollowSymbolsOff.ts +56 -0
  3856. package/repos/tsgo/testdata/tests/effect-v4/layerGraphMultiple.ts +63 -0
  3857. package/repos/tsgo/testdata/tests/effect-v4/layerGraphSimple.ts +40 -0
  3858. package/repos/tsgo/testdata/tests/effect-v4/layerGraphSpecialChars.ts +23 -0
  3859. package/repos/tsgo/testdata/tests/effect-v4/layerMergeAllWithDependencies.ts +47 -0
  3860. package/repos/tsgo/testdata/tests/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.ts +26 -0
  3861. package/repos/tsgo/testdata/tests/effect-v4/layerMergeAllWithDependencies_preview.ts +11 -0
  3862. package/repos/tsgo/testdata/tests/effect-v4/layerServiceTypes.ts +53 -0
  3863. package/repos/tsgo/testdata/tests/effect-v4/lazyEffect.ts +102 -0
  3864. package/repos/tsgo/testdata/tests/effect-v4/lazyEffect_preview.ts +7 -0
  3865. package/repos/tsgo/testdata/tests/effect-v4/lazyPromiseInEffectSync.ts +20 -0
  3866. package/repos/tsgo/testdata/tests/effect-v4/lazyPromiseInEffectSync_preview.ts +5 -0
  3867. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements.ts +22 -0
  3868. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_allowJsdoc.ts +46 -0
  3869. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_genericTag.ts +13 -0
  3870. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_heuristic.ts +12 -0
  3871. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_leakableJsDoc.ts +17 -0
  3872. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_noScope.ts +14 -0
  3873. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_preview.ts +13 -0
  3874. package/repos/tsgo/testdata/tests/effect-v4/missedPipeableOpportunity.ts +48 -0
  3875. package/repos/tsgo/testdata/tests/effect-v4/missedPipeableOpportunity_error.ts +34 -0
  3876. package/repos/tsgo/testdata/tests/effect-v4/missedPipeableOpportunity_preview.ts +7 -0
  3877. package/repos/tsgo/testdata/tests/effect-v4/missedPipeableOpportunity_safer.ts +35 -0
  3878. package/repos/tsgo/testdata/tests/effect-v4/missingEffectContext.ts +24 -0
  3879. package/repos/tsgo/testdata/tests/effect-v4/missingEffectContext_preview.ts +8 -0
  3880. package/repos/tsgo/testdata/tests/effect-v4/missingEffectContext_sugg.ts +43 -0
  3881. package/repos/tsgo/testdata/tests/effect-v4/missingEffectError.ts +19 -0
  3882. package/repos/tsgo/testdata/tests/effect-v4/missingEffectError_preview.ts +10 -0
  3883. package/repos/tsgo/testdata/tests/effect-v4/missingLayerContext.ts +35 -0
  3884. package/repos/tsgo/testdata/tests/effect-v4/missingLayerContext_preview.ts +10 -0
  3885. package/repos/tsgo/testdata/tests/effect-v4/missingReturnYieldStar.ts +35 -0
  3886. package/repos/tsgo/testdata/tests/effect-v4/missingReturnYieldStarFn.ts +26 -0
  3887. package/repos/tsgo/testdata/tests/effect-v4/missingReturnYieldStarFnUntraced.ts +13 -0
  3888. package/repos/tsgo/testdata/tests/effect-v4/missingReturnYieldStar_preview.ts +8 -0
  3889. package/repos/tsgo/testdata/tests/effect-v4/missingReturnYiesStarGenThis.ts +8 -0
  3890. package/repos/tsgo/testdata/tests/effect-v4/missingStarInYieldEffectGen.ts +48 -0
  3891. package/repos/tsgo/testdata/tests/effect-v4/missingStarInYieldEffectGen_preview.ts +8 -0
  3892. package/repos/tsgo/testdata/tests/effect-v4/multipleCatchTag.ts +58 -0
  3893. package/repos/tsgo/testdata/tests/effect-v4/multipleCatchTag_preview.ts +14 -0
  3894. package/repos/tsgo/testdata/tests/effect-v4/multipleCatchTag_stream.ts +39 -0
  3895. package/repos/tsgo/testdata/tests/effect-v4/multipleEffectProvide.ts +38 -0
  3896. package/repos/tsgo/testdata/tests/effect-v4/multipleEffectProvide_effectFn.ts +53 -0
  3897. package/repos/tsgo/testdata/tests/effect-v4/multipleEffectProvide_effectFnRegular.ts +39 -0
  3898. package/repos/tsgo/testdata/tests/effect-v4/multipleEffectProvide_preview.ts +11 -0
  3899. package/repos/tsgo/testdata/tests/effect-v4/multipleFlows.ts +18 -0
  3900. package/repos/tsgo/testdata/tests/effect-v4/nestedEffectGenYield.ts +35 -0
  3901. package/repos/tsgo/testdata/tests/effect-v4/nestedEffectGenYield_preview.ts +9 -0
  3902. package/repos/tsgo/testdata/tests/effect-v4/nestedPipe.ts +22 -0
  3903. package/repos/tsgo/testdata/tests/effect-v4/newPromise.ts +25 -0
  3904. package/repos/tsgo/testdata/tests/effect-v4/newPromise_preview.ts +4 -0
  3905. package/repos/tsgo/testdata/tests/effect-v4/newSchemaClass.ts +32 -0
  3906. package/repos/tsgo/testdata/tests/effect-v4/newSchemaClass_preview.ts +7 -0
  3907. package/repos/tsgo/testdata/tests/effect-v4/nodeBuiltinImport.ts +47 -0
  3908. package/repos/tsgo/testdata/tests/effect-v4/nodeBuiltinImport_preview.ts +5 -0
  3909. package/repos/tsgo/testdata/tests/effect-v4/outdatedApi.ts +87 -0
  3910. package/repos/tsgo/testdata/tests/effect-v4/outdatedApi_preview.ts +8 -0
  3911. package/repos/tsgo/testdata/tests/effect-v4/overriddenSchemaConstructor.ts +32 -0
  3912. package/repos/tsgo/testdata/tests/effect-v4/overriddenSchemaConstructor_preview.ts +7 -0
  3913. package/repos/tsgo/testdata/tests/effect-v4/overriddenSchemaConstructor_static.ts +14 -0
  3914. package/repos/tsgo/testdata/tests/effect-v4/overriddenSchemaConstructor_valid.ts +9 -0
  3915. package/repos/tsgo/testdata/tests/effect-v4/package.json +11 -0
  3916. package/repos/tsgo/testdata/tests/effect-v4/parsingGen.ts +11 -0
  3917. package/repos/tsgo/testdata/tests/effect-v4/pluginDisabled.ts +8 -0
  3918. package/repos/tsgo/testdata/tests/effect-v4/preferSchemaOverJson.ts +51 -0
  3919. package/repos/tsgo/testdata/tests/effect-v4/preferSchemaOverJson_preview.ts +8 -0
  3920. package/repos/tsgo/testdata/tests/effect-v4/processEnv.ts +20 -0
  3921. package/repos/tsgo/testdata/tests/effect-v4/processEnvInEffect.ts +25 -0
  3922. package/repos/tsgo/testdata/tests/effect-v4/processEnvInEffect_preview.ts +8 -0
  3923. package/repos/tsgo/testdata/tests/effect-v4/processEnvInEffect_thunks.ts +21 -0
  3924. package/repos/tsgo/testdata/tests/effect-v4/processEnv_preview.ts +5 -0
  3925. package/repos/tsgo/testdata/tests/effect-v4/redundantMapError.ts +68 -0
  3926. package/repos/tsgo/testdata/tests/effect-v4/redundantMapError_preview.ts +20 -0
  3927. package/repos/tsgo/testdata/tests/effect-v4/redundantOrDie.ts +58 -0
  3928. package/repos/tsgo/testdata/tests/effect-v4/redundantOrDie_preview.ts +12 -0
  3929. package/repos/tsgo/testdata/tests/effect-v4/returnEffectInGen.ts +5 -0
  3930. package/repos/tsgo/testdata/tests/effect-v4/returnEffectInGenNoDiagnostics.ts +30 -0
  3931. package/repos/tsgo/testdata/tests/effect-v4/returnEffectInGen_preview.ts +7 -0
  3932. package/repos/tsgo/testdata/tests/effect-v4/runEffectInsideEffect.ts +25 -0
  3933. package/repos/tsgo/testdata/tests/effect-v4/runEffectInsideEffect_preview.ts +8 -0
  3934. package/repos/tsgo/testdata/tests/effect-v4/schemaMutableKey_ts2322.ts +30 -0
  3935. package/repos/tsgo/testdata/tests/effect-v4/schemaMutableKey_ts2322_pluginDisabled.ts +41 -0
  3936. package/repos/tsgo/testdata/tests/effect-v4/schemaNumber.ts +25 -0
  3937. package/repos/tsgo/testdata/tests/effect-v4/schemaNumber_preview.ts +9 -0
  3938. package/repos/tsgo/testdata/tests/effect-v4/schemaStructWithTag.ts +19 -0
  3939. package/repos/tsgo/testdata/tests/effect-v4/schemaStructWithTag_preview.ts +8 -0
  3940. package/repos/tsgo/testdata/tests/effect-v4/schemaSyncInEffect.ts +61 -0
  3941. package/repos/tsgo/testdata/tests/effect-v4/schemaSyncInEffect_thunks.ts +26 -0
  3942. package/repos/tsgo/testdata/tests/effect-v4/serviceNotAsClass.ts +17 -0
  3943. package/repos/tsgo/testdata/tests/effect-v4/serviceNotAsClass_preview.ts +5 -0
  3944. package/repos/tsgo/testdata/tests/effect-v4/simpleEffect.ts +38 -0
  3945. package/repos/tsgo/testdata/tests/effect-v4/simplePipe.ts +15 -0
  3946. package/repos/tsgo/testdata/tests/effect-v4/strictBooleanExpressions.ts +41 -0
  3947. package/repos/tsgo/testdata/tests/effect-v4/strictBooleanExpressions_preview.ts +5 -0
  3948. package/repos/tsgo/testdata/tests/effect-v4/strictEffectProvide.ts +51 -0
  3949. package/repos/tsgo/testdata/tests/effect-v4/strictEffectProvide_preview.ts +8 -0
  3950. package/repos/tsgo/testdata/tests/effect-v4/tryCatchInEffectGen.ts +46 -0
  3951. package/repos/tsgo/testdata/tests/effect-v4/tryCatchInEffectGen_finally.ts +11 -0
  3952. package/repos/tsgo/testdata/tests/effect-v4/tryCatchInEffectGen_preview.ts +8 -0
  3953. package/repos/tsgo/testdata/tests/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.ts +24 -0
  3954. package/repos/tsgo/testdata/tests/effect-v4/unknownInEffectCatch.ts +26 -0
  3955. package/repos/tsgo/testdata/tests/effect-v4/unknownInEffectCatch_preview.ts +8 -0
  3956. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryArrowBlock.ts +19 -0
  3957. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryArrowBlock_preview.ts +5 -0
  3958. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryEffectGen.ts +14 -0
  3959. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryEffectGen_ifBlock.ts +10 -0
  3960. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryEffectGen_noReturn.ts +18 -0
  3961. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryEffectGen_preview.ts +7 -0
  3962. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryFailYieldableError.ts +27 -0
  3963. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryFailYieldableError_preview.ts +9 -0
  3964. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipe.ts +15 -0
  3965. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipeChain.ts +17 -0
  3966. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipeChain_preview.ts +5 -0
  3967. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipe_disableMidObject.ts +9 -0
  3968. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipe_namespace.ts +10 -0
  3969. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipe_preview.ts +5 -0
  3970. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryTypeofType.ts +40 -0
  3971. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryTypeofType_preview.ts +10 -0
  3972. package/repos/tsgo/testdata/tests/effect-v4/unsafeEffectTypeAssertion.ts +24 -0
  3973. package/repos/tsgo/testdata/tests/effect-v4/unsafeEffectTypeAssertion_preview.ts +7 -0
  3974. package/repos/tsgo/testdata/tests/effect-v4/unusedDirective.ts +6 -0
  3975. package/repos/tsgo/testdata/tests/effect-v4-document-symbols/debugDocumentSymbolFlows.ts +23 -0
  3976. package/repos/tsgo/testdata/tests/effect-v4-document-symbols/documentSymbolEffectStub.ts +70 -0
  3977. package/repos/tsgo/testdata/tests/effect-v4-document-symbols/package.json +11 -0
  3978. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToFn.ts +6 -0
  3979. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToFnTryPromise.ts +9 -0
  3980. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToFn_fetch.ts +7 -0
  3981. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToFn_generics.ts +6 -0
  3982. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToGen.ts +6 -0
  3983. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToGenTryPromise.ts +10 -0
  3984. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToGenTryPromise_anonymous.ts +20 -0
  3985. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToGen_anonymous.ts +15 -0
  3986. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToGen_namedImport.ts +6 -0
  3987. package/repos/tsgo/testdata/tests/effect-v4-refactors/effectGenToFn.ts +33 -0
  3988. package/repos/tsgo/testdata/tests/effect-v4-refactors/effectGenToFn_classMethod.ts +12 -0
  3989. package/repos/tsgo/testdata/tests/effect-v4-refactors/effectGenToFn_mixedPipes.ts +12 -0
  3990. package/repos/tsgo/testdata/tests/effect-v4-refactors/effectGenToFn_withPipes.ts +12 -0
  3991. package/repos/tsgo/testdata/tests/effect-v4-refactors/functionToArrow.ts +24 -0
  3992. package/repos/tsgo/testdata/tests/effect-v4-refactors/layerMagic_build.ts +51 -0
  3993. package/repos/tsgo/testdata/tests/effect-v4-refactors/layerMagic_prepare.ts +36 -0
  3994. package/repos/tsgo/testdata/tests/effect-v4-refactors/layerMagic_prepareReuse.ts +35 -0
  3995. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaque.ts +7 -0
  3996. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaqueWithNs_shortImport.ts +7 -0
  3997. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaque_brand.ts +4 -0
  3998. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaque_shortImport.ts +7 -0
  3999. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaque_shortImportAlias.ts +7 -0
  4000. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaque_union.ts +7 -0
  4001. package/repos/tsgo/testdata/tests/effect-v4-refactors/package.json +11 -0
  4002. package/repos/tsgo/testdata/tests/effect-v4-refactors/pipeableToDatafirst.ts +26 -0
  4003. package/repos/tsgo/testdata/tests/effect-v4-refactors/removeUnnecessaryEffectGen.ts +21 -0
  4004. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema.ts +31 -0
  4005. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_avoidConflict.ts +16 -0
  4006. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_externalType.ts +5 -0
  4007. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_reuse.ts +16 -0
  4008. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_symbolNames.ts +17 -0
  4009. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_typeAlias.ts +8 -0
  4010. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_union.ts +4 -0
  4011. package/repos/tsgo/testdata/tests/effect-v4-refactors/toggleLazyConst.ts +9 -0
  4012. package/repos/tsgo/testdata/tests/effect-v4-refactors/togglePipeStyle.ts +7 -0
  4013. package/repos/tsgo/testdata/tests/effect-v4-refactors/togglePipeStyle_nestedCallback.ts +19 -0
  4014. package/repos/tsgo/testdata/tests/effect-v4-refactors/toggleReturnTypeAnnotation.ts +18 -0
  4015. package/repos/tsgo/testdata/tests/effect-v4-refactors/toggleTypeAnnotation.ts +21 -0
  4016. package/repos/tsgo/testdata/tests/effect-v4-refactors/typeToEffectSchema.ts +41 -0
  4017. package/repos/tsgo/testdata/tests/effect-v4-refactors/typeToEffectSchemaClass.ts +37 -0
  4018. package/repos/tsgo/testdata/tests/effect-v4-refactors/wrapWithEffectGen.ts +18 -0
  4019. package/repos/tsgo/testdata/tests/effect-v4-refactors/wrapWithEffectGen_nestedCallback.ts +12 -0
  4020. package/repos/tsgo/testdata/tests/effect-v4-refactors/wrapWithPipe.ts +4 -0
  4021. package/repos/tsgo.subtree.json +40 -0
  4022. package/dist/src/harness/CraftSkills.d.ts +0 -14
  4023. package/dist/src/harness/CraftSkills.js +0 -164
  4024. package/dist/src/harness/CraftSkills.js.map +0 -1
  4025. package/dist/src/harness/GuardrailRules.d.ts +0 -6
  4026. package/dist/src/harness/GuardrailRules.js +0 -303
  4027. package/dist/src/harness/GuardrailRules.js.map +0 -1
  4028. package/dist/src/harness/Init.d.ts +0 -9
  4029. package/dist/src/harness/Init.js +0 -234
  4030. package/dist/src/harness/Init.js.map +0 -1
  4031. package/dist/src/harness/PnpmWorkspace.d.ts +0 -2
  4032. package/dist/src/harness/PnpmWorkspace.js +0 -23
  4033. package/dist/src/harness/PnpmWorkspace.js.map +0 -1
  4034. package/dist/src/harness/Publish.d.ts +0 -53
  4035. package/dist/src/harness/Publish.js +0 -282
  4036. package/dist/src/harness/Publish.js.map +0 -1
  4037. package/dist/src/harness/SelfVerify.d.ts +0 -4
  4038. package/dist/src/harness/SelfVerify.js +0 -56
  4039. package/dist/src/harness/SelfVerify.js.map +0 -1
  4040. package/dist/src/harness/Status.d.ts +0 -12
  4041. package/dist/src/harness/Status.js +0 -88
  4042. package/dist/src/harness/Status.js.map +0 -1
  4043. package/dist/src/harness/TargetVerify.d.ts +0 -8
  4044. package/dist/src/harness/TargetVerify.js +0 -432
  4045. package/dist/src/harness/TargetVerify.js.map +0 -1
  4046. package/dist/src/harness/TestContract.d.ts +0 -6
  4047. package/dist/src/harness/TestContract.js +0 -45
  4048. package/dist/src/harness/TestContract.js.map +0 -1
  4049. package/dist/src/platform/ManagedFiles.d.ts +0 -8
  4050. package/dist/src/platform/ManagedFiles.js +0 -59
  4051. package/dist/src/platform/ManagedFiles.js.map +0 -1
  4052. package/guide/default-capabilities.md +0 -38
  4053. package/guide/index.md +0 -49
  4054. package/guide/setup.md +0 -64
  4055. package/harness/default-capabilities.md +0 -32
  4056. package/harness/exposure.md +0 -46
  4057. package/harness/feedback/index.md +0 -60
  4058. package/harness/official-inventory.md +0 -85
  4059. package/harness/runtime/codex/AGENTS.fragment.md +0 -28
  4060. package/harness/runtime/codex/agents/effect-worker.md +0 -26
  4061. package/harness/runtime/codex/skills/effect-code/SKILL.md +0 -72
  4062. package/harness/runtime/codex/skills/effect-code/agents/openai.yaml +0 -4
  4063. package/harness/runtime/codex/skills/effect-feedback/SKILL.md +0 -66
  4064. package/harness/runtime/codex/skills/effect-feedback/agents/openai.yaml +0 -4
  4065. package/harness/target-agent-contract.md +0 -205
  4066. package/repos/craft-skills.manifest.json +0 -34
  4067. package/repos/effect/packages/effect/src/internal/concurrency.ts +0 -52
  4068. package/repos/effect/scripts/check-cookbook-schedule.ts +0 -390
@@ -0,0 +1,2272 @@
1
+
2
+ // Code generated by _tools/gen_shims. DO NOT EDIT.
3
+
4
+ package diagnostics
5
+
6
+ import "github.com/microsoft/typescript-go/internal/diagnostics"
7
+ import "github.com/microsoft/typescript-go/internal/locale"
8
+ import _ "unsafe"
9
+
10
+ var ALL_COMPILER_OPTIONS = diagnostics.ALL_COMPILER_OPTIONS
11
+ var A_0_modifier_cannot_be_used_with_an_import_declaration = diagnostics.A_0_modifier_cannot_be_used_with_an_import_declaration
12
+ var A_0_parameter_must_be_the_first_parameter = diagnostics.A_0_parameter_must_be_the_first_parameter
13
+ var A_JSDoc_template_tag_may_not_follow_a_typedef_callback_or_overload_tag = diagnostics.A_JSDoc_template_tag_may_not_follow_a_typedef_callback_or_overload_tag
14
+ var A_JSDoc_type_tag_on_a_function_must_have_a_signature_with_the_correct_number_of_arguments = diagnostics.A_JSDoc_type_tag_on_a_function_must_have_a_signature_with_the_correct_number_of_arguments
15
+ var A_JSDoc_typedef_comment_may_not_contain_multiple_type_tags = diagnostics.A_JSDoc_typedef_comment_may_not_contain_multiple_type_tags
16
+ var A_bigint_literal_cannot_be_used_as_a_property_name = diagnostics.A_bigint_literal_cannot_be_used_as_a_property_name
17
+ var A_bigint_literal_cannot_use_exponential_notation = diagnostics.A_bigint_literal_cannot_use_exponential_notation
18
+ var A_bigint_literal_must_be_an_integer = diagnostics.A_bigint_literal_must_be_an_integer
19
+ var A_binding_pattern_parameter_cannot_be_optional_in_an_implementation_signature = diagnostics.A_binding_pattern_parameter_cannot_be_optional_in_an_implementation_signature
20
+ var A_break_statement_can_only_be_used_within_an_enclosing_iteration_or_switch_statement = diagnostics.A_break_statement_can_only_be_used_within_an_enclosing_iteration_or_switch_statement
21
+ var A_break_statement_can_only_jump_to_a_label_of_an_enclosing_statement = diagnostics.A_break_statement_can_only_jump_to_a_label_of_an_enclosing_statement
22
+ var A_character_class_must_not_contain_a_reserved_double_punctuator_Did_you_mean_to_escape_it_with_backslash = diagnostics.A_character_class_must_not_contain_a_reserved_double_punctuator_Did_you_mean_to_escape_it_with_backslash
23
+ var A_character_class_range_must_not_be_bounded_by_another_character_class = diagnostics.A_character_class_range_must_not_be_bounded_by_another_character_class
24
+ var A_class_can_only_implement_an_identifier_Slashqualified_name_with_optional_type_arguments = diagnostics.A_class_can_only_implement_an_identifier_Slashqualified_name_with_optional_type_arguments
25
+ var A_class_can_only_implement_an_object_type_or_intersection_of_object_types_with_statically_known_members = diagnostics.A_class_can_only_implement_an_object_type_or_intersection_of_object_types_with_statically_known_members
26
+ var A_class_cannot_extend_a_primitive_type_like_0_Classes_can_only_extend_constructable_values = diagnostics.A_class_cannot_extend_a_primitive_type_like_0_Classes_can_only_extend_constructable_values
27
+ var A_class_cannot_implement_a_primitive_type_like_0_It_can_only_implement_other_named_object_types = diagnostics.A_class_cannot_implement_a_primitive_type_like_0_It_can_only_implement_other_named_object_types
28
+ var A_class_declaration_without_the_default_modifier_must_have_a_name = diagnostics.A_class_declaration_without_the_default_modifier_must_have_a_name
29
+ var A_class_member_cannot_have_the_0_keyword = diagnostics.A_class_member_cannot_have_the_0_keyword
30
+ var A_comma_expression_is_not_allowed_in_a_computed_property_name = diagnostics.A_comma_expression_is_not_allowed_in_a_computed_property_name
31
+ var A_computed_property_name_cannot_reference_a_type_parameter_from_its_containing_type = diagnostics.A_computed_property_name_cannot_reference_a_type_parameter_from_its_containing_type
32
+ var A_computed_property_name_in_a_class_property_declaration_must_have_a_simple_literal_type_or_a_unique_symbol_type = diagnostics.A_computed_property_name_in_a_class_property_declaration_must_have_a_simple_literal_type_or_a_unique_symbol_type
33
+ var A_computed_property_name_in_a_method_overload_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type = diagnostics.A_computed_property_name_in_a_method_overload_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type
34
+ var A_computed_property_name_in_a_type_literal_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type = diagnostics.A_computed_property_name_in_a_type_literal_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type
35
+ var A_computed_property_name_in_an_ambient_context_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type = diagnostics.A_computed_property_name_in_an_ambient_context_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type
36
+ var A_computed_property_name_in_an_interface_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type = diagnostics.A_computed_property_name_in_an_interface_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type
37
+ var A_computed_property_name_must_be_of_type_string_number_symbol_or_any = diagnostics.A_computed_property_name_must_be_of_type_string_number_symbol_or_any
38
+ var A_const_assertion_can_only_be_applied_to_references_to_enum_members_or_string_number_boolean_array_or_object_literals = diagnostics.A_const_assertion_can_only_be_applied_to_references_to_enum_members_or_string_number_boolean_array_or_object_literals
39
+ var A_const_enum_member_can_only_be_accessed_using_a_string_literal = diagnostics.A_const_enum_member_can_only_be_accessed_using_a_string_literal
40
+ var A_const_initializer_in_an_ambient_context_must_be_a_string_or_numeric_literal_or_literal_enum_reference = diagnostics.A_const_initializer_in_an_ambient_context_must_be_a_string_or_numeric_literal_or_literal_enum_reference
41
+ var A_constructor_cannot_contain_a_super_call_when_its_class_extends_null = diagnostics.A_constructor_cannot_contain_a_super_call_when_its_class_extends_null
42
+ var A_constructor_cannot_have_a_this_parameter = diagnostics.A_constructor_cannot_have_a_this_parameter
43
+ var A_continue_statement_can_only_be_used_within_an_enclosing_iteration_statement = diagnostics.A_continue_statement_can_only_be_used_within_an_enclosing_iteration_statement
44
+ var A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement = diagnostics.A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement
45
+ var A_declaration_file_cannot_be_imported_without_import_type_Did_you_mean_to_import_an_implementation_file_0_instead = diagnostics.A_declaration_file_cannot_be_imported_without_import_type_Did_you_mean_to_import_an_implementation_file_0_instead
46
+ var A_declare_modifier_cannot_be_used_in_an_already_ambient_context = diagnostics.A_declare_modifier_cannot_be_used_in_an_already_ambient_context
47
+ var A_decorator_can_only_decorate_a_method_implementation_not_an_overload = diagnostics.A_decorator_can_only_decorate_a_method_implementation_not_an_overload
48
+ var A_default_clause_cannot_appear_more_than_once_in_a_switch_statement = diagnostics.A_default_clause_cannot_appear_more_than_once_in_a_switch_statement
49
+ var A_default_export_can_only_be_used_in_an_ECMAScript_style_module = diagnostics.A_default_export_can_only_be_used_in_an_ECMAScript_style_module
50
+ var A_default_export_must_be_at_the_top_level_of_a_file_or_module_declaration = diagnostics.A_default_export_must_be_at_the_top_level_of_a_file_or_module_declaration
51
+ var A_definite_assignment_assertion_is_not_permitted_in_this_context = diagnostics.A_definite_assignment_assertion_is_not_permitted_in_this_context
52
+ var A_destructuring_declaration_must_have_an_initializer = diagnostics.A_destructuring_declaration_must_have_an_initializer
53
+ var A_dynamic_import_call_in_ES5_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option = diagnostics.A_dynamic_import_call_in_ES5_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option
54
+ var A_dynamic_import_call_returns_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES2015_in_your_lib_option = diagnostics.A_dynamic_import_call_returns_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES2015_in_your_lib_option
55
+ var A_file_cannot_have_a_reference_to_itself = diagnostics.A_file_cannot_have_a_reference_to_itself
56
+ var A_function_returning_never_cannot_have_a_reachable_end_point = diagnostics.A_function_returning_never_cannot_have_a_reachable_end_point
57
+ var A_function_that_is_called_with_the_new_keyword_cannot_have_a_this_type_that_is_void = diagnostics.A_function_that_is_called_with_the_new_keyword_cannot_have_a_this_type_that_is_void
58
+ var A_function_whose_declared_type_is_neither_undefined_void_nor_any_must_return_a_value = diagnostics.A_function_whose_declared_type_is_neither_undefined_void_nor_any_must_return_a_value
59
+ var A_generator_cannot_have_a_void_type_annotation = diagnostics.A_generator_cannot_have_a_void_type_annotation
60
+ var A_get_accessor_cannot_have_parameters = diagnostics.A_get_accessor_cannot_have_parameters
61
+ var A_get_accessor_must_be_at_least_as_accessible_as_the_setter = diagnostics.A_get_accessor_must_be_at_least_as_accessible_as_the_setter
62
+ var A_get_accessor_must_return_a_value = diagnostics.A_get_accessor_must_return_a_value
63
+ var A_label_is_not_allowed_here = diagnostics.A_label_is_not_allowed_here
64
+ var A_labeled_tuple_element_is_declared_as_optional_with_a_question_mark_after_the_name_and_before_the_colon_rather_than_after_the_type = diagnostics.A_labeled_tuple_element_is_declared_as_optional_with_a_question_mark_after_the_name_and_before_the_colon_rather_than_after_the_type
65
+ var A_labeled_tuple_element_is_declared_as_rest_with_a_before_the_name_rather_than_before_the_type = diagnostics.A_labeled_tuple_element_is_declared_as_rest_with_a_before_the_name_rather_than_before_the_type
66
+ var A_mapped_type_may_not_declare_properties_or_methods = diagnostics.A_mapped_type_may_not_declare_properties_or_methods
67
+ var A_member_initializer_in_a_enum_declaration_cannot_reference_members_declared_after_it_including_members_defined_in_other_enums = diagnostics.A_member_initializer_in_a_enum_declaration_cannot_reference_members_declared_after_it_including_members_defined_in_other_enums
68
+ var A_mixin_class_must_have_a_constructor_with_a_single_rest_parameter_of_type_any = diagnostics.A_mixin_class_must_have_a_constructor_with_a_single_rest_parameter_of_type_any
69
+ var A_mixin_class_that_extends_from_a_type_variable_containing_an_abstract_construct_signature_must_also_be_declared_abstract = diagnostics.A_mixin_class_that_extends_from_a_type_variable_containing_an_abstract_construct_signature_must_also_be_declared_abstract
70
+ var A_module_cannot_have_multiple_default_exports = diagnostics.A_module_cannot_have_multiple_default_exports
71
+ var A_namespace_declaration_cannot_be_in_a_different_file_from_a_class_or_function_with_which_it_is_merged = diagnostics.A_namespace_declaration_cannot_be_in_a_different_file_from_a_class_or_function_with_which_it_is_merged
72
+ var A_namespace_declaration_cannot_be_located_prior_to_a_class_or_function_with_which_it_is_merged = diagnostics.A_namespace_declaration_cannot_be_located_prior_to_a_class_or_function_with_which_it_is_merged
73
+ var A_namespace_declaration_is_only_allowed_at_the_top_level_of_a_namespace_or_module = diagnostics.A_namespace_declaration_is_only_allowed_at_the_top_level_of_a_namespace_or_module
74
+ var A_namespace_declaration_should_not_be_declared_using_the_module_keyword_Please_use_the_namespace_keyword_instead = diagnostics.A_namespace_declaration_should_not_be_declared_using_the_module_keyword_Please_use_the_namespace_keyword_instead
75
+ var A_non_dry_build_would_build_project_0 = diagnostics.A_non_dry_build_would_build_project_0
76
+ var A_non_dry_build_would_delete_the_following_files_Colon_0 = diagnostics.A_non_dry_build_would_delete_the_following_files_Colon_0
77
+ var A_non_dry_build_would_update_timestamps_for_output_of_project_0 = diagnostics.A_non_dry_build_would_update_timestamps_for_output_of_project_0
78
+ var A_parameter_initializer_is_only_allowed_in_a_function_or_constructor_implementation = diagnostics.A_parameter_initializer_is_only_allowed_in_a_function_or_constructor_implementation
79
+ var A_parameter_property_cannot_be_declared_using_a_rest_parameter = diagnostics.A_parameter_property_cannot_be_declared_using_a_rest_parameter
80
+ var A_parameter_property_is_only_allowed_in_a_constructor_implementation = diagnostics.A_parameter_property_is_only_allowed_in_a_constructor_implementation
81
+ var A_parameter_property_may_not_be_declared_using_a_binding_pattern = diagnostics.A_parameter_property_may_not_be_declared_using_a_binding_pattern
82
+ var A_promise_must_have_a_then_method = diagnostics.A_promise_must_have_a_then_method
83
+ var A_property_of_a_class_whose_type_is_a_unique_symbol_type_must_be_both_static_and_readonly = diagnostics.A_property_of_a_class_whose_type_is_a_unique_symbol_type_must_be_both_static_and_readonly
84
+ var A_property_of_an_interface_or_type_literal_whose_type_is_a_unique_symbol_type_must_be_readonly = diagnostics.A_property_of_an_interface_or_type_literal_whose_type_is_a_unique_symbol_type_must_be_readonly
85
+ var A_required_element_cannot_follow_an_optional_element = diagnostics.A_required_element_cannot_follow_an_optional_element
86
+ var A_required_parameter_cannot_follow_an_optional_parameter = diagnostics.A_required_parameter_cannot_follow_an_optional_parameter
87
+ var A_rest_element_cannot_contain_a_binding_pattern = diagnostics.A_rest_element_cannot_contain_a_binding_pattern
88
+ var A_rest_element_cannot_follow_another_rest_element = diagnostics.A_rest_element_cannot_follow_another_rest_element
89
+ var A_rest_element_cannot_have_a_property_name = diagnostics.A_rest_element_cannot_have_a_property_name
90
+ var A_rest_element_cannot_have_an_initializer = diagnostics.A_rest_element_cannot_have_an_initializer
91
+ var A_rest_element_must_be_last_in_a_destructuring_pattern = diagnostics.A_rest_element_must_be_last_in_a_destructuring_pattern
92
+ var A_rest_element_type_must_be_an_array_type = diagnostics.A_rest_element_type_must_be_an_array_type
93
+ var A_rest_parameter_cannot_be_optional = diagnostics.A_rest_parameter_cannot_be_optional
94
+ var A_rest_parameter_cannot_have_an_initializer = diagnostics.A_rest_parameter_cannot_have_an_initializer
95
+ var A_rest_parameter_must_be_last_in_a_parameter_list = diagnostics.A_rest_parameter_must_be_last_in_a_parameter_list
96
+ var A_rest_parameter_must_be_of_an_array_type = diagnostics.A_rest_parameter_must_be_of_an_array_type
97
+ var A_rest_parameter_or_binding_pattern_may_not_have_a_trailing_comma = diagnostics.A_rest_parameter_or_binding_pattern_may_not_have_a_trailing_comma
98
+ var A_return_statement_can_only_be_used_within_a_function_body = diagnostics.A_return_statement_can_only_be_used_within_a_function_body
99
+ var A_return_statement_cannot_be_used_inside_a_class_static_block = diagnostics.A_return_statement_cannot_be_used_inside_a_class_static_block
100
+ var A_series_of_entries_which_re_map_imports_to_lookup_locations_relative_to_the_baseUrl = diagnostics.A_series_of_entries_which_re_map_imports_to_lookup_locations_relative_to_the_baseUrl
101
+ var A_set_accessor_cannot_have_a_return_type_annotation = diagnostics.A_set_accessor_cannot_have_a_return_type_annotation
102
+ var A_set_accessor_cannot_have_an_optional_parameter = diagnostics.A_set_accessor_cannot_have_an_optional_parameter
103
+ var A_set_accessor_cannot_have_rest_parameter = diagnostics.A_set_accessor_cannot_have_rest_parameter
104
+ var A_set_accessor_must_have_exactly_one_parameter = diagnostics.A_set_accessor_must_have_exactly_one_parameter
105
+ var A_set_accessor_parameter_cannot_have_an_initializer = diagnostics.A_set_accessor_parameter_cannot_have_an_initializer
106
+ var A_spread_argument_must_either_have_a_tuple_type_or_be_passed_to_a_rest_parameter = diagnostics.A_spread_argument_must_either_have_a_tuple_type_or_be_passed_to_a_rest_parameter
107
+ var A_super_call_must_be_a_root_level_statement_within_a_constructor_of_a_derived_class_that_contains_initialized_properties_parameter_properties_or_private_identifiers = diagnostics.A_super_call_must_be_a_root_level_statement_within_a_constructor_of_a_derived_class_that_contains_initialized_properties_parameter_properties_or_private_identifiers
108
+ var A_super_call_must_be_the_first_statement_in_the_constructor_to_refer_to_super_or_this_when_a_derived_class_contains_initialized_properties_parameter_properties_or_private_identifiers = diagnostics.A_super_call_must_be_the_first_statement_in_the_constructor_to_refer_to_super_or_this_when_a_derived_class_contains_initialized_properties_parameter_properties_or_private_identifiers
109
+ var A_this_based_type_guard_is_not_compatible_with_a_parameter_based_type_guard = diagnostics.A_this_based_type_guard_is_not_compatible_with_a_parameter_based_type_guard
110
+ var A_this_type_is_available_only_in_a_non_static_member_of_a_class_or_interface = diagnostics.A_this_type_is_available_only_in_a_non_static_member_of_a_class_or_interface
111
+ var A_top_level_export_modifier_cannot_be_used_on_value_declarations_in_a_CommonJS_module_when_verbatimModuleSyntax_is_enabled = diagnostics.A_top_level_export_modifier_cannot_be_used_on_value_declarations_in_a_CommonJS_module_when_verbatimModuleSyntax_is_enabled
112
+ var A_tsconfig_json_file_is_already_defined_at_Colon_0 = diagnostics.A_tsconfig_json_file_is_already_defined_at_Colon_0
113
+ var A_tuple_member_cannot_be_both_optional_and_rest = diagnostics.A_tuple_member_cannot_be_both_optional_and_rest
114
+ var A_tuple_type_cannot_be_indexed_with_a_negative_value = diagnostics.A_tuple_type_cannot_be_indexed_with_a_negative_value
115
+ var A_type_assertion_expression_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses = diagnostics.A_type_assertion_expression_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses
116
+ var A_type_literal_property_cannot_have_an_initializer = diagnostics.A_type_literal_property_cannot_have_an_initializer
117
+ var A_type_only_import_can_specify_a_default_import_or_named_bindings_but_not_both = diagnostics.A_type_only_import_can_specify_a_default_import_or_named_bindings_but_not_both
118
+ var A_type_predicate_cannot_reference_a_rest_parameter = diagnostics.A_type_predicate_cannot_reference_a_rest_parameter
119
+ var A_type_predicate_cannot_reference_element_0_in_a_binding_pattern = diagnostics.A_type_predicate_cannot_reference_element_0_in_a_binding_pattern
120
+ var A_type_predicate_is_only_allowed_in_return_type_position_for_functions_and_methods = diagnostics.A_type_predicate_is_only_allowed_in_return_type_position_for_functions_and_methods
121
+ var A_type_predicate_s_type_must_be_assignable_to_its_parameter_s_type = diagnostics.A_type_predicate_s_type_must_be_assignable_to_its_parameter_s_type
122
+ var A_type_referenced_in_a_decorated_signature_must_be_imported_with_import_type_or_a_namespace_import_when_isolatedModules_and_emitDecoratorMetadata_are_enabled = diagnostics.A_type_referenced_in_a_decorated_signature_must_be_imported_with_import_type_or_a_namespace_import_when_isolatedModules_and_emitDecoratorMetadata_are_enabled
123
+ var A_variable_whose_type_is_a_unique_symbol_type_must_be_const = diagnostics.A_variable_whose_type_is_a_unique_symbol_type_must_be_const
124
+ var A_yield_expression_is_only_allowed_in_a_generator_body = diagnostics.A_yield_expression_is_only_allowed_in_a_generator_body
125
+ var Abstract_method_0_in_class_1_cannot_be_accessed_via_super_expression = diagnostics.Abstract_method_0_in_class_1_cannot_be_accessed_via_super_expression
126
+ var Abstract_methods_can_only_appear_within_an_abstract_class = diagnostics.Abstract_methods_can_only_appear_within_an_abstract_class
127
+ var Abstract_properties_can_only_appear_within_an_abstract_class = diagnostics.Abstract_properties_can_only_appear_within_an_abstract_class
128
+ var Abstract_property_0_in_class_1_cannot_be_accessed_in_the_constructor = diagnostics.Abstract_property_0_in_class_1_cannot_be_accessed_in_the_constructor
129
+ var Accessibility_modifier_already_seen = diagnostics.Accessibility_modifier_already_seen
130
+ var Accessors_are_only_available_when_targeting_ECMAScript_5_and_higher = diagnostics.Accessors_are_only_available_when_targeting_ECMAScript_5_and_higher
131
+ var Accessors_must_both_be_abstract_or_non_abstract = diagnostics.Accessors_must_both_be_abstract_or_non_abstract
132
+ var Add_0_to_unresolved_variable = diagnostics.Add_0_to_unresolved_variable
133
+ var Add_a_return_statement = diagnostics.Add_a_return_statement
134
+ var Add_a_return_type_to_the_function_declaration = diagnostics.Add_a_return_type_to_the_function_declaration
135
+ var Add_a_return_type_to_the_function_expression = diagnostics.Add_a_return_type_to_the_function_expression
136
+ var Add_a_return_type_to_the_get_accessor_declaration = diagnostics.Add_a_return_type_to_the_get_accessor_declaration
137
+ var Add_a_return_type_to_the_method = diagnostics.Add_a_return_type_to_the_method
138
+ var Add_a_type_annotation_to_the_parameter_0 = diagnostics.Add_a_type_annotation_to_the_parameter_0
139
+ var Add_a_type_annotation_to_the_property_0 = diagnostics.Add_a_type_annotation_to_the_property_0
140
+ var Add_a_type_annotation_to_the_variable_0 = diagnostics.Add_a_type_annotation_to_the_variable_0
141
+ var Add_a_type_to_parameter_of_the_set_accessor_declaration = diagnostics.Add_a_type_to_parameter_of_the_set_accessor_declaration
142
+ var Add_all_missing_async_modifiers = diagnostics.Add_all_missing_async_modifiers
143
+ var Add_all_missing_attributes = diagnostics.Add_all_missing_attributes
144
+ var Add_all_missing_call_parentheses = diagnostics.Add_all_missing_call_parentheses
145
+ var Add_all_missing_function_declarations = diagnostics.Add_all_missing_function_declarations
146
+ var Add_all_missing_imports = diagnostics.Add_all_missing_imports
147
+ var Add_all_missing_members = diagnostics.Add_all_missing_members
148
+ var Add_all_missing_override_modifiers = diagnostics.Add_all_missing_override_modifiers
149
+ var Add_all_missing_parameters = diagnostics.Add_all_missing_parameters
150
+ var Add_all_missing_properties = diagnostics.Add_all_missing_properties
151
+ var Add_all_missing_return_statement = diagnostics.Add_all_missing_return_statement
152
+ var Add_all_missing_super_calls = diagnostics.Add_all_missing_super_calls
153
+ var Add_all_missing_type_annotations = diagnostics.Add_all_missing_type_annotations
154
+ var Add_all_optional_parameters = diagnostics.Add_all_optional_parameters
155
+ var Add_annotation_of_type_0 = diagnostics.Add_annotation_of_type_0
156
+ var Add_async_modifier_to_containing_function = diagnostics.Add_async_modifier_to_containing_function
157
+ var Add_await = diagnostics.Add_await
158
+ var Add_await_to_initializer_for_0 = diagnostics.Add_await_to_initializer_for_0
159
+ var Add_await_to_initializers = diagnostics.Add_await_to_initializers
160
+ var Add_braces_to_arrow_function = diagnostics.Add_braces_to_arrow_function
161
+ var Add_const_to_all_unresolved_variables = diagnostics.Add_const_to_all_unresolved_variables
162
+ var Add_const_to_unresolved_variable = diagnostics.Add_const_to_unresolved_variable
163
+ var Add_definite_assignment_assertion_to_property_0 = diagnostics.Add_definite_assignment_assertion_to_property_0
164
+ var Add_definite_assignment_assertions_to_all_uninitialized_properties = diagnostics.Add_definite_assignment_assertions_to_all_uninitialized_properties
165
+ var Add_export_to_make_this_file_into_a_module = diagnostics.Add_export_to_make_this_file_into_a_module
166
+ var Add_extends_constraint = diagnostics.Add_extends_constraint
167
+ var Add_extends_constraint_to_all_type_parameters = diagnostics.Add_extends_constraint_to_all_type_parameters
168
+ var Add_import_from_0 = diagnostics.Add_import_from_0
169
+ var Add_index_signature_for_property_0 = diagnostics.Add_index_signature_for_property_0
170
+ var Add_initializer_to_property_0 = diagnostics.Add_initializer_to_property_0
171
+ var Add_initializers_to_all_uninitialized_properties = diagnostics.Add_initializers_to_all_uninitialized_properties
172
+ var Add_missing_attributes = diagnostics.Add_missing_attributes
173
+ var Add_missing_call_parentheses = diagnostics.Add_missing_call_parentheses
174
+ var Add_missing_comma_for_object_member_completion_0 = diagnostics.Add_missing_comma_for_object_member_completion_0
175
+ var Add_missing_enum_member_0 = diagnostics.Add_missing_enum_member_0
176
+ var Add_missing_function_declaration_0 = diagnostics.Add_missing_function_declaration_0
177
+ var Add_missing_new_operator_to_all_calls = diagnostics.Add_missing_new_operator_to_all_calls
178
+ var Add_missing_new_operator_to_call = diagnostics.Add_missing_new_operator_to_call
179
+ var Add_missing_parameter_to_0 = diagnostics.Add_missing_parameter_to_0
180
+ var Add_missing_parameters_to_0 = diagnostics.Add_missing_parameters_to_0
181
+ var Add_missing_properties = diagnostics.Add_missing_properties
182
+ var Add_missing_super_call = diagnostics.Add_missing_super_call
183
+ var Add_missing_typeof = diagnostics.Add_missing_typeof
184
+ var Add_names_to_all_parameters_without_names = diagnostics.Add_names_to_all_parameters_without_names
185
+ var Add_optional_parameter_to_0 = diagnostics.Add_optional_parameter_to_0
186
+ var Add_optional_parameters_to_0 = diagnostics.Add_optional_parameters_to_0
187
+ var Add_or_remove_braces_in_an_arrow_function = diagnostics.Add_or_remove_braces_in_an_arrow_function
188
+ var Add_override_modifier = diagnostics.Add_override_modifier
189
+ var Add_parameter_name = diagnostics.Add_parameter_name
190
+ var Add_qualifier_to_all_unresolved_variables_matching_a_member_name = diagnostics.Add_qualifier_to_all_unresolved_variables_matching_a_member_name
191
+ var Add_resolution_mode_import_attribute = diagnostics.Add_resolution_mode_import_attribute
192
+ var Add_resolution_mode_import_attribute_to_all_type_only_imports_that_need_it = diagnostics.Add_resolution_mode_import_attribute_to_all_type_only_imports_that_need_it
193
+ var Add_return_type_0 = diagnostics.Add_return_type_0
194
+ var Add_satisfies_and_a_type_assertion_to_this_expression_satisfies_T_as_T_to_make_the_type_explicit = diagnostics.Add_satisfies_and_a_type_assertion_to_this_expression_satisfies_T_as_T_to_make_the_type_explicit
195
+ var Add_satisfies_and_an_inline_type_assertion_with_0 = diagnostics.Add_satisfies_and_an_inline_type_assertion_with_0
196
+ var Add_to_all_uncalled_decorators = diagnostics.Add_to_all_uncalled_decorators
197
+ var Add_ts_ignore_to_all_error_messages = diagnostics.Add_ts_ignore_to_all_error_messages
198
+ var Add_undefined_to_a_type_when_accessed_using_an_index = diagnostics.Add_undefined_to_a_type_when_accessed_using_an_index
199
+ var Add_undefined_to_optional_property_type = diagnostics.Add_undefined_to_optional_property_type
200
+ var Add_undefined_type_to_all_uninitialized_properties = diagnostics.Add_undefined_type_to_all_uninitialized_properties
201
+ var Add_undefined_type_to_property_0 = diagnostics.Add_undefined_type_to_property_0
202
+ var Add_unknown_conversion_for_non_overlapping_types = diagnostics.Add_unknown_conversion_for_non_overlapping_types
203
+ var Add_unknown_to_all_conversions_of_non_overlapping_types = diagnostics.Add_unknown_to_all_conversions_of_non_overlapping_types
204
+ var Add_void_to_Promise_resolved_without_a_value = diagnostics.Add_void_to_Promise_resolved_without_a_value
205
+ var Add_void_to_all_Promises_resolved_without_a_value = diagnostics.Add_void_to_all_Promises_resolved_without_a_value
206
+ var Adding_a_tsconfig_json_file_will_help_organize_projects_that_contain_both_TypeScript_and_JavaScript_files_Learn_more_at_https_Colon_Slash_Slashaka_ms_Slashtsconfig = diagnostics.Adding_a_tsconfig_json_file_will_help_organize_projects_that_contain_both_TypeScript_and_JavaScript_files_Learn_more_at_https_Colon_Slash_Slashaka_ms_Slashtsconfig
207
+ var Adjusting_this_layer_composition_could_provide_the_missing_service_effect_missingEffectContext = diagnostics.Adjusting_this_layer_composition_could_provide_the_missing_service_effect_missingEffectContext
208
+ var All_declarations_of_0_must_have_identical_constraints = diagnostics.All_declarations_of_0_must_have_identical_constraints
209
+ var All_declarations_of_0_must_have_identical_modifiers = diagnostics.All_declarations_of_0_must_have_identical_modifiers
210
+ var All_declarations_of_0_must_have_identical_type_parameters = diagnostics.All_declarations_of_0_must_have_identical_type_parameters
211
+ var All_declarations_of_an_abstract_method_must_be_consecutive = diagnostics.All_declarations_of_an_abstract_method_must_be_consecutive
212
+ var All_destructured_elements_are_unused = diagnostics.All_destructured_elements_are_unused
213
+ var All_imports_in_import_declaration_are_unused = diagnostics.All_imports_in_import_declaration_are_unused
214
+ var All_type_parameters_are_unused = diagnostics.All_type_parameters_are_unused
215
+ var All_variables_are_unused = diagnostics.All_variables_are_unused
216
+ var Allow_JavaScript_files_to_be_a_part_of_your_program_Use_the_checkJs_option_to_get_errors_from_these_files = diagnostics.Allow_JavaScript_files_to_be_a_part_of_your_program_Use_the_checkJs_option_to_get_errors_from_these_files
217
+ var Allow_accessing_UMD_globals_from_modules = diagnostics.Allow_accessing_UMD_globals_from_modules
218
+ var Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typechecking = diagnostics.Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typechecking
219
+ var Allow_import_x_from_y_when_a_module_doesn_t_have_a_default_export = diagnostics.Allow_import_x_from_y_when_a_module_doesn_t_have_a_default_export
220
+ var Allow_importing_helper_functions_from_tslib_once_per_project_instead_of_including_them_per_file = diagnostics.Allow_importing_helper_functions_from_tslib_once_per_project_instead_of_including_them_per_file
221
+ var Allow_imports_to_include_TypeScript_file_extensions_Requires_moduleResolution_bundler_and_either_noEmit_or_emitDeclarationOnly_to_be_set = diagnostics.Allow_imports_to_include_TypeScript_file_extensions_Requires_moduleResolution_bundler_and_either_noEmit_or_emitDeclarationOnly_to_be_set
222
+ var Allow_javascript_files_to_be_compiled = diagnostics.Allow_javascript_files_to_be_compiled
223
+ var Allow_multiple_folders_to_be_treated_as_one_when_resolving_modules = diagnostics.Allow_multiple_folders_to_be_treated_as_one_when_resolving_modules
224
+ var Already_included_file_name_0_differs_from_file_name_1_only_in_casing = diagnostics.Already_included_file_name_0_differs_from_file_name_1_only_in_casing
225
+ var Ambient_module_declaration_cannot_specify_relative_module_name = diagnostics.Ambient_module_declaration_cannot_specify_relative_module_name
226
+ var Ambient_modules_cannot_be_nested_in_other_modules_or_namespaces = diagnostics.Ambient_modules_cannot_be_nested_in_other_modules_or_namespaces
227
+ var An_AMD_module_cannot_have_multiple_name_assignments = diagnostics.An_AMD_module_cannot_have_multiple_name_assignments
228
+ var An_abstract_accessor_cannot_have_an_implementation = diagnostics.An_abstract_accessor_cannot_have_an_implementation
229
+ var An_accessibility_modifier_cannot_be_used_with_a_private_identifier = diagnostics.An_accessibility_modifier_cannot_be_used_with_a_private_identifier
230
+ var An_accessor_cannot_have_type_parameters = diagnostics.An_accessor_cannot_have_type_parameters
231
+ var An_accessor_property_cannot_be_declared_optional = diagnostics.An_accessor_property_cannot_be_declared_optional
232
+ var An_ambient_module_declaration_is_only_allowed_at_the_top_level_in_a_file = diagnostics.An_ambient_module_declaration_is_only_allowed_at_the_top_level_in_a_file
233
+ var An_argument_for_0_was_not_provided = diagnostics.An_argument_for_0_was_not_provided
234
+ var An_argument_matching_this_binding_pattern_was_not_provided = diagnostics.An_argument_matching_this_binding_pattern_was_not_provided
235
+ var An_arithmetic_operand_must_be_of_type_any_number_bigint_or_an_enum_type = diagnostics.An_arithmetic_operand_must_be_of_type_any_number_bigint_or_an_enum_type
236
+ var An_arrow_function_cannot_have_a_this_parameter = diagnostics.An_arrow_function_cannot_have_a_this_parameter
237
+ var An_async_function_or_method_in_ES5_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option = diagnostics.An_async_function_or_method_in_ES5_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option
238
+ var An_async_function_or_method_must_return_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES2015_in_your_lib_option = diagnostics.An_async_function_or_method_must_return_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES2015_in_your_lib_option
239
+ var An_async_iterator_must_have_a_next_method = diagnostics.An_async_iterator_must_have_a_next_method
240
+ var An_element_access_expression_should_take_an_argument = diagnostics.An_element_access_expression_should_take_an_argument
241
+ var An_enum_member_cannot_be_named_with_a_private_identifier = diagnostics.An_enum_member_cannot_be_named_with_a_private_identifier
242
+ var An_enum_member_cannot_have_a_numeric_name = diagnostics.An_enum_member_cannot_have_a_numeric_name
243
+ var An_enum_member_name_must_be_followed_by_a_or = diagnostics.An_enum_member_name_must_be_followed_by_a_or
244
+ var An_expanded_version_of_this_information_showing_all_possible_compiler_options = diagnostics.An_expanded_version_of_this_information_showing_all_possible_compiler_options
245
+ var An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements = diagnostics.An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements
246
+ var An_export_assignment_cannot_be_used_in_a_namespace = diagnostics.An_export_assignment_cannot_be_used_in_a_namespace
247
+ var An_export_assignment_cannot_have_modifiers = diagnostics.An_export_assignment_cannot_have_modifiers
248
+ var An_export_assignment_must_be_at_the_top_level_of_a_file_or_module_declaration = diagnostics.An_export_assignment_must_be_at_the_top_level_of_a_file_or_module_declaration
249
+ var An_export_declaration_can_only_be_used_at_the_top_level_of_a_module = diagnostics.An_export_declaration_can_only_be_used_at_the_top_level_of_a_module
250
+ var An_export_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module = diagnostics.An_export_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module
251
+ var An_export_declaration_cannot_have_modifiers = diagnostics.An_export_declaration_cannot_have_modifiers
252
+ var An_export_declaration_must_reference_a_real_value_when_verbatimModuleSyntax_is_enabled_but_0_resolves_to_a_type_only_declaration = diagnostics.An_export_declaration_must_reference_a_real_value_when_verbatimModuleSyntax_is_enabled_but_0_resolves_to_a_type_only_declaration
253
+ var An_export_declaration_must_reference_a_value_when_verbatimModuleSyntax_is_enabled_but_0_only_refers_to_a_type = diagnostics.An_export_declaration_must_reference_a_value_when_verbatimModuleSyntax_is_enabled_but_0_only_refers_to_a_type
254
+ var An_export_default_must_reference_a_real_value_when_verbatimModuleSyntax_is_enabled_but_0_resolves_to_a_type_only_declaration = diagnostics.An_export_default_must_reference_a_real_value_when_verbatimModuleSyntax_is_enabled_but_0_resolves_to_a_type_only_declaration
255
+ var An_export_default_must_reference_a_value_when_verbatimModuleSyntax_is_enabled_but_0_only_refers_to_a_type = diagnostics.An_export_default_must_reference_a_value_when_verbatimModuleSyntax_is_enabled_but_0_only_refers_to_a_type
256
+ var An_expression_of_type_void_cannot_be_tested_for_truthiness = diagnostics.An_expression_of_type_void_cannot_be_tested_for_truthiness
257
+ var An_extended_Unicode_escape_value_must_be_between_0x0_and_0x10FFFF_inclusive = diagnostics.An_extended_Unicode_escape_value_must_be_between_0x0_and_0x10FFFF_inclusive
258
+ var An_identifier_or_keyword_cannot_immediately_follow_a_numeric_literal = diagnostics.An_identifier_or_keyword_cannot_immediately_follow_a_numeric_literal
259
+ var An_implementation_cannot_be_declared_in_ambient_contexts = diagnostics.An_implementation_cannot_be_declared_in_ambient_contexts
260
+ var An_import_alias_cannot_reference_a_declaration_that_was_exported_using_export_type = diagnostics.An_import_alias_cannot_reference_a_declaration_that_was_exported_using_export_type
261
+ var An_import_alias_cannot_reference_a_declaration_that_was_imported_using_import_type = diagnostics.An_import_alias_cannot_reference_a_declaration_that_was_imported_using_import_type
262
+ var An_import_alias_cannot_resolve_to_a_type_or_type_only_declaration_when_verbatimModuleSyntax_is_enabled = diagnostics.An_import_alias_cannot_resolve_to_a_type_or_type_only_declaration_when_verbatimModuleSyntax_is_enabled
263
+ var An_import_alias_cannot_use_import_type = diagnostics.An_import_alias_cannot_use_import_type
264
+ var An_import_declaration_can_only_be_used_at_the_top_level_of_a_module = diagnostics.An_import_declaration_can_only_be_used_at_the_top_level_of_a_module
265
+ var An_import_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module = diagnostics.An_import_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module
266
+ var An_import_declaration_cannot_have_modifiers = diagnostics.An_import_declaration_cannot_have_modifiers
267
+ var An_import_path_can_only_end_with_a_0_extension_when_allowImportingTsExtensions_is_enabled = diagnostics.An_import_path_can_only_end_with_a_0_extension_when_allowImportingTsExtensions_is_enabled
268
+ var An_index_signature_cannot_have_a_rest_parameter = diagnostics.An_index_signature_cannot_have_a_rest_parameter
269
+ var An_index_signature_cannot_have_a_trailing_comma = diagnostics.An_index_signature_cannot_have_a_trailing_comma
270
+ var An_index_signature_must_have_a_type_annotation = diagnostics.An_index_signature_must_have_a_type_annotation
271
+ var An_index_signature_must_have_exactly_one_parameter = diagnostics.An_index_signature_must_have_exactly_one_parameter
272
+ var An_index_signature_parameter_cannot_have_a_question_mark = diagnostics.An_index_signature_parameter_cannot_have_a_question_mark
273
+ var An_index_signature_parameter_cannot_have_an_accessibility_modifier = diagnostics.An_index_signature_parameter_cannot_have_an_accessibility_modifier
274
+ var An_index_signature_parameter_cannot_have_an_initializer = diagnostics.An_index_signature_parameter_cannot_have_an_initializer
275
+ var An_index_signature_parameter_must_have_a_type_annotation = diagnostics.An_index_signature_parameter_must_have_a_type_annotation
276
+ var An_index_signature_parameter_type_cannot_be_a_literal_type_or_generic_type_Consider_using_a_mapped_object_type_instead = diagnostics.An_index_signature_parameter_type_cannot_be_a_literal_type_or_generic_type_Consider_using_a_mapped_object_type_instead
277
+ var An_index_signature_parameter_type_must_be_string_number_symbol_or_a_template_literal_type = diagnostics.An_index_signature_parameter_type_must_be_string_number_symbol_or_a_template_literal_type
278
+ var An_instantiation_expression_cannot_be_followed_by_a_property_access = diagnostics.An_instantiation_expression_cannot_be_followed_by_a_property_access
279
+ var An_interface_can_only_extend_an_identifier_Slashqualified_name_with_optional_type_arguments = diagnostics.An_interface_can_only_extend_an_identifier_Slashqualified_name_with_optional_type_arguments
280
+ var An_interface_can_only_extend_an_object_type_or_intersection_of_object_types_with_statically_known_members = diagnostics.An_interface_can_only_extend_an_object_type_or_intersection_of_object_types_with_statically_known_members
281
+ var An_interface_cannot_extend_a_primitive_type_like_0_It_can_only_extend_other_named_object_types = diagnostics.An_interface_cannot_extend_a_primitive_type_like_0_It_can_only_extend_other_named_object_types
282
+ var An_interface_property_cannot_have_an_initializer = diagnostics.An_interface_property_cannot_have_an_initializer
283
+ var An_iterator_must_have_a_next_method = diagnostics.An_iterator_must_have_a_next_method
284
+ var An_jsxFrag_pragma_is_required_when_using_an_jsx_pragma_with_JSX_fragments = diagnostics.An_jsxFrag_pragma_is_required_when_using_an_jsx_pragma_with_JSX_fragments
285
+ var An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name = diagnostics.An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name
286
+ var An_object_literal_cannot_have_multiple_properties_with_the_same_name = diagnostics.An_object_literal_cannot_have_multiple_properties_with_the_same_name
287
+ var An_object_literal_cannot_have_property_and_accessor_with_the_same_name = diagnostics.An_object_literal_cannot_have_property_and_accessor_with_the_same_name
288
+ var An_object_member_cannot_be_declared_optional = diagnostics.An_object_member_cannot_be_declared_optional
289
+ var An_object_s_Symbol_hasInstance_method_must_return_a_boolean_value_for_it_to_be_used_on_the_right_hand_side_of_an_instanceof_expression = diagnostics.An_object_s_Symbol_hasInstance_method_must_return_a_boolean_value_for_it_to_be_used_on_the_right_hand_side_of_an_instanceof_expression
290
+ var An_optional_chain_cannot_contain_private_identifiers = diagnostics.An_optional_chain_cannot_contain_private_identifiers
291
+ var An_optional_element_cannot_follow_a_rest_element = diagnostics.An_optional_element_cannot_follow_a_rest_element
292
+ var An_outer_value_of_this_is_shadowed_by_this_container = diagnostics.An_outer_value_of_this_is_shadowed_by_this_container
293
+ var An_overload_signature_cannot_be_declared_as_a_generator = diagnostics.An_overload_signature_cannot_be_declared_as_a_generator
294
+ var An_unary_expression_with_the_0_operator_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses = diagnostics.An_unary_expression_with_the_0_operator_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses
295
+ var Annotate_everything_with_types_from_JSDoc = diagnostics.Annotate_everything_with_types_from_JSDoc
296
+ var Annotate_types_of_properties_expando_function_in_a_namespace = diagnostics.Annotate_types_of_properties_expando_function_in_a_namespace
297
+ var Annotate_with_type_from_JSDoc = diagnostics.Annotate_with_type_from_JSDoc
298
+ var Another_export_default_is_here = diagnostics.Another_export_default_is_here
299
+ var Any_Unicode_property_that_would_possibly_match_more_than_a_single_character_is_only_available_when_the_Unicode_Sets_v_flag_is_set = diagnostics.Any_Unicode_property_that_would_possibly_match_more_than_a_single_character_is_only_available_when_the_Unicode_Sets_v_flag_is_set
300
+ var Anything_that_would_possibly_match_more_than_a_single_character_is_invalid_inside_a_negated_character_class = diagnostics.Anything_that_would_possibly_match_more_than_a_single_character_is_invalid_inside_a_negated_character_class
301
+ var Are_you_missing_a_semicolon = diagnostics.Are_you_missing_a_semicolon
302
+ var Argument_expression_expected = diagnostics.Argument_expression_expected
303
+ var Argument_for_0_option_must_be_Colon_1 = diagnostics.Argument_for_0_option_must_be_Colon_1
304
+ var Argument_of_dynamic_import_cannot_be_spread_element = diagnostics.Argument_of_dynamic_import_cannot_be_spread_element
305
+ var Argument_of_type_0_is_not_assignable_to_parameter_of_type_1 = diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1
306
+ var Argument_of_type_0_is_not_assignable_to_parameter_of_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_types_of_the_target_s_properties = diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_types_of_the_target_s_properties
307
+ var Arguments_for_the_rest_parameter_0_were_not_provided = diagnostics.Arguments_for_the_rest_parameter_0_were_not_provided
308
+ var Array_element_destructuring_pattern_expected = diagnostics.Array_element_destructuring_pattern_expected
309
+ var Arrays_with_spread_elements_can_t_inferred_with_isolatedDeclarations = diagnostics.Arrays_with_spread_elements_can_t_inferred_with_isolatedDeclarations
310
+ var Assertions_require_every_name_in_the_call_target_to_be_declared_with_an_explicit_type_annotation = diagnostics.Assertions_require_every_name_in_the_call_target_to_be_declared_with_an_explicit_type_annotation
311
+ var Assertions_require_the_call_target_to_be_an_identifier_or_qualified_name = diagnostics.Assertions_require_the_call_target_to_be_an_identifier_or_qualified_name
312
+ var Assigning_properties_to_functions_without_declaring_them_is_not_supported_with_isolatedDeclarations_Add_an_explicit_declaration_for_the_properties_assigned_to_this_function = diagnostics.Assigning_properties_to_functions_without_declaring_them_is_not_supported_with_isolatedDeclarations_Add_an_explicit_declaration_for_the_properties_assigned_to_this_function
313
+ var Asterisk_Slash_expected = diagnostics.Asterisk_Slash_expected
314
+ var At_least_one_accessor_must_have_an_explicit_type_annotation_with_isolatedDeclarations = diagnostics.At_least_one_accessor_must_have_an_explicit_type_annotation_with_isolatedDeclarations
315
+ var Augmentations_for_the_global_scope_can_only_be_directly_nested_in_external_modules_or_ambient_module_declarations = diagnostics.Augmentations_for_the_global_scope_can_only_be_directly_nested_in_external_modules_or_ambient_module_declarations
316
+ var Augmentations_for_the_global_scope_should_have_declare_modifier_unless_they_appear_in_already_ambient_context = diagnostics.Augmentations_for_the_global_scope_should_have_declare_modifier_unless_they_appear_in_already_ambient_context
317
+ var Auto_discovery_for_typings_is_enabled_in_project_0_Running_extra_resolution_pass_for_module_1_using_cache_location_2 = diagnostics.Auto_discovery_for_typings_is_enabled_in_project_0_Running_extra_resolution_pass_for_module_1_using_cache_location_2
318
+ var BUILD_OPTIONS = diagnostics.BUILD_OPTIONS
319
+ var Backwards_Compatibility = diagnostics.Backwards_Compatibility
320
+ var Base_class_expressions_cannot_reference_class_type_parameters = diagnostics.Base_class_expressions_cannot_reference_class_type_parameters
321
+ var Base_constructor_return_type_0_is_not_an_object_type_or_intersection_of_object_types_with_statically_known_members = diagnostics.Base_constructor_return_type_0_is_not_an_object_type_or_intersection_of_object_types_with_statically_known_members
322
+ var Base_constructors_must_all_have_the_same_return_type = diagnostics.Base_constructors_must_all_have_the_same_return_type
323
+ var Base_directory_to_resolve_non_absolute_module_names = diagnostics.Base_directory_to_resolve_non_absolute_module_names
324
+ var BigInt_literals_are_not_available_when_targeting_lower_than_ES2020 = diagnostics.BigInt_literals_are_not_available_when_targeting_lower_than_ES2020
325
+ var Binary_digit_expected = diagnostics.Binary_digit_expected
326
+ var Binding_element_0_implicitly_has_an_1_type = diagnostics.Binding_element_0_implicitly_has_an_1_type
327
+ var Binding_elements_can_t_be_exported_directly_with_isolatedDeclarations = diagnostics.Binding_elements_can_t_be_exported_directly_with_isolatedDeclarations
328
+ var Block_scoped_variable_0_used_before_its_declaration = diagnostics.Block_scoped_variable_0_used_before_its_declaration
329
+ var Build_a_composite_project_in_the_working_directory = diagnostics.Build_a_composite_project_in_the_working_directory
330
+ var Build_all_projects_including_those_that_appear_to_be_up_to_date = diagnostics.Build_all_projects_including_those_that_appear_to_be_up_to_date
331
+ var Build_one_or_more_projects_and_their_dependencies_if_out_of_date = diagnostics.Build_one_or_more_projects_and_their_dependencies_if_out_of_date
332
+ var Build_option_0_requires_a_value_of_type_1 = diagnostics.Build_option_0_requires_a_value_of_type_1
333
+ var Building_project_0 = diagnostics.Building_project_0
334
+ var Built_in_iterators_are_instantiated_with_a_TReturn_type_of_undefined_instead_of_any = diagnostics.Built_in_iterators_are_instantiated_with_a_TReturn_type_of_undefined_instead_of_any
335
+ var COMMAND_LINE_FLAGS = diagnostics.COMMAND_LINE_FLAGS
336
+ var COMMON_COMMANDS = diagnostics.COMMON_COMMANDS
337
+ var COMMON_COMPILER_OPTIONS = diagnostics.COMMON_COMPILER_OPTIONS
338
+ var Call_decorator_expression = diagnostics.Call_decorator_expression
339
+ var Call_signature_return_types_0_and_1_are_incompatible = diagnostics.Call_signature_return_types_0_and_1_are_incompatible
340
+ var Call_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type = diagnostics.Call_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type
341
+ var Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1 = diagnostics.Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1
342
+ var Call_target_does_not_contain_any_signatures = diagnostics.Call_target_does_not_contain_any_signatures
343
+ var Can_only_convert_logical_AND_access_chains = diagnostics.Can_only_convert_logical_AND_access_chains
344
+ var Can_only_convert_named_export = diagnostics.Can_only_convert_named_export
345
+ var Can_only_convert_property_with_modifier = diagnostics.Can_only_convert_property_with_modifier
346
+ var Can_only_convert_string_concatenations_and_string_literals = diagnostics.Can_only_convert_string_concatenations_and_string_literals
347
+ var Cannot_access_0_1_because_0_is_a_type_but_not_a_namespace_Did_you_mean_to_retrieve_the_type_of_the_property_1_in_0_with_0_1 = diagnostics.Cannot_access_0_1_because_0_is_a_type_but_not_a_namespace_Did_you_mean_to_retrieve_the_type_of_the_property_1_in_0_with_0_1
348
+ var Cannot_access_0_from_another_file_without_qualification_when_1_is_enabled_Use_2_instead = diagnostics.Cannot_access_0_from_another_file_without_qualification_when_1_is_enabled_Use_2_instead
349
+ var Cannot_access_ambient_const_enums_when_0_is_enabled = diagnostics.Cannot_access_ambient_const_enums_when_0_is_enabled
350
+ var Cannot_assign_a_0_constructor_type_to_a_1_constructor_type = diagnostics.Cannot_assign_a_0_constructor_type_to_a_1_constructor_type
351
+ var Cannot_assign_an_abstract_constructor_type_to_a_non_abstract_constructor_type = diagnostics.Cannot_assign_an_abstract_constructor_type_to_a_non_abstract_constructor_type
352
+ var Cannot_assign_to_0_because_it_is_a_class = diagnostics.Cannot_assign_to_0_because_it_is_a_class
353
+ var Cannot_assign_to_0_because_it_is_a_constant = diagnostics.Cannot_assign_to_0_because_it_is_a_constant
354
+ var Cannot_assign_to_0_because_it_is_a_function = diagnostics.Cannot_assign_to_0_because_it_is_a_function
355
+ var Cannot_assign_to_0_because_it_is_a_namespace = diagnostics.Cannot_assign_to_0_because_it_is_a_namespace
356
+ var Cannot_assign_to_0_because_it_is_a_read_only_property = diagnostics.Cannot_assign_to_0_because_it_is_a_read_only_property
357
+ var Cannot_assign_to_0_because_it_is_an_enum = diagnostics.Cannot_assign_to_0_because_it_is_an_enum
358
+ var Cannot_assign_to_0_because_it_is_an_import = diagnostics.Cannot_assign_to_0_because_it_is_an_import
359
+ var Cannot_assign_to_0_because_it_is_not_a_variable = diagnostics.Cannot_assign_to_0_because_it_is_not_a_variable
360
+ var Cannot_assign_to_private_method_0_Private_methods_are_not_writable = diagnostics.Cannot_assign_to_private_method_0_Private_methods_are_not_writable
361
+ var Cannot_augment_module_0_because_it_resolves_to_a_non_module_entity = diagnostics.Cannot_augment_module_0_because_it_resolves_to_a_non_module_entity
362
+ var Cannot_augment_module_0_with_value_exports_because_it_resolves_to_a_non_module_entity = diagnostics.Cannot_augment_module_0_with_value_exports_because_it_resolves_to_a_non_module_entity
363
+ var Cannot_compile_modules_using_option_0_unless_the_module_flag_is_amd_or_system = diagnostics.Cannot_compile_modules_using_option_0_unless_the_module_flag_is_amd_or_system
364
+ var Cannot_create_an_instance_of_an_abstract_class = diagnostics.Cannot_create_an_instance_of_an_abstract_class
365
+ var Cannot_delegate_iteration_to_value_because_the_next_method_of_its_iterator_expects_type_1_but_the_containing_generator_will_always_send_0 = diagnostics.Cannot_delegate_iteration_to_value_because_the_next_method_of_its_iterator_expects_type_1_but_the_containing_generator_will_always_send_0
366
+ var Cannot_export_0_Only_local_declarations_can_be_exported_from_a_module = diagnostics.Cannot_export_0_Only_local_declarations_can_be_exported_from_a_module
367
+ var Cannot_extend_a_class_0_Class_constructor_is_marked_as_private = diagnostics.Cannot_extend_a_class_0_Class_constructor_is_marked_as_private
368
+ var Cannot_extend_an_interface_0_Did_you_mean_implements = diagnostics.Cannot_extend_an_interface_0_Did_you_mean_implements
369
+ var Cannot_find_a_tsconfig_json_file_at_the_current_directory_Colon_0 = diagnostics.Cannot_find_a_tsconfig_json_file_at_the_current_directory_Colon_0
370
+ var Cannot_find_a_tsconfig_json_file_at_the_specified_directory_Colon_0 = diagnostics.Cannot_find_a_tsconfig_json_file_at_the_specified_directory_Colon_0
371
+ var Cannot_find_global_type_0 = diagnostics.Cannot_find_global_type_0
372
+ var Cannot_find_global_value_0 = diagnostics.Cannot_find_global_value_0
373
+ var Cannot_find_lib_definition_for_0 = diagnostics.Cannot_find_lib_definition_for_0
374
+ var Cannot_find_lib_definition_for_0_Did_you_mean_1 = diagnostics.Cannot_find_lib_definition_for_0_Did_you_mean_1
375
+ var Cannot_find_module_0_Consider_using_resolveJsonModule_to_import_module_with_json_extension = diagnostics.Cannot_find_module_0_Consider_using_resolveJsonModule_to_import_module_with_json_extension
376
+ var Cannot_find_module_0_Did_you_mean_to_set_the_moduleResolution_option_to_nodenext_or_to_add_aliases_to_the_paths_option = diagnostics.Cannot_find_module_0_Did_you_mean_to_set_the_moduleResolution_option_to_nodenext_or_to_add_aliases_to_the_paths_option
377
+ var Cannot_find_module_0_or_its_corresponding_type_declarations = diagnostics.Cannot_find_module_0_or_its_corresponding_type_declarations
378
+ var Cannot_find_module_or_type_declarations_for_side_effect_import_of_0 = diagnostics.Cannot_find_module_or_type_declarations_for_side_effect_import_of_0
379
+ var Cannot_find_name_0 = diagnostics.Cannot_find_name_0
380
+ var Cannot_find_name_0_Did_you_mean_1 = diagnostics.Cannot_find_name_0_Did_you_mean_1
381
+ var Cannot_find_name_0_Did_you_mean_the_instance_member_this_0 = diagnostics.Cannot_find_name_0_Did_you_mean_the_instance_member_this_0
382
+ var Cannot_find_name_0_Did_you_mean_the_static_member_1_0 = diagnostics.Cannot_find_name_0_Did_you_mean_the_static_member_1_0
383
+ var Cannot_find_name_0_Did_you_mean_to_write_this_in_an_async_function = diagnostics.Cannot_find_name_0_Did_you_mean_to_write_this_in_an_async_function
384
+ var Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_1_or_later = diagnostics.Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_1_or_later
385
+ var Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_include_dom = diagnostics.Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_include_dom
386
+ var Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_Bun_Try_npm_i_save_dev_types_Slashbun = diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_Bun_Try_npm_i_save_dev_types_Slashbun
387
+ var Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_Bun_Try_npm_i_save_dev_types_Slashbun_and_then_add_bun_to_the_types_field_in_your_tsconfig = diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_Bun_Try_npm_i_save_dev_types_Slashbun_and_then_add_bun_to_the_types_field_in_your_tsconfig
388
+ var Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_types_Slashjest_or_npm_i_save_dev_types_Slashmocha = diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_types_Slashjest_or_npm_i_save_dev_types_Slashmocha
389
+ var Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_types_Slashjest_or_npm_i_save_dev_types_Slashmocha_and_then_add_jest_or_mocha_to_the_types_field_in_your_tsconfig = diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_types_Slashjest_or_npm_i_save_dev_types_Slashmocha_and_then_add_jest_or_mocha_to_the_types_field_in_your_tsconfig
390
+ var Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slashjquery = diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slashjquery
391
+ var Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slashjquery_and_then_add_jquery_to_the_types_field_in_your_tsconfig = diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slashjquery_and_then_add_jquery_to_the_types_field_in_your_tsconfig
392
+ var Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashnode = diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashnode
393
+ var Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashnode_and_then_add_node_to_the_types_field_in_your_tsconfig = diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashnode_and_then_add_node_to_the_types_field_in_your_tsconfig
394
+ var Cannot_find_namespace_0 = diagnostics.Cannot_find_namespace_0
395
+ var Cannot_find_namespace_0_Did_you_mean_1 = diagnostics.Cannot_find_namespace_0_Did_you_mean_1
396
+ var Cannot_find_parameter_0 = diagnostics.Cannot_find_parameter_0
397
+ var Cannot_find_the_common_subdirectory_path_for_the_input_files = diagnostics.Cannot_find_the_common_subdirectory_path_for_the_input_files
398
+ var Cannot_find_type_definition_file_for_0 = diagnostics.Cannot_find_type_definition_file_for_0
399
+ var Cannot_import_type_declaration_files_Consider_importing_0_instead_of_1 = diagnostics.Cannot_import_type_declaration_files_Consider_importing_0_instead_of_1
400
+ var Cannot_initialize_outer_scoped_variable_0_in_the_same_scope_as_block_scoped_declaration_1 = diagnostics.Cannot_initialize_outer_scoped_variable_0_in_the_same_scope_as_block_scoped_declaration_1
401
+ var Cannot_invoke_an_object_which_is_possibly_null = diagnostics.Cannot_invoke_an_object_which_is_possibly_null
402
+ var Cannot_invoke_an_object_which_is_possibly_null_or_undefined = diagnostics.Cannot_invoke_an_object_which_is_possibly_null_or_undefined
403
+ var Cannot_invoke_an_object_which_is_possibly_undefined = diagnostics.Cannot_invoke_an_object_which_is_possibly_undefined
404
+ var Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_destructuring_will_always_send_0 = diagnostics.Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_destructuring_will_always_send_0
405
+ var Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_spread_will_always_send_0 = diagnostics.Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_spread_will_always_send_0
406
+ var Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_for_of_will_always_send_0 = diagnostics.Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_for_of_will_always_send_0
407
+ var Cannot_move_statements_to_the_selected_file = diagnostics.Cannot_move_statements_to_the_selected_file
408
+ var Cannot_move_to_file_selected_file_is_invalid = diagnostics.Cannot_move_to_file_selected_file_is_invalid
409
+ var Cannot_read_file_0 = diagnostics.Cannot_read_file_0
410
+ var Cannot_read_file_0_Colon_1 = diagnostics.Cannot_read_file_0_Colon_1
411
+ var Cannot_redeclare_block_scoped_variable_0 = diagnostics.Cannot_redeclare_block_scoped_variable_0
412
+ var Cannot_redeclare_exported_variable_0 = diagnostics.Cannot_redeclare_exported_variable_0
413
+ var Cannot_redeclare_identifier_0_in_catch_clause = diagnostics.Cannot_redeclare_identifier_0_in_catch_clause
414
+ var Cannot_start_a_function_call_in_a_type_annotation = diagnostics.Cannot_start_a_function_call_in_a_type_annotation
415
+ var Cannot_use_JSX_unless_the_jsx_flag_is_provided = diagnostics.Cannot_use_JSX_unless_the_jsx_flag_is_provided
416
+ var Cannot_use_export_import_on_a_type_or_type_only_namespace_when_0_is_enabled = diagnostics.Cannot_use_export_import_on_a_type_or_type_only_namespace_when_0_is_enabled
417
+ var Cannot_use_imports_exports_or_module_augmentations_when_module_is_none = diagnostics.Cannot_use_imports_exports_or_module_augmentations_when_module_is_none
418
+ var Cannot_use_namespace_0_as_a_type = diagnostics.Cannot_use_namespace_0_as_a_type
419
+ var Cannot_use_namespace_0_as_a_value = diagnostics.Cannot_use_namespace_0_as_a_value
420
+ var Cannot_use_this_in_a_static_property_initializer_of_a_decorated_class = diagnostics.Cannot_use_this_in_a_static_property_initializer_of_a_decorated_class
421
+ var Cannot_write_file_0_because_it_will_overwrite_tsbuildinfo_file_generated_by_referenced_project_1 = diagnostics.Cannot_write_file_0_because_it_will_overwrite_tsbuildinfo_file_generated_by_referenced_project_1
422
+ var Cannot_write_file_0_because_it_would_be_overwritten_by_multiple_input_files = diagnostics.Cannot_write_file_0_because_it_would_be_overwritten_by_multiple_input_files
423
+ var Cannot_write_file_0_because_it_would_overwrite_input_file = diagnostics.Cannot_write_file_0_because_it_would_overwrite_input_file
424
+ var Catch_clause_variable_cannot_have_an_initializer = diagnostics.Catch_clause_variable_cannot_have_an_initializer
425
+ var Catch_clause_variable_type_annotation_must_be_any_or_unknown_if_specified = diagnostics.Catch_clause_variable_type_annotation_must_be_any_or_unknown_if_specified
426
+ type Category = diagnostics.Category
427
+ const CategoryError = diagnostics.CategoryError
428
+ const CategoryMessage = diagnostics.CategoryMessage
429
+ const CategorySuggestion = diagnostics.CategorySuggestion
430
+ const CategoryWarning = diagnostics.CategoryWarning
431
+ var Change_0_to_1 = diagnostics.Change_0_to_1
432
+ var Change_all_extended_interfaces_to_implements = diagnostics.Change_all_extended_interfaces_to_implements
433
+ var Change_all_jsdoc_style_types_to_TypeScript = diagnostics.Change_all_jsdoc_style_types_to_TypeScript
434
+ var Change_all_jsdoc_style_types_to_TypeScript_and_add_undefined_to_nullable_types = diagnostics.Change_all_jsdoc_style_types_to_TypeScript_and_add_undefined_to_nullable_types
435
+ var Change_extends_to_implements = diagnostics.Change_extends_to_implements
436
+ var Change_spelling_to_0 = diagnostics.Change_spelling_to_0
437
+ var Check_for_class_properties_that_are_declared_but_not_set_in_the_constructor = diagnostics.Check_for_class_properties_that_are_declared_but_not_set_in_the_constructor
438
+ var Check_side_effect_imports = diagnostics.Check_side_effect_imports
439
+ var Check_that_the_arguments_for_bind_call_and_apply_methods_match_the_original_function = diagnostics.Check_that_the_arguments_for_bind_call_and_apply_methods_match_the_original_function
440
+ var Checking_if_0_is_the_longest_matching_prefix_for_1_2 = diagnostics.Checking_if_0_is_the_longest_matching_prefix_for_1_2
441
+ var Circular_definition_of_import_alias_0 = diagnostics.Circular_definition_of_import_alias_0
442
+ var Circularity_detected_while_resolving_configuration_Colon_0 = diagnostics.Circularity_detected_while_resolving_configuration_Colon_0
443
+ var Circularity_originates_in_type_at_this_location = diagnostics.Circularity_originates_in_type_at_this_location
444
+ var Class_0_defines_instance_member_accessor_1_but_extended_class_2_defines_it_as_instance_member_function = diagnostics.Class_0_defines_instance_member_accessor_1_but_extended_class_2_defines_it_as_instance_member_function
445
+ var Class_0_defines_instance_member_function_1_but_extended_class_2_defines_it_as_instance_member_accessor = diagnostics.Class_0_defines_instance_member_function_1_but_extended_class_2_defines_it_as_instance_member_accessor
446
+ var Class_0_defines_instance_member_property_1_but_extended_class_2_defines_it_as_instance_member_function = diagnostics.Class_0_defines_instance_member_property_1_but_extended_class_2_defines_it_as_instance_member_function
447
+ var Class_0_incorrectly_extends_base_class_1 = diagnostics.Class_0_incorrectly_extends_base_class_1
448
+ var Class_0_incorrectly_implements_class_1_Did_you_mean_to_extend_1_and_inherit_its_members_as_a_subclass = diagnostics.Class_0_incorrectly_implements_class_1_Did_you_mean_to_extend_1_and_inherit_its_members_as_a_subclass
449
+ var Class_0_incorrectly_implements_interface_1 = diagnostics.Class_0_incorrectly_implements_interface_1
450
+ var Class_0_used_before_its_declaration = diagnostics.Class_0_used_before_its_declaration
451
+ var Class_constructor_may_not_be_a_generator = diagnostics.Class_constructor_may_not_be_a_generator
452
+ var Class_constructor_may_not_be_an_accessor = diagnostics.Class_constructor_may_not_be_an_accessor
453
+ var Class_declaration_cannot_implement_overload_list_for_0 = diagnostics.Class_declaration_cannot_implement_overload_list_for_0
454
+ var Class_declarations_cannot_have_more_than_one_augments_or_extends_tag = diagnostics.Class_declarations_cannot_have_more_than_one_augments_or_extends_tag
455
+ var Class_decorators_can_t_be_used_with_static_private_identifier_Consider_removing_the_experimental_decorator = diagnostics.Class_decorators_can_t_be_used_with_static_private_identifier_Consider_removing_the_experimental_decorator
456
+ var Class_field_0_defined_by_the_parent_class_is_not_accessible_in_the_child_class_via_super = diagnostics.Class_field_0_defined_by_the_parent_class_is_not_accessible_in_the_child_class_via_super
457
+ var Class_name_cannot_be_0 = diagnostics.Class_name_cannot_be_0
458
+ var Class_name_cannot_be_Object_when_targeting_ES5_and_above_with_module_0 = diagnostics.Class_name_cannot_be_Object_when_targeting_ES5_and_above_with_module_0
459
+ var Class_static_side_0_incorrectly_extends_base_class_static_side_1 = diagnostics.Class_static_side_0_incorrectly_extends_base_class_static_side_1
460
+ var Classes_can_only_extend_a_single_class = diagnostics.Classes_can_only_extend_a_single_class
461
+ var Classes_may_not_have_a_field_named_constructor = diagnostics.Classes_may_not_have_a_field_named_constructor
462
+ var Code_contained_in_a_class_is_evaluated_in_JavaScript_s_strict_mode_which_does_not_allow_this_use_of_0_For_more_information_see_https_Colon_Slash_Slashdeveloper_mozilla_org_Slashen_US_Slashdocs_SlashWeb_SlashJavaScript_SlashReference_SlashStrict_mode = diagnostics.Code_contained_in_a_class_is_evaluated_in_JavaScript_s_strict_mode_which_does_not_allow_this_use_of_0_For_more_information_see_https_Colon_Slash_Slashdeveloper_mozilla_org_Slashen_US_Slashdocs_SlashWeb_SlashJavaScript_SlashReference_SlashStrict_mode
463
+ var Command_line_Options = diagnostics.Command_line_Options
464
+ var Compile_the_project_given_the_path_to_its_configuration_file_or_to_a_folder_with_a_tsconfig_json = diagnostics.Compile_the_project_given_the_path_to_its_configuration_file_or_to_a_folder_with_a_tsconfig_json
465
+ var Compiler_Diagnostics = diagnostics.Compiler_Diagnostics
466
+ var Compiler_option_0_cannot_be_given_an_empty_string = diagnostics.Compiler_option_0_cannot_be_given_an_empty_string
467
+ var Compiler_option_0_expects_an_argument = diagnostics.Compiler_option_0_expects_an_argument
468
+ var Compiler_option_0_may_not_be_used_with_build = diagnostics.Compiler_option_0_may_not_be_used_with_build
469
+ var Compiler_option_0_may_only_be_used_with_build = diagnostics.Compiler_option_0_may_only_be_used_with_build
470
+ var Compiler_option_0_of_value_1_is_unstable_Use_nightly_TypeScript_to_silence_this_error_Try_updating_with_npm_install_D_typescript_next = diagnostics.Compiler_option_0_of_value_1_is_unstable_Use_nightly_TypeScript_to_silence_this_error_Try_updating_with_npm_install_D_typescript_next
471
+ var Compiler_option_0_requires_a_value_of_type_1 = diagnostics.Compiler_option_0_requires_a_value_of_type_1
472
+ var Compiler_reserves_name_0_when_emitting_private_identifier_downlevel = diagnostics.Compiler_reserves_name_0_when_emitting_private_identifier_downlevel
473
+ var Compiles_the_TypeScript_project_located_at_the_specified_path = diagnostics.Compiles_the_TypeScript_project_located_at_the_specified_path
474
+ var Compiles_the_current_project_tsconfig_json_in_the_working_directory = diagnostics.Compiles_the_current_project_tsconfig_json_in_the_working_directory
475
+ var Compiles_the_current_project_with_additional_settings = diagnostics.Compiles_the_current_project_with_additional_settings
476
+ var Completeness = diagnostics.Completeness
477
+ var Composite_projects_may_not_disable_declaration_emit = diagnostics.Composite_projects_may_not_disable_declaration_emit
478
+ var Composite_projects_may_not_disable_incremental_compilation = diagnostics.Composite_projects_may_not_disable_incremental_compilation
479
+ var Computed_from_the_list_of_input_files = diagnostics.Computed_from_the_list_of_input_files
480
+ var Computed_properties_must_be_number_or_string_literals_variables_or_dotted_expressions_with_isolatedDeclarations = diagnostics.Computed_properties_must_be_number_or_string_literals_variables_or_dotted_expressions_with_isolatedDeclarations
481
+ var Computed_property_names_are_not_allowed_in_enums = diagnostics.Computed_property_names_are_not_allowed_in_enums
482
+ var Computed_property_names_on_class_or_object_literals_cannot_be_inferred_with_isolatedDeclarations = diagnostics.Computed_property_names_on_class_or_object_literals_cannot_be_inferred_with_isolatedDeclarations
483
+ var Computed_values_are_not_permitted_in_an_enum_with_string_valued_members = diagnostics.Computed_values_are_not_permitted_in_an_enum_with_string_valued_members
484
+ var Concatenate_and_emit_output_to_single_file = diagnostics.Concatenate_and_emit_output_to_single_file
485
+ var Conditions_to_set_in_addition_to_the_resolver_specific_defaults_when_resolving_imports = diagnostics.Conditions_to_set_in_addition_to_the_resolver_specific_defaults_when_resolving_imports
486
+ var Conflicts_are_in_this_file = diagnostics.Conflicts_are_in_this_file
487
+ var Consider_adding_a_declare_modifier_to_this_class = diagnostics.Consider_adding_a_declare_modifier_to_this_class
488
+ var Construct_signature_return_types_0_and_1_are_incompatible = diagnostics.Construct_signature_return_types_0_and_1_are_incompatible
489
+ var Construct_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type = diagnostics.Construct_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type
490
+ var Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1 = diagnostics.Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1
491
+ var Constructor_implementation_is_missing = diagnostics.Constructor_implementation_is_missing
492
+ var Constructor_of_class_0_is_private_and_only_accessible_within_the_class_declaration = diagnostics.Constructor_of_class_0_is_private_and_only_accessible_within_the_class_declaration
493
+ var Constructor_of_class_0_is_protected_and_only_accessible_within_the_class_declaration = diagnostics.Constructor_of_class_0_is_protected_and_only_accessible_within_the_class_declaration
494
+ var Constructor_type_notation_must_be_parenthesized_when_used_in_a_union_type = diagnostics.Constructor_type_notation_must_be_parenthesized_when_used_in_a_union_type
495
+ var Constructor_type_notation_must_be_parenthesized_when_used_in_an_intersection_type = diagnostics.Constructor_type_notation_must_be_parenthesized_when_used_in_an_intersection_type
496
+ var Constructors_for_derived_classes_must_contain_a_super_call = diagnostics.Constructors_for_derived_classes_must_contain_a_super_call
497
+ var Containing_file_is_not_specified_and_root_directory_cannot_be_determined_skipping_lookup_in_node_modules_folder = diagnostics.Containing_file_is_not_specified_and_root_directory_cannot_be_determined_skipping_lookup_in_node_modules_folder
498
+ var Containing_function_is_not_an_arrow_function = diagnostics.Containing_function_is_not_an_arrow_function
499
+ var Context_Service_is_assigned_to_a_variable_here_but_this_API_is_intended_for_a_class_declaration_shape_such_as_0_effect_serviceNotAsClass = diagnostics.Context_Service_is_assigned_to_a_variable_here_but_this_API_is_intended_for_a_class_declaration_shape_such_as_0_effect_serviceNotAsClass
500
+ var Control_what_method_is_used_to_detect_module_format_JS_files = diagnostics.Control_what_method_is_used_to_detect_module_format_JS_files
501
+ var Conversion_of_type_0_to_type_1_may_be_a_mistake_because_neither_type_sufficiently_overlaps_with_the_other_If_this_was_intentional_convert_the_expression_to_unknown_first = diagnostics.Conversion_of_type_0_to_type_1_may_be_a_mistake_because_neither_type_sufficiently_overlaps_with_the_other_If_this_was_intentional_convert_the_expression_to_unknown_first
502
+ var Convert_0_to_1_in_0 = diagnostics.Convert_0_to_1_in_0
503
+ var Convert_0_to_mapped_object_type = diagnostics.Convert_0_to_mapped_object_type
504
+ var Convert_all_const_to_let = diagnostics.Convert_all_const_to_let
505
+ var Convert_all_constructor_functions_to_classes = diagnostics.Convert_all_constructor_functions_to_classes
506
+ var Convert_all_invalid_characters_to_HTML_entity_code = diagnostics.Convert_all_invalid_characters_to_HTML_entity_code
507
+ var Convert_all_re_exported_types_to_type_only_exports = diagnostics.Convert_all_re_exported_types_to_type_only_exports
508
+ var Convert_all_require_to_import = diagnostics.Convert_all_require_to_import
509
+ var Convert_all_to_async_functions = diagnostics.Convert_all_to_async_functions
510
+ var Convert_all_to_bigint_numeric_literals = diagnostics.Convert_all_to_bigint_numeric_literals
511
+ var Convert_all_to_default_imports = diagnostics.Convert_all_to_default_imports
512
+ var Convert_all_type_literals_to_mapped_type = diagnostics.Convert_all_type_literals_to_mapped_type
513
+ var Convert_all_typedef_to_TypeScript_types = diagnostics.Convert_all_typedef_to_TypeScript_types
514
+ var Convert_arrow_function_or_function_expression = diagnostics.Convert_arrow_function_or_function_expression
515
+ var Convert_const_to_let = diagnostics.Convert_const_to_let
516
+ var Convert_default_export_to_named_export = diagnostics.Convert_default_export_to_named_export
517
+ var Convert_function_declaration_0_to_arrow_function = diagnostics.Convert_function_declaration_0_to_arrow_function
518
+ var Convert_function_expression_0_to_arrow_function = diagnostics.Convert_function_expression_0_to_arrow_function
519
+ var Convert_function_to_an_ES2015_class = diagnostics.Convert_function_to_an_ES2015_class
520
+ var Convert_invalid_character_to_its_html_entity_code = diagnostics.Convert_invalid_character_to_its_html_entity_code
521
+ var Convert_named_export_to_default_export = diagnostics.Convert_named_export_to_default_export
522
+ var Convert_named_imports_to_default_import = diagnostics.Convert_named_imports_to_default_import
523
+ var Convert_named_imports_to_namespace_import = diagnostics.Convert_named_imports_to_namespace_import
524
+ var Convert_namespace_import_to_named_imports = diagnostics.Convert_namespace_import_to_named_imports
525
+ var Convert_overload_list_to_single_signature = diagnostics.Convert_overload_list_to_single_signature
526
+ var Convert_parameters_to_destructured_object = diagnostics.Convert_parameters_to_destructured_object
527
+ var Convert_require_to_import = diagnostics.Convert_require_to_import
528
+ var Convert_to_ES_module = diagnostics.Convert_to_ES_module
529
+ var Convert_to_a_bigint_numeric_literal = diagnostics.Convert_to_a_bigint_numeric_literal
530
+ var Convert_to_anonymous_function = diagnostics.Convert_to_anonymous_function
531
+ var Convert_to_arrow_function = diagnostics.Convert_to_arrow_function
532
+ var Convert_to_async_function = diagnostics.Convert_to_async_function
533
+ var Convert_to_default_import = diagnostics.Convert_to_default_import
534
+ var Convert_to_named_function = diagnostics.Convert_to_named_function
535
+ var Convert_to_optional_chain_expression = diagnostics.Convert_to_optional_chain_expression
536
+ var Convert_to_template_string = diagnostics.Convert_to_template_string
537
+ var Convert_to_type_only_export = diagnostics.Convert_to_type_only_export
538
+ var Convert_typedef_to_TypeScript_type = diagnostics.Convert_typedef_to_TypeScript_type
539
+ var Corrupted_locale_file_0 = diagnostics.Corrupted_locale_file_0
540
+ var Could_not_convert_to_anonymous_function = diagnostics.Could_not_convert_to_anonymous_function
541
+ var Could_not_convert_to_arrow_function = diagnostics.Could_not_convert_to_arrow_function
542
+ var Could_not_convert_to_named_function = diagnostics.Could_not_convert_to_named_function
543
+ var Could_not_determine_function_return_type = diagnostics.Could_not_determine_function_return_type
544
+ var Could_not_find_a_containing_arrow_function = diagnostics.Could_not_find_a_containing_arrow_function
545
+ var Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type = diagnostics.Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type
546
+ var Could_not_find_convertible_access_expression = diagnostics.Could_not_find_convertible_access_expression
547
+ var Could_not_find_export_statement = diagnostics.Could_not_find_export_statement
548
+ var Could_not_find_import_clause = diagnostics.Could_not_find_import_clause
549
+ var Could_not_find_matching_access_expressions = diagnostics.Could_not_find_matching_access_expressions
550
+ var Could_not_find_name_0_Did_you_mean_1 = diagnostics.Could_not_find_name_0_Did_you_mean_1
551
+ var Could_not_find_namespace_import_or_named_imports = diagnostics.Could_not_find_namespace_import_or_named_imports
552
+ var Could_not_find_property_for_which_to_generate_accessor = diagnostics.Could_not_find_property_for_which_to_generate_accessor
553
+ var Could_not_find_variable_to_inline = diagnostics.Could_not_find_variable_to_inline
554
+ var Could_not_resolve_the_path_0_with_the_extensions_Colon_1 = diagnostics.Could_not_resolve_the_path_0_with_the_extensions_Colon_1
555
+ var Could_not_write_file_0_Colon_1 = diagnostics.Could_not_write_file_0_Colon_1
556
+ var Create_source_map_files_for_emitted_JavaScript_files = diagnostics.Create_source_map_files_for_emitted_JavaScript_files
557
+ var Create_sourcemaps_for_d_ts_files = diagnostics.Create_sourcemaps_for_d_ts_files
558
+ var Creates_a_tsconfig_json_with_the_recommended_settings_in_the_working_directory = diagnostics.Creates_a_tsconfig_json_with_the_recommended_settings_in_the_working_directory
559
+ var DIRECTORY = diagnostics.DIRECTORY
560
+ var Decimal_escape_sequences_and_backreferences_are_not_allowed_in_a_character_class = diagnostics.Decimal_escape_sequences_and_backreferences_are_not_allowed_in_a_character_class
561
+ var Decimals_with_leading_zeros_are_not_allowed = diagnostics.Decimals_with_leading_zeros_are_not_allowed
562
+ var Declaration_augments_declaration_in_another_file_This_cannot_be_serialized = diagnostics.Declaration_augments_declaration_in_another_file_This_cannot_be_serialized
563
+ var Declaration_emit_for_this_file_requires_preserving_this_import_for_augmentations_This_is_not_supported_with_isolatedDeclarations = diagnostics.Declaration_emit_for_this_file_requires_preserving_this_import_for_augmentations_This_is_not_supported_with_isolatedDeclarations
564
+ var Declaration_emit_for_this_file_requires_using_private_name_0_An_explicit_type_annotation_may_unblock_declaration_emit = diagnostics.Declaration_emit_for_this_file_requires_using_private_name_0_An_explicit_type_annotation_may_unblock_declaration_emit
565
+ var Declaration_emit_for_this_file_requires_using_private_name_0_from_module_1_An_explicit_type_annotation_may_unblock_declaration_emit = diagnostics.Declaration_emit_for_this_file_requires_using_private_name_0_from_module_1_An_explicit_type_annotation_may_unblock_declaration_emit
566
+ var Declaration_emit_for_this_parameter_requires_implicitly_adding_undefined_to_its_type_This_is_not_supported_with_isolatedDeclarations = diagnostics.Declaration_emit_for_this_parameter_requires_implicitly_adding_undefined_to_its_type_This_is_not_supported_with_isolatedDeclarations
567
+ var Declaration_expected = diagnostics.Declaration_expected
568
+ var Declaration_name_conflicts_with_built_in_global_identifier_0 = diagnostics.Declaration_name_conflicts_with_built_in_global_identifier_0
569
+ var Declaration_or_statement_expected = diagnostics.Declaration_or_statement_expected
570
+ var Declaration_or_statement_expected_This_follows_a_block_of_statements_so_if_you_intended_to_write_a_destructuring_assignment_you_might_need_to_wrap_the_whole_assignment_in_parentheses = diagnostics.Declaration_or_statement_expected_This_follows_a_block_of_statements_so_if_you_intended_to_write_a_destructuring_assignment_you_might_need_to_wrap_the_whole_assignment_in_parentheses
571
+ var Declarations_with_definite_assignment_assertions_must_also_have_type_annotations = diagnostics.Declarations_with_definite_assignment_assertions_must_also_have_type_annotations
572
+ var Declarations_with_initializers_cannot_also_have_definite_assignment_assertions = diagnostics.Declarations_with_initializers_cannot_also_have_definite_assignment_assertions
573
+ var Declare_a_private_field_named_0 = diagnostics.Declare_a_private_field_named_0
574
+ var Declare_method_0 = diagnostics.Declare_method_0
575
+ var Declare_private_method_0 = diagnostics.Declare_private_method_0
576
+ var Declare_private_property_0 = diagnostics.Declare_private_property_0
577
+ var Declare_property_0 = diagnostics.Declare_property_0
578
+ var Declare_static_method_0 = diagnostics.Declare_static_method_0
579
+ var Declare_static_property_0 = diagnostics.Declare_static_property_0
580
+ var Decorator_function_return_type_0_is_not_assignable_to_type_1 = diagnostics.Decorator_function_return_type_0_is_not_assignable_to_type_1
581
+ var Decorator_function_return_type_is_0_but_is_expected_to_be_void_or_any = diagnostics.Decorator_function_return_type_is_0_but_is_expected_to_be_void_or_any
582
+ var Decorator_used_before_export_here = diagnostics.Decorator_used_before_export_here
583
+ var Decorators_are_not_valid_here = diagnostics.Decorators_are_not_valid_here
584
+ var Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name = diagnostics.Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name
585
+ var Decorators_may_not_appear_after_export_or_export_default_if_they_also_appear_before_export = diagnostics.Decorators_may_not_appear_after_export_or_export_default_if_they_also_appear_before_export
586
+ var Decorators_must_precede_the_name_and_all_keywords_of_property_declarations = diagnostics.Decorators_must_precede_the_name_and_all_keywords_of_property_declarations
587
+ var Deduplicate_packages_with_the_same_name_and_version = diagnostics.Deduplicate_packages_with_the_same_name_and_version
588
+ var Default_catch_clause_variables_as_unknown_instead_of_any = diagnostics.Default_catch_clause_variables_as_unknown_instead_of_any
589
+ var Default_export_of_the_module_has_or_is_using_private_name_0 = diagnostics.Default_export_of_the_module_has_or_is_using_private_name_0
590
+ var Default_exports_can_t_be_inferred_with_isolatedDeclarations = diagnostics.Default_exports_can_t_be_inferred_with_isolatedDeclarations
591
+ var Default_imports_are_not_allowed_in_a_deferred_import = diagnostics.Default_imports_are_not_allowed_in_a_deferred_import
592
+ var Default_library = diagnostics.Default_library
593
+ var Default_library_for_target_0 = diagnostics.Default_library_for_target_0
594
+ var Deferred_imports_are_only_supported_when_the_module_flag_is_set_to_esnext_or_preserve = diagnostics.Deferred_imports_are_only_supported_when_the_module_flag_is_set_to_esnext_or_preserve
595
+ var Definitions_of_the_following_identifiers_conflict_with_those_in_another_file_Colon_0 = diagnostics.Definitions_of_the_following_identifiers_conflict_with_those_in_another_file_Colon_0
596
+ var Delete_all_unused_declarations = diagnostics.Delete_all_unused_declarations
597
+ var Delete_all_unused_imports = diagnostics.Delete_all_unused_imports
598
+ var Delete_all_unused_param_tags = diagnostics.Delete_all_unused_param_tags
599
+ var Delete_the_outputs_of_all_projects = diagnostics.Delete_the_outputs_of_all_projects
600
+ var Delete_unused_param_tag_0 = diagnostics.Delete_unused_param_tag_0
601
+ var Deprecated_Use_jsxFactory_instead_Specify_the_object_invoked_for_createElement_when_targeting_react_JSX_emit = diagnostics.Deprecated_Use_jsxFactory_instead_Specify_the_object_invoked_for_createElement_when_targeting_react_JSX_emit
602
+ var Deprecated_Use_outFile_instead_Concatenate_and_emit_output_to_single_file = diagnostics.Deprecated_Use_outFile_instead_Concatenate_and_emit_output_to_single_file
603
+ var Deprecated_Use_skipLibCheck_instead_Skip_type_checking_of_default_library_declaration_files = diagnostics.Deprecated_Use_skipLibCheck_instead_Skip_type_checking_of_default_library_declaration_files
604
+ var Deprecated_setting_Use_outFile_instead = diagnostics.Deprecated_setting_Use_outFile_instead
605
+ var Did_you_forget_to_use_await = diagnostics.Did_you_forget_to_use_await
606
+ var Did_you_mean_0 = diagnostics.Did_you_mean_0
607
+ var Did_you_mean_for_0_to_be_constrained_to_type_new_args_Colon_any_1 = diagnostics.Did_you_mean_for_0_to_be_constrained_to_type_new_args_Colon_any_1
608
+ var Did_you_mean_to_call_this_expression = diagnostics.Did_you_mean_to_call_this_expression
609
+ var Did_you_mean_to_mark_this_function_as_async = diagnostics.Did_you_mean_to_mark_this_function_as_async
610
+ var Did_you_mean_to_use_a_Colon_An_can_only_follow_a_property_name_when_the_containing_object_literal_is_part_of_a_destructuring_pattern = diagnostics.Did_you_mean_to_use_a_Colon_An_can_only_follow_a_property_name_when_the_containing_object_literal_is_part_of_a_destructuring_pattern
611
+ var Did_you_mean_to_use_new_with_this_expression = diagnostics.Did_you_mean_to_use_new_with_this_expression
612
+ var Digit_expected = diagnostics.Digit_expected
613
+ var Directory_0_does_not_exist_skipping_all_lookups_in_it = diagnostics.Directory_0_does_not_exist_skipping_all_lookups_in_it
614
+ var Directory_0_has_no_containing_package_json_scope_Imports_will_not_resolve = diagnostics.Directory_0_has_no_containing_package_json_scope_Imports_will_not_resolve
615
+ var Disable_adding_use_strict_directives_in_emitted_JavaScript_files = diagnostics.Disable_adding_use_strict_directives_in_emitted_JavaScript_files
616
+ var Disable_checking_for_this_file = diagnostics.Disable_checking_for_this_file
617
+ var Disable_emitting_comments = diagnostics.Disable_emitting_comments
618
+ var Disable_emitting_declarations_that_have_internal_in_their_JSDoc_comments = diagnostics.Disable_emitting_declarations_that_have_internal_in_their_JSDoc_comments
619
+ var Disable_emitting_files_from_a_compilation = diagnostics.Disable_emitting_files_from_a_compilation
620
+ var Disable_emitting_files_if_any_type_checking_errors_are_reported = diagnostics.Disable_emitting_files_if_any_type_checking_errors_are_reported
621
+ var Disable_erasing_const_enum_declarations_in_generated_code = diagnostics.Disable_erasing_const_enum_declarations_in_generated_code
622
+ var Disable_error_reporting_for_unreachable_code = diagnostics.Disable_error_reporting_for_unreachable_code
623
+ var Disable_error_reporting_for_unused_labels = diagnostics.Disable_error_reporting_for_unused_labels
624
+ var Disable_full_type_checking_only_critical_parse_and_emit_errors_will_be_reported = diagnostics.Disable_full_type_checking_only_critical_parse_and_emit_errors_will_be_reported
625
+ var Disable_generating_custom_helper_functions_like_extends_in_compiled_output = diagnostics.Disable_generating_custom_helper_functions_like_extends_in_compiled_output
626
+ var Disable_including_any_library_files_including_the_default_lib_d_ts = diagnostics.Disable_including_any_library_files_including_the_default_lib_d_ts
627
+ var Disable_loading_referenced_projects = diagnostics.Disable_loading_referenced_projects
628
+ var Disable_preferring_source_files_instead_of_declaration_files_when_referencing_composite_projects = diagnostics.Disable_preferring_source_files_instead_of_declaration_files_when_referencing_composite_projects
629
+ var Disable_reporting_of_excess_property_errors_during_the_creation_of_object_literals = diagnostics.Disable_reporting_of_excess_property_errors_during_the_creation_of_object_literals
630
+ var Disable_resolving_symlinks_to_their_realpath_This_correlates_to_the_same_flag_in_node = diagnostics.Disable_resolving_symlinks_to_their_realpath_This_correlates_to_the_same_flag_in_node
631
+ var Disable_size_limitations_on_JavaScript_projects = diagnostics.Disable_size_limitations_on_JavaScript_projects
632
+ var Disable_solution_searching_for_this_project = diagnostics.Disable_solution_searching_for_this_project
633
+ var Disable_strict_checking_of_generic_signatures_in_function_types = diagnostics.Disable_strict_checking_of_generic_signatures_in_function_types
634
+ var Disable_the_type_acquisition_for_JavaScript_projects = diagnostics.Disable_the_type_acquisition_for_JavaScript_projects
635
+ var Disable_truncating_types_in_error_messages = diagnostics.Disable_truncating_types_in_error_messages
636
+ var Disable_use_of_source_files_instead_of_declaration_files_from_referenced_projects = diagnostics.Disable_use_of_source_files_instead_of_declaration_files_from_referenced_projects
637
+ var Disable_wiping_the_console_in_watch_mode = diagnostics.Disable_wiping_the_console_in_watch_mode
638
+ var Disables_inference_for_type_acquisition_by_looking_at_filenames_in_a_project = diagnostics.Disables_inference_for_type_acquisition_by_looking_at_filenames_in_a_project
639
+ var Disallow_import_s_require_s_or_reference_s_from_expanding_the_number_of_files_TypeScript_should_add_to_a_project = diagnostics.Disallow_import_s_require_s_or_reference_s_from_expanding_the_number_of_files_TypeScript_should_add_to_a_project
640
+ var Disallow_inconsistently_cased_references_to_the_same_file = diagnostics.Disallow_inconsistently_cased_references_to_the_same_file
641
+ var Do_not_add_triple_slash_references_or_imported_modules_to_the_list_of_compiled_files = diagnostics.Do_not_add_triple_slash_references_or_imported_modules_to_the_list_of_compiled_files
642
+ var Do_not_allow_runtime_constructs_that_are_not_part_of_ECMAScript = diagnostics.Do_not_allow_runtime_constructs_that_are_not_part_of_ECMAScript
643
+ var Do_not_emit_comments_to_output = diagnostics.Do_not_emit_comments_to_output
644
+ var Do_not_emit_declarations_for_code_that_has_an_internal_annotation = diagnostics.Do_not_emit_declarations_for_code_that_has_an_internal_annotation
645
+ var Do_not_emit_outputs = diagnostics.Do_not_emit_outputs
646
+ var Do_not_emit_outputs_if_any_errors_were_reported = diagnostics.Do_not_emit_outputs_if_any_errors_were_reported
647
+ var Do_not_emit_use_strict_directives_in_module_output = diagnostics.Do_not_emit_use_strict_directives_in_module_output
648
+ var Do_not_erase_const_enum_declarations_in_generated_code = diagnostics.Do_not_erase_const_enum_declarations_in_generated_code
649
+ var Do_not_generate_custom_helper_functions_like_extends_in_compiled_output = diagnostics.Do_not_generate_custom_helper_functions_like_extends_in_compiled_output
650
+ var Do_not_include_the_default_library_file_lib_d_ts = diagnostics.Do_not_include_the_default_library_file_lib_d_ts
651
+ var Do_not_print_diagnostics = diagnostics.Do_not_print_diagnostics
652
+ var Do_not_report_errors_on_unreachable_code = diagnostics.Do_not_report_errors_on_unreachable_code
653
+ var Do_not_report_errors_on_unused_labels = diagnostics.Do_not_report_errors_on_unused_labels
654
+ var Do_not_resolve_the_real_path_of_symlinks = diagnostics.Do_not_resolve_the_real_path_of_symlinks
655
+ var Do_not_transform_or_elide_any_imports_or_exports_not_marked_as_type_only_ensuring_they_are_written_in_the_output_file_s_format_based_on_the_module_setting = diagnostics.Do_not_transform_or_elide_any_imports_or_exports_not_marked_as_type_only_ensuring_they_are_written_in_the_output_file_s_format_based_on_the_module_setting
656
+ var Do_not_truncate_error_messages = diagnostics.Do_not_truncate_error_messages
657
+ var Duplicate_function_implementation = diagnostics.Duplicate_function_implementation
658
+ var Duplicate_identifier_0 = diagnostics.Duplicate_identifier_0
659
+ var Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module = diagnostics.Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module
660
+ var Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module_containing_async_functions = diagnostics.Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module_containing_async_functions
661
+ var Duplicate_identifier_0_Compiler_reserves_name_1_when_emitting_super_references_in_static_initializers = diagnostics.Duplicate_identifier_0_Compiler_reserves_name_1_when_emitting_super_references_in_static_initializers
662
+ var Duplicate_identifier_0_Compiler_uses_declaration_1_to_support_async_functions = diagnostics.Duplicate_identifier_0_Compiler_uses_declaration_1_to_support_async_functions
663
+ var Duplicate_identifier_0_Static_and_instance_elements_cannot_share_the_same_private_name = diagnostics.Duplicate_identifier_0_Static_and_instance_elements_cannot_share_the_same_private_name
664
+ var Duplicate_identifier_arguments_Compiler_uses_arguments_to_initialize_rest_parameters = diagnostics.Duplicate_identifier_arguments_Compiler_uses_arguments_to_initialize_rest_parameters
665
+ var Duplicate_identifier_newTarget_Compiler_uses_variable_declaration_newTarget_to_capture_new_target_meta_property_reference = diagnostics.Duplicate_identifier_newTarget_Compiler_uses_variable_declaration_newTarget_to_capture_new_target_meta_property_reference
666
+ var Duplicate_identifier_this_Compiler_uses_variable_declaration_this_to_capture_this_reference = diagnostics.Duplicate_identifier_this_Compiler_uses_variable_declaration_this_to_capture_this_reference
667
+ var Duplicate_index_signature_for_type_0 = diagnostics.Duplicate_index_signature_for_type_0
668
+ var Duplicate_label_0 = diagnostics.Duplicate_label_0
669
+ var Duplicate_property_0 = diagnostics.Duplicate_property_0
670
+ var Duplicate_regular_expression_flag = diagnostics.Duplicate_regular_expression_flag
671
+ var Dynamic_import_s_specifier_must_be_of_type_string_but_here_has_type_0 = diagnostics.Dynamic_import_s_specifier_must_be_of_type_string_but_here_has_type_0
672
+ var Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_es2022_esnext_commonjs_amd_system_umd_node16_node18_node20_or_nodenext = diagnostics.Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_es2022_esnext_commonjs_amd_system_umd_node16_node18_node20_or_nodenext
673
+ var Dynamic_imports_can_only_accept_a_module_specifier_and_an_optional_set_of_attributes_as_arguments = diagnostics.Dynamic_imports_can_only_accept_a_module_specifier_and_an_optional_set_of_attributes_as_arguments
674
+ var Dynamic_imports_only_support_a_second_argument_when_the_module_option_is_set_to_esnext_node16_node18_node20_nodenext_or_preserve = diagnostics.Dynamic_imports_only_support_a_second_argument_when_the_module_option_is_set_to_esnext_node16_node18_node20_nodenext_or_preserve
675
+ var ECMAScript_imports_and_exports_cannot_be_written_in_a_CommonJS_file_under_verbatimModuleSyntax = diagnostics.ECMAScript_imports_and_exports_cannot_be_written_in_a_CommonJS_file_under_verbatimModuleSyntax
676
+ var 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 = diagnostics.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
677
+ var ECMAScript_module_syntax_is_not_allowed_in_a_CommonJS_module_when_module_is_set_to_preserve = diagnostics.ECMAScript_module_syntax_is_not_allowed_in_a_CommonJS_module_when_module_is_set_to_preserve
678
+ var Each_declaration_of_0_1_differs_in_its_value_where_2_was_expected_but_3_was_given = diagnostics.Each_declaration_of_0_1_differs_in_its_value_where_2_was_expected_but_3_was_given
679
+ var Each_member_of_the_union_type_0_has_construct_signatures_but_none_of_those_signatures_are_compatible_with_each_other = diagnostics.Each_member_of_the_union_type_0_has_construct_signatures_but_none_of_those_signatures_are_compatible_with_each_other
680
+ var Each_member_of_the_union_type_0_has_signatures_but_none_of_those_signatures_are_compatible_with_each_other = diagnostics.Each_member_of_the_union_type_0_has_signatures_but_none_of_those_signatures_are_compatible_with_each_other
681
+ var Editor_Support = diagnostics.Editor_Support
682
+ var Effect_Service_is_declared_with_a_primitive_service_type_Effect_Service_models_object_shaped_services_primitive_values_use_Context_Tag_or_Effect_Tag_directly_effect_nonObjectEffectServiceType = diagnostics.Effect_Service_is_declared_with_a_primitive_service_type_Effect_Service_models_object_shaped_services_primitive_values_use_Context_Tag_or_Effect_Tag_directly_effect_nonObjectEffectServiceType
683
+ var Effect_Services_with_type_parameters_are_not_supported_because_they_cannot_be_properly_discriminated_at_runtime_which_may_cause_unexpected_behavior_effect_genericEffectServices = diagnostics.Effect_Services_with_type_parameters_are_not_supported_because_they_cannot_be_properly_discriminated_at_runtime_which_may_cause_unexpected_behavior_effect_genericEffectServices
684
+ var Effect_mapError_expresses_the_same_error_type_transformation_more_directly_than_Effect_0_followed_by_Effect_fail_effect_catchAllToMapError = diagnostics.Effect_mapError_expresses_the_same_error_type_transformation_more_directly_than_Effect_0_followed_by_Effect_fail_effect_catchAllToMapError
685
+ var Effect_map_Effect_flatten_is_the_same_as_Effect_flatMap_that_expresses_the_same_steps_more_directly_effect_effectMapFlatten = diagnostics.Effect_map_Effect_flatten_is_the_same_as_Effect_flatMap_that_expresses_the_same_steps_more_directly_effect_effectMapFlatten
686
+ var Effect_orElseSucceed_expresses_the_same_recovery_more_directly_than_Effect_0_followed_by_Effect_succeed_effect_catchToOrElseSucceed = diagnostics.Effect_orElseSucceed_expresses_the_same_recovery_more_directly_than_Effect_0_followed_by_Effect_succeed_effect_catchToOrElseSucceed
687
+ var Effect_provide_with_a_Layer_should_only_be_used_at_application_entry_points_If_this_is_an_entry_point_you_can_safely_disable_this_diagnostic_Otherwise_using_Effect_provide_may_break_scope_lifetimes_Compose_all_layers_at_your_entry_point_and_provide_them_at_once_effect_strictEffectProvide = diagnostics.Effect_provide_with_a_Layer_should_only_be_used_at_application_entry_points_If_this_is_an_entry_point_you_can_safely_disable_this_diagnostic_Otherwise_using_Effect_provide_may_break_scope_lifetimes_Compose_all_layers_at_your_entry_point_and_provide_them_at_once_effect_strictEffectProvide
688
+ var Effect_void_represents_the_same_outcome_as_Effect_succeed_undefined_or_Effect_succeed_void_0_effect_effectSucceedWithVoid = diagnostics.Effect_void_represents_the_same_outcome_as_Effect_succeed_undefined_or_Effect_succeed_void_0_effect_effectSucceedWithVoid
689
+ var Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1 = diagnostics.Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1
690
+ var Element_implicitly_has_an_any_type_because_index_expression_is_not_of_type_number = diagnostics.Element_implicitly_has_an_any_type_because_index_expression_is_not_of_type_number
691
+ var Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature = diagnostics.Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature
692
+ var Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature_Did_you_mean_to_call_1 = diagnostics.Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature_Did_you_mean_to_call_1
693
+ var Emit = diagnostics.Emit
694
+ var Emit_ECMAScript_standard_compliant_class_fields = diagnostics.Emit_ECMAScript_standard_compliant_class_fields
695
+ var Emit_a_UTF_8_Byte_Order_Mark_BOM_in_the_beginning_of_output_files = diagnostics.Emit_a_UTF_8_Byte_Order_Mark_BOM_in_the_beginning_of_output_files
696
+ var Emit_a_single_file_with_source_maps_instead_of_having_a_separate_file = diagnostics.Emit_a_single_file_with_source_maps_instead_of_having_a_separate_file
697
+ var Emit_a_v8_CPU_profile_of_the_compiler_run_for_debugging = diagnostics.Emit_a_v8_CPU_profile_of_the_compiler_run_for_debugging
698
+ var Emit_additional_JavaScript_to_ease_support_for_importing_CommonJS_modules_This_enables_allowSyntheticDefaultImports_for_type_compatibility = diagnostics.Emit_additional_JavaScript_to_ease_support_for_importing_CommonJS_modules_This_enables_allowSyntheticDefaultImports_for_type_compatibility
699
+ var Emit_class_fields_with_Define_instead_of_Set = diagnostics.Emit_class_fields_with_Define_instead_of_Set
700
+ var Emit_design_type_metadata_for_decorated_declarations_in_source_files = diagnostics.Emit_design_type_metadata_for_decorated_declarations_in_source_files
701
+ var Emit_more_compliant_but_verbose_and_less_performant_JavaScript_for_iteration = diagnostics.Emit_more_compliant_but_verbose_and_less_performant_JavaScript_for_iteration
702
+ var Emit_the_source_alongside_the_sourcemaps_within_a_single_file_requires_inlineSourceMap_or_sourceMap_to_be_set = diagnostics.Emit_the_source_alongside_the_sourcemaps_within_a_single_file_requires_inlineSourceMap_or_sourceMap_to_be_set
703
+ var Enable_all_strict_type_checking_options = diagnostics.Enable_all_strict_type_checking_options
704
+ var Enable_color_and_formatting_in_TypeScript_s_output_to_make_compiler_errors_easier_to_read = diagnostics.Enable_color_and_formatting_in_TypeScript_s_output_to_make_compiler_errors_easier_to_read
705
+ var Enable_constraints_that_allow_a_TypeScript_project_to_be_used_with_project_references = diagnostics.Enable_constraints_that_allow_a_TypeScript_project_to_be_used_with_project_references
706
+ var Enable_error_reporting_for_codepaths_that_do_not_explicitly_return_in_a_function = diagnostics.Enable_error_reporting_for_codepaths_that_do_not_explicitly_return_in_a_function
707
+ var Enable_error_reporting_for_expressions_and_declarations_with_an_implied_any_type = diagnostics.Enable_error_reporting_for_expressions_and_declarations_with_an_implied_any_type
708
+ var Enable_error_reporting_for_fallthrough_cases_in_switch_statements = diagnostics.Enable_error_reporting_for_fallthrough_cases_in_switch_statements
709
+ var Enable_error_reporting_in_type_checked_JavaScript_files = diagnostics.Enable_error_reporting_in_type_checked_JavaScript_files
710
+ var Enable_error_reporting_when_local_variables_aren_t_read = diagnostics.Enable_error_reporting_when_local_variables_aren_t_read
711
+ var Enable_error_reporting_when_this_is_given_the_type_any = diagnostics.Enable_error_reporting_when_this_is_given_the_type_any
712
+ var Enable_experimental_support_for_legacy_experimental_decorators = diagnostics.Enable_experimental_support_for_legacy_experimental_decorators
713
+ var Enable_importing_files_with_any_extension_provided_a_declaration_file_is_present = diagnostics.Enable_importing_files_with_any_extension_provided_a_declaration_file_is_present
714
+ var Enable_importing_json_files = diagnostics.Enable_importing_json_files
715
+ var Enable_lib_replacement = diagnostics.Enable_lib_replacement
716
+ var Enable_project_compilation = diagnostics.Enable_project_compilation
717
+ var Enable_strict_bind_call_and_apply_methods_on_functions = diagnostics.Enable_strict_bind_call_and_apply_methods_on_functions
718
+ var Enable_strict_checking_of_function_types = diagnostics.Enable_strict_checking_of_function_types
719
+ var Enable_strict_checking_of_property_initialization_in_classes = diagnostics.Enable_strict_checking_of_property_initialization_in_classes
720
+ var Enable_strict_null_checks = diagnostics.Enable_strict_null_checks
721
+ var Enable_the_experimentalDecorators_option_in_your_configuration_file = diagnostics.Enable_the_experimentalDecorators_option_in_your_configuration_file
722
+ var Enable_the_jsx_flag_in_your_configuration_file = diagnostics.Enable_the_jsx_flag_in_your_configuration_file
723
+ var Enable_tracing_of_the_name_resolution_process = diagnostics.Enable_tracing_of_the_name_resolution_process
724
+ var Enable_verbose_logging = diagnostics.Enable_verbose_logging
725
+ var Enables_emit_interoperability_between_CommonJS_and_ES_Modules_via_creation_of_namespace_objects_for_all_imports_Implies_allowSyntheticDefaultImports = diagnostics.Enables_emit_interoperability_between_CommonJS_and_ES_Modules_via_creation_of_namespace_objects_for_all_imports_Implies_allowSyntheticDefaultImports
726
+ var Enables_experimental_support_for_ES7_decorators = diagnostics.Enables_experimental_support_for_ES7_decorators
727
+ var Enables_experimental_support_for_emitting_type_metadata_for_decorators = diagnostics.Enables_experimental_support_for_emitting_type_metadata_for_decorators
728
+ var Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type = diagnostics.Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type
729
+ var Ensure_overriding_members_in_derived_classes_are_marked_with_an_override_modifier = diagnostics.Ensure_overriding_members_in_derived_classes_are_marked_with_an_override_modifier
730
+ var Ensure_that_casing_is_correct_in_imports = diagnostics.Ensure_that_casing_is_correct_in_imports
731
+ var Ensure_that_each_file_can_be_safely_transpiled_without_relying_on_other_imports = diagnostics.Ensure_that_each_file_can_be_safely_transpiled_without_relying_on_other_imports
732
+ var Ensure_types_are_ordered_stably_and_deterministically_across_compilations = diagnostics.Ensure_types_are_ordered_stably_and_deterministically_across_compilations
733
+ var Ensure_use_strict_is_always_emitted = diagnostics.Ensure_use_strict_is_always_emitted
734
+ var Entering_conditional_exports = diagnostics.Entering_conditional_exports
735
+ var Entry_point_for_implicit_type_library_0 = diagnostics.Entry_point_for_implicit_type_library_0
736
+ var Entry_point_for_implicit_type_library_0_with_packageId_1 = diagnostics.Entry_point_for_implicit_type_library_0_with_packageId_1
737
+ var Entry_point_of_type_library_0_specified_in_compilerOptions = diagnostics.Entry_point_of_type_library_0_specified_in_compilerOptions
738
+ var Entry_point_of_type_library_0_specified_in_compilerOptions_with_packageId_1 = diagnostics.Entry_point_of_type_library_0_specified_in_compilerOptions_with_packageId_1
739
+ var Enum_0_used_before_its_declaration = diagnostics.Enum_0_used_before_its_declaration
740
+ var Enum_declarations_can_only_merge_with_namespace_or_other_enum_declarations = diagnostics.Enum_declarations_can_only_merge_with_namespace_or_other_enum_declarations
741
+ var Enum_declarations_must_all_be_const_or_non_const = diagnostics.Enum_declarations_must_all_be_const_or_non_const
742
+ var Enum_member_expected = diagnostics.Enum_member_expected
743
+ var Enum_member_following_a_non_literal_numeric_member_must_have_an_initializer_when_isolatedModules_is_enabled = diagnostics.Enum_member_following_a_non_literal_numeric_member_must_have_an_initializer_when_isolatedModules_is_enabled
744
+ var Enum_member_initializers_must_be_computable_without_references_to_external_symbols_with_isolatedDeclarations = diagnostics.Enum_member_initializers_must_be_computable_without_references_to_external_symbols_with_isolatedDeclarations
745
+ var Enum_member_must_have_initializer = diagnostics.Enum_member_must_have_initializer
746
+ var Enum_name_cannot_be_0 = diagnostics.Enum_name_cannot_be_0
747
+ var Environment_Settings = diagnostics.Environment_Settings
748
+ var Errors_Files = diagnostics.Errors_Files
749
+ var Escape_sequence_0_is_not_allowed = diagnostics.Escape_sequence_0_is_not_allowed
750
+ var Examples_Colon_0 = diagnostics.Examples_Colon_0
751
+ var Excessive_complexity_comparing_types_0_and_1 = diagnostics.Excessive_complexity_comparing_types_0_and_1
752
+ var Excessive_stack_depth_comparing_types_0_and_1 = diagnostics.Excessive_stack_depth_comparing_types_0_and_1
753
+ var Exiting_conditional_exports = diagnostics.Exiting_conditional_exports
754
+ var Expected_0_1_type_arguments_provide_these_with_an_extends_tag = diagnostics.Expected_0_1_type_arguments_provide_these_with_an_extends_tag
755
+ var Expected_0_arguments_but_got_1 = diagnostics.Expected_0_arguments_but_got_1
756
+ var Expected_0_arguments_but_got_1_Did_you_forget_to_include_void_in_your_type_argument_to_Promise = diagnostics.Expected_0_arguments_but_got_1_Did_you_forget_to_include_void_in_your_type_argument_to_Promise
757
+ var Expected_0_type_arguments_but_got_1 = diagnostics.Expected_0_type_arguments_but_got_1
758
+ var Expected_0_type_arguments_provide_these_with_an_extends_tag = diagnostics.Expected_0_type_arguments_provide_these_with_an_extends_tag
759
+ var Expected_1_argument_but_got_0_new_Promise_needs_a_JSDoc_hint_to_produce_a_resolve_that_can_be_called_without_arguments = diagnostics.Expected_1_argument_but_got_0_new_Promise_needs_a_JSDoc_hint_to_produce_a_resolve_that_can_be_called_without_arguments
760
+ var Expected_a_Unicode_property_name = diagnostics.Expected_a_Unicode_property_name
761
+ var Expected_a_Unicode_property_name_or_value = diagnostics.Expected_a_Unicode_property_name_or_value
762
+ var Expected_a_Unicode_property_value = diagnostics.Expected_a_Unicode_property_value
763
+ var Expected_a_capturing_group_name = diagnostics.Expected_a_capturing_group_name
764
+ var Expected_a_class_set_operand = diagnostics.Expected_a_class_set_operand
765
+ var Expected_at_least_0_arguments_but_got_1 = diagnostics.Expected_at_least_0_arguments_but_got_1
766
+ var Expected_corresponding_JSX_closing_tag_for_0 = diagnostics.Expected_corresponding_JSX_closing_tag_for_0
767
+ var Expected_corresponding_closing_tag_for_JSX_fragment = diagnostics.Expected_corresponding_closing_tag_for_JSX_fragment
768
+ var Expected_for_property_initializer = diagnostics.Expected_for_property_initializer
769
+ var Expected_type_of_0_field_in_package_json_to_be_1_got_2 = diagnostics.Expected_type_of_0_field_in_package_json_to_be_1_got_2
770
+ var Explicitly_specified_module_resolution_kind_Colon_0 = diagnostics.Explicitly_specified_module_resolution_kind_Colon_0
771
+ var Exponentiation_cannot_be_performed_on_bigint_values_unless_the_target_option_is_set_to_es2016_or_later = diagnostics.Exponentiation_cannot_be_performed_on_bigint_values_unless_the_target_option_is_set_to_es2016_or_later
772
+ var Export_0_from_module_1 = diagnostics.Export_0_from_module_1
773
+ var Export_all_referenced_locals = diagnostics.Export_all_referenced_locals
774
+ var Export_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_export_default_or_another_module_format_instead = diagnostics.Export_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_export_default_or_another_module_format_instead
775
+ var Export_assignment_is_not_supported_when_module_flag_is_system = diagnostics.Export_assignment_is_not_supported_when_module_flag_is_system
776
+ var Export_declaration_conflicts_with_exported_declaration_of_0 = diagnostics.Export_declaration_conflicts_with_exported_declaration_of_0
777
+ var Export_declarations_are_not_permitted_in_a_namespace = diagnostics.Export_declarations_are_not_permitted_in_a_namespace
778
+ var Export_specifier_0_does_not_exist_in_package_json_scope_at_path_1 = diagnostics.Export_specifier_0_does_not_exist_in_package_json_scope_at_path_1
779
+ var Exported_type_alias_0_has_or_is_using_private_name_1 = diagnostics.Exported_type_alias_0_has_or_is_using_private_name_1
780
+ var Exported_type_alias_0_has_or_is_using_private_name_1_from_module_2 = diagnostics.Exported_type_alias_0_has_or_is_using_private_name_1_from_module_2
781
+ var Exported_variable_0_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Exported_variable_0_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
782
+ var Exported_variable_0_has_or_is_using_name_1_from_private_module_2 = diagnostics.Exported_variable_0_has_or_is_using_name_1_from_private_module_2
783
+ var Exported_variable_0_has_or_is_using_private_name_1 = diagnostics.Exported_variable_0_has_or_is_using_private_name_1
784
+ var Exports_and_export_assignments_are_not_permitted_in_module_augmentations = diagnostics.Exports_and_export_assignments_are_not_permitted_in_module_augmentations
785
+ var Expression_expected = diagnostics.Expression_expected
786
+ var Expression_must_be_enclosed_in_parentheses_to_be_used_as_a_decorator = diagnostics.Expression_must_be_enclosed_in_parentheses_to_be_used_as_a_decorator
787
+ var Expression_or_comma_expected = diagnostics.Expression_or_comma_expected
788
+ var Expression_produces_a_tuple_type_that_is_too_large_to_represent = diagnostics.Expression_produces_a_tuple_type_that_is_too_large_to_represent
789
+ var Expression_produces_a_union_type_that_is_too_complex_to_represent = diagnostics.Expression_produces_a_union_type_that_is_too_complex_to_represent
790
+ var Expression_resolves_to_super_that_compiler_uses_to_capture_base_class_reference = diagnostics.Expression_resolves_to_super_that_compiler_uses_to_capture_base_class_reference
791
+ var Expression_resolves_to_variable_declaration_newTarget_that_compiler_uses_to_capture_new_target_meta_property_reference = diagnostics.Expression_resolves_to_variable_declaration_newTarget_that_compiler_uses_to_capture_new_target_meta_property_reference
792
+ var Expression_resolves_to_variable_declaration_this_that_compiler_uses_to_capture_this_reference = diagnostics.Expression_resolves_to_variable_declaration_this_that_compiler_uses_to_capture_this_reference
793
+ var Expression_type_can_t_be_inferred_with_isolatedDeclarations = diagnostics.Expression_type_can_t_be_inferred_with_isolatedDeclarations
794
+ var Extends_clause_can_t_contain_an_expression_with_isolatedDeclarations = diagnostics.Extends_clause_can_t_contain_an_expression_with_isolatedDeclarations
795
+ var Extends_clause_for_inferred_type_0_has_or_is_using_private_name_1 = diagnostics.Extends_clause_for_inferred_type_0_has_or_is_using_private_name_1
796
+ var Extract_base_class_to_variable = diagnostics.Extract_base_class_to_variable
797
+ var Extract_binding_expressions_to_variable = diagnostics.Extract_binding_expressions_to_variable
798
+ var Extract_constant = diagnostics.Extract_constant
799
+ var Extract_default_export_to_variable = diagnostics.Extract_default_export_to_variable
800
+ var Extract_function = diagnostics.Extract_function
801
+ var Extract_to_0_in_1 = diagnostics.Extract_to_0_in_1
802
+ var Extract_to_0_in_1_scope = diagnostics.Extract_to_0_in_1_scope
803
+ var Extract_to_0_in_enclosing_scope = diagnostics.Extract_to_0_in_enclosing_scope
804
+ var Extract_to_interface = diagnostics.Extract_to_interface
805
+ var Extract_to_type_alias = diagnostics.Extract_to_type_alias
806
+ var Extract_to_typedef = diagnostics.Extract_to_typedef
807
+ var Extract_to_variable_and_replace_with_0_as_typeof_0 = diagnostics.Extract_to_variable_and_replace_with_0_as_typeof_0
808
+ var Extract_type = diagnostics.Extract_type
809
+ var FILE = diagnostics.FILE
810
+ var FILE_OR_DIRECTORY = diagnostics.FILE_OR_DIRECTORY
811
+ var Failed_to_delete_file_0 = diagnostics.Failed_to_delete_file_0
812
+ var Failed_to_find_peerDependency_0 = diagnostics.Failed_to_find_peerDependency_0
813
+ var Failed_to_resolve_under_condition_0 = diagnostics.Failed_to_resolve_under_condition_0
814
+ var Fallthrough_case_in_switch = diagnostics.Fallthrough_case_in_switch
815
+ var File_0_does_not_exist = diagnostics.File_0_does_not_exist
816
+ var File_0_does_not_exist_according_to_earlier_cached_lookups = diagnostics.File_0_does_not_exist_according_to_earlier_cached_lookups
817
+ var File_0_exists_according_to_earlier_cached_lookups = diagnostics.File_0_exists_according_to_earlier_cached_lookups
818
+ var File_0_exists_use_it_as_a_name_resolution_result = diagnostics.File_0_exists_use_it_as_a_name_resolution_result
819
+ var File_0_has_an_unsupported_extension_The_only_supported_extensions_are_1 = diagnostics.File_0_has_an_unsupported_extension_The_only_supported_extensions_are_1
820
+ var File_0_is_a_JavaScript_file_Did_you_mean_to_enable_the_allowJs_option = diagnostics.File_0_is_a_JavaScript_file_Did_you_mean_to_enable_the_allowJs_option
821
+ var File_0_is_not_a_module = diagnostics.File_0_is_not_a_module
822
+ var File_0_is_not_listed_within_the_file_list_of_project_1_Projects_must_list_all_files_or_use_an_include_pattern = diagnostics.File_0_is_not_listed_within_the_file_list_of_project_1_Projects_must_list_all_files_or_use_an_include_pattern
823
+ var File_0_is_not_under_rootDir_1_rootDir_is_expected_to_contain_all_source_files = diagnostics.File_0_is_not_under_rootDir_1_rootDir_is_expected_to_contain_all_source_files
824
+ var File_0_not_found = diagnostics.File_0_not_found
825
+ var File_Layout = diagnostics.File_Layout
826
+ var File_Management = diagnostics.File_Management
827
+ var File_appears_to_be_binary = diagnostics.File_appears_to_be_binary
828
+ var File_change_detected_Starting_incremental_compilation = diagnostics.File_change_detected_Starting_incremental_compilation
829
+ var File_is_CommonJS_module_because_0_does_not_have_field_type = diagnostics.File_is_CommonJS_module_because_0_does_not_have_field_type
830
+ var File_is_CommonJS_module_because_0_has_field_type_whose_value_is_not_module = diagnostics.File_is_CommonJS_module_because_0_has_field_type_whose_value_is_not_module
831
+ var File_is_CommonJS_module_because_package_json_was_not_found = diagnostics.File_is_CommonJS_module_because_package_json_was_not_found
832
+ var File_is_ECMAScript_module_because_0_has_field_type_with_value_module = diagnostics.File_is_ECMAScript_module_because_0_has_field_type_with_value_module
833
+ var File_is_a_CommonJS_module_it_may_be_converted_to_an_ES_module = diagnostics.File_is_a_CommonJS_module_it_may_be_converted_to_an_ES_module
834
+ var File_is_default_library_for_target_specified_here = diagnostics.File_is_default_library_for_target_specified_here
835
+ var File_is_entry_point_of_type_library_specified_here = diagnostics.File_is_entry_point_of_type_library_specified_here
836
+ var File_is_included_via_import_here = diagnostics.File_is_included_via_import_here
837
+ var File_is_included_via_library_reference_here = diagnostics.File_is_included_via_library_reference_here
838
+ var File_is_included_via_reference_here = diagnostics.File_is_included_via_reference_here
839
+ var File_is_included_via_type_library_reference_here = diagnostics.File_is_included_via_type_library_reference_here
840
+ var File_is_library_specified_here = diagnostics.File_is_library_specified_here
841
+ var File_is_matched_by_files_list_specified_here = diagnostics.File_is_matched_by_files_list_specified_here
842
+ var File_is_matched_by_include_pattern_specified_here = diagnostics.File_is_matched_by_include_pattern_specified_here
843
+ var File_is_output_from_referenced_project_specified_here = diagnostics.File_is_output_from_referenced_project_specified_here
844
+ var File_is_output_of_project_reference_source_0 = diagnostics.File_is_output_of_project_reference_source_0
845
+ var File_is_source_from_referenced_project_specified_here = diagnostics.File_is_source_from_referenced_project_specified_here
846
+ var File_name_0_differs_from_already_included_file_name_1_only_in_casing = diagnostics.File_name_0_differs_from_already_included_file_name_1_only_in_casing
847
+ var File_name_0_has_a_1_extension_looking_up_2_instead = diagnostics.File_name_0_has_a_1_extension_looking_up_2_instead
848
+ var File_name_0_has_a_1_extension_stripping_it = diagnostics.File_name_0_has_a_1_extension_stripping_it
849
+ var File_redirects_to_file_0 = diagnostics.File_redirects_to_file_0
850
+ var File_rename_is_not_supported_by_the_editor = diagnostics.File_rename_is_not_supported_by_the_editor
851
+ var File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0 = diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0
852
+ var File_specification_cannot_end_in_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0 = diagnostics.File_specification_cannot_end_in_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0
853
+ var Filters_results_from_the_include_option = diagnostics.Filters_results_from_the_include_option
854
+ var Fix_All = diagnostics.Fix_All
855
+ var Fix_all_detected_spelling_errors = diagnostics.Fix_all_detected_spelling_errors
856
+ var Fix_all_expressions_possibly_missing_await = diagnostics.Fix_all_expressions_possibly_missing_await
857
+ var Fix_all_implicit_this_errors = diagnostics.Fix_all_implicit_this_errors
858
+ var Fix_all_incorrect_return_type_of_an_async_functions = diagnostics.Fix_all_incorrect_return_type_of_an_async_functions
859
+ var Fix_all_with_type_only_imports = diagnostics.Fix_all_with_type_only_imports
860
+ var For_nodejs_Colon = diagnostics.For_nodejs_Colon
861
+ //go:linkname Format github.com/microsoft/typescript-go/internal/diagnostics.Format
862
+ func Format(text string, args []string) string
863
+ var Found_0_errors = diagnostics.Found_0_errors
864
+ var Found_0_errors_Watching_for_file_changes = diagnostics.Found_0_errors_Watching_for_file_changes
865
+ var Found_0_errors_in_1_files = diagnostics.Found_0_errors_in_1_files
866
+ var Found_0_errors_in_the_same_file_starting_at_Colon_1 = diagnostics.Found_0_errors_in_the_same_file_starting_at_Colon_1
867
+ var Found_1_error = diagnostics.Found_1_error
868
+ var Found_1_error_Watching_for_file_changes = diagnostics.Found_1_error_Watching_for_file_changes
869
+ var Found_1_error_in_0 = diagnostics.Found_1_error_in_0
870
+ var Found_package_json_at_0 = diagnostics.Found_package_json_at_0
871
+ var Found_peerDependency_0_with_1_version = diagnostics.Found_peerDependency_0_with_1_version
872
+ var Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES5 = diagnostics.Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES5
873
+ var Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES5_Class_definitions_are_automatically_in_strict_mode = diagnostics.Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES5_Class_definitions_are_automatically_in_strict_mode
874
+ var Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES5_Modules_are_automatically_in_strict_mode = diagnostics.Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES5_Modules_are_automatically_in_strict_mode
875
+ var Function_expression_which_lacks_return_type_annotation_implicitly_has_an_0_return_type = diagnostics.Function_expression_which_lacks_return_type_annotation_implicitly_has_an_0_return_type
876
+ var Function_implementation_is_missing_or_not_immediately_following_the_declaration = diagnostics.Function_implementation_is_missing_or_not_immediately_following_the_declaration
877
+ var Function_implementation_name_must_be_0 = diagnostics.Function_implementation_name_must_be_0
878
+ var Function_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions = diagnostics.Function_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions
879
+ var Function_lacks_ending_return_statement_and_return_type_does_not_include_undefined = diagnostics.Function_lacks_ending_return_statement_and_return_type_does_not_include_undefined
880
+ var Function_must_have_an_explicit_return_type_annotation_with_isolatedDeclarations = diagnostics.Function_must_have_an_explicit_return_type_annotation_with_isolatedDeclarations
881
+ var Function_not_implemented = diagnostics.Function_not_implemented
882
+ var Function_overload_must_be_static = diagnostics.Function_overload_must_be_static
883
+ var Function_overload_must_not_be_static = diagnostics.Function_overload_must_not_be_static
884
+ var Function_type_notation_must_be_parenthesized_when_used_in_a_union_type = diagnostics.Function_type_notation_must_be_parenthesized_when_used_in_a_union_type
885
+ var Function_type_notation_must_be_parenthesized_when_used_in_an_intersection_type = diagnostics.Function_type_notation_must_be_parenthesized_when_used_in_an_intersection_type
886
+ var Function_type_which_lacks_return_type_annotation_implicitly_has_an_0_return_type = diagnostics.Function_type_which_lacks_return_type_annotation_implicitly_has_an_0_return_type
887
+ var Function_with_bodies_can_only_merge_with_classes_that_are_ambient = diagnostics.Function_with_bodies_can_only_merge_with_classes_that_are_ambient
888
+ var Generate_d_ts_files_from_TypeScript_and_JavaScript_files_in_your_project = diagnostics.Generate_d_ts_files_from_TypeScript_and_JavaScript_files_in_your_project
889
+ var Generate_get_and_set_accessors = diagnostics.Generate_get_and_set_accessors
890
+ var Generate_get_and_set_accessors_for_all_overriding_properties = diagnostics.Generate_get_and_set_accessors_for_all_overriding_properties
891
+ var Generate_pprof_CPU_Slashmemory_profiles_to_the_given_directory = diagnostics.Generate_pprof_CPU_Slashmemory_profiles_to_the_given_directory
892
+ var Generates_a_CPU_profile = diagnostics.Generates_a_CPU_profile
893
+ var Generates_a_sourcemap_for_each_corresponding_d_ts_file = diagnostics.Generates_a_sourcemap_for_each_corresponding_d_ts_file
894
+ var Generates_an_event_trace_and_a_list_of_types = diagnostics.Generates_an_event_trace_and_a_list_of_types
895
+ var Generates_corresponding_d_ts_file = diagnostics.Generates_corresponding_d_ts_file
896
+ var Generates_corresponding_map_file = diagnostics.Generates_corresponding_map_file
897
+ var Generator_implicitly_has_yield_type_0_Consider_supplying_a_return_type_annotation = diagnostics.Generator_implicitly_has_yield_type_0_Consider_supplying_a_return_type_annotation
898
+ var Generators_are_not_allowed_in_an_ambient_context = diagnostics.Generators_are_not_allowed_in_an_ambient_context
899
+ var Generic_type_0_requires_1_type_argument_s = diagnostics.Generic_type_0_requires_1_type_argument_s
900
+ var Generic_type_0_requires_between_1_and_2_type_arguments = diagnostics.Generic_type_0_requires_between_1_and_2_type_arguments
901
+ var Global_Error_loses_type_safety_as_untagged_errors_merge_together_in_the_Effect_failure_channel_Consider_using_a_tagged_error_and_optionally_wrapping_the_original_in_a_cause_property_effect_globalErrorInEffectFailure = diagnostics.Global_Error_loses_type_safety_as_untagged_errors_merge_together_in_the_Effect_failure_channel_Consider_using_a_tagged_error_and_optionally_wrapping_the_original_in_a_cause_property_effect_globalErrorInEffectFailure
902
+ var Global_module_exports_may_only_appear_at_top_level = diagnostics.Global_module_exports_may_only_appear_at_top_level
903
+ var Global_module_exports_may_only_appear_in_declaration_files = diagnostics.Global_module_exports_may_only_appear_in_declaration_files
904
+ var Global_module_exports_may_only_appear_in_module_files = diagnostics.Global_module_exports_may_only_appear_in_module_files
905
+ var Global_type_0_must_be_a_class_or_interface_type = diagnostics.Global_type_0_must_be_a_class_or_interface_type
906
+ var Global_type_0_must_have_1_type_parameter_s = diagnostics.Global_type_0_must_have_1_type_parameter_s
907
+ var Have_recompiles_in_incremental_and_watch_assume_that_changes_within_a_file_will_only_affect_files_directly_depending_on_it = diagnostics.Have_recompiles_in_incremental_and_watch_assume_that_changes_within_a_file_will_only_affect_files_directly_depending_on_it
908
+ var Have_recompiles_in_projects_that_use_incremental_and_watch_mode_assume_that_changes_within_a_file_will_only_affect_files_directly_depending_on_it = diagnostics.Have_recompiles_in_projects_that_use_incremental_and_watch_mode_assume_that_changes_within_a_file_will_only_affect_files_directly_depending_on_it
909
+ var Hexadecimal_digit_expected = diagnostics.Hexadecimal_digit_expected
910
+ var Identifier_0_is_redundant_since_it_equals_the_tag_value_effect_redundantSchemaTagIdentifier = diagnostics.Identifier_0_is_redundant_since_it_equals_the_tag_value_effect_redundantSchemaTagIdentifier
911
+ var Identifier_expected = diagnostics.Identifier_expected
912
+ var Identifier_expected_0_is_a_reserved_word_at_the_top_level_of_a_module = diagnostics.Identifier_expected_0_is_a_reserved_word_at_the_top_level_of_a_module
913
+ var Identifier_expected_0_is_a_reserved_word_in_strict_mode = diagnostics.Identifier_expected_0_is_a_reserved_word_in_strict_mode
914
+ var Identifier_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_strict_mode = diagnostics.Identifier_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_strict_mode
915
+ var Identifier_expected_0_is_a_reserved_word_in_strict_mode_Modules_are_automatically_in_strict_mode = diagnostics.Identifier_expected_0_is_a_reserved_word_in_strict_mode_Modules_are_automatically_in_strict_mode
916
+ var Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here = diagnostics.Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here
917
+ var Identifier_expected_esModule_is_reserved_as_an_exported_marker_when_transforming_ECMAScript_modules = diagnostics.Identifier_expected_esModule_is_reserved_as_an_exported_marker_when_transforming_ECMAScript_modules
918
+ var Identifier_or_string_literal_expected = diagnostics.Identifier_or_string_literal_expected
919
+ var Identifier_string_literal_or_number_literal_expected = diagnostics.Identifier_string_literal_or_number_literal_expected
920
+ var If_the_0_package_actually_exposes_this_module_consider_sending_a_pull_request_to_amend_https_Colon_Slash_Slashgithub_com_SlashDefinitelyTyped_SlashDefinitelyTyped_Slashtree_Slashmaster_Slashtypes_Slash_1 = diagnostics.If_the_0_package_actually_exposes_this_module_consider_sending_a_pull_request_to_amend_https_Colon_Slash_Slashgithub_com_SlashDefinitelyTyped_SlashDefinitelyTyped_Slashtree_Slashmaster_Slashtypes_Slash_1
921
+ var If_the_0_package_actually_exposes_this_module_try_adding_a_new_declaration_d_ts_file_containing_declare_module_1 = diagnostics.If_the_0_package_actually_exposes_this_module_try_adding_a_new_declaration_d_ts_file_containing_declare_module_1
922
+ var Ignore_the_tsconfig_found_and_build_with_commandline_options_and_files = diagnostics.Ignore_the_tsconfig_found_and_build_with_commandline_options_and_files
923
+ var Ignore_this_error_message = diagnostics.Ignore_this_error_message
924
+ var Ignoring_tsconfig_json_compiles_the_specified_files_with_default_compiler_options = diagnostics.Ignoring_tsconfig_json_compiles_the_specified_files_with_default_compiler_options
925
+ var Implement_all_inherited_abstract_classes = diagnostics.Implement_all_inherited_abstract_classes
926
+ var Implement_all_unimplemented_interfaces = diagnostics.Implement_all_unimplemented_interfaces
927
+ var Implement_inherited_abstract_class = diagnostics.Implement_inherited_abstract_class
928
+ var Implement_interface_0 = diagnostics.Implement_interface_0
929
+ var Implements_clause_of_exported_class_0_has_or_is_using_private_name_1 = diagnostics.Implements_clause_of_exported_class_0_has_or_is_using_private_name_1
930
+ var Implicit_conversion_of_a_symbol_to_a_string_will_fail_at_runtime_Consider_wrapping_this_expression_in_String = diagnostics.Implicit_conversion_of_a_symbol_to_a_string_will_fail_at_runtime_Consider_wrapping_this_expression_in_String
931
+ var Import_0_conflicts_with_global_value_used_in_this_file_so_must_be_declared_with_a_type_only_import_when_isolatedModules_is_enabled = diagnostics.Import_0_conflicts_with_global_value_used_in_this_file_so_must_be_declared_with_a_type_only_import_when_isolatedModules_is_enabled
932
+ var Import_0_conflicts_with_local_value_so_must_be_declared_with_a_type_only_import_when_isolatedModules_is_enabled = diagnostics.Import_0_conflicts_with_local_value_so_must_be_declared_with_a_type_only_import_when_isolatedModules_is_enabled
933
+ var Import_0_from_1 = diagnostics.Import_0_from_1
934
+ var Import_assertion_values_must_be_string_literal_expressions = diagnostics.Import_assertion_values_must_be_string_literal_expressions
935
+ var Import_assertions_are_not_allowed_on_statements_that_compile_to_CommonJS_require_calls = diagnostics.Import_assertions_are_not_allowed_on_statements_that_compile_to_CommonJS_require_calls
936
+ var Import_assertions_are_only_supported_when_the_module_option_is_set_to_esnext_node18_node20_nodenext_or_preserve = diagnostics.Import_assertions_are_only_supported_when_the_module_option_is_set_to_esnext_node18_node20_nodenext_or_preserve
937
+ var Import_assertions_cannot_be_used_with_type_only_imports_or_exports = diagnostics.Import_assertions_cannot_be_used_with_type_only_imports_or_exports
938
+ var Import_assertions_have_been_replaced_by_import_attributes_Use_with_instead_of_assert = diagnostics.Import_assertions_have_been_replaced_by_import_attributes_Use_with_instead_of_assert
939
+ var Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_ns_from_mod_import_a_from_mod_import_d_from_mod_or_another_module_format_instead = diagnostics.Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_ns_from_mod_import_a_from_mod_import_d_from_mod_or_another_module_format_instead
940
+ var Import_attribute_values_must_be_string_literal_expressions = diagnostics.Import_attribute_values_must_be_string_literal_expressions
941
+ var Import_attributes_are_not_allowed_on_statements_that_compile_to_CommonJS_require_calls = diagnostics.Import_attributes_are_not_allowed_on_statements_that_compile_to_CommonJS_require_calls
942
+ var Import_attributes_are_only_supported_when_the_module_option_is_set_to_esnext_node18_node20_nodenext_or_preserve = diagnostics.Import_attributes_are_only_supported_when_the_module_option_is_set_to_esnext_node18_node20_nodenext_or_preserve
943
+ var Import_attributes_cannot_be_used_with_type_only_imports_or_exports = diagnostics.Import_attributes_cannot_be_used_with_type_only_imports_or_exports
944
+ var Import_declaration_0_is_using_private_name_1 = diagnostics.Import_declaration_0_is_using_private_name_1
945
+ var Import_declaration_conflicts_with_local_declaration_of_0 = diagnostics.Import_declaration_conflicts_with_local_declaration_of_0
946
+ var Import_declarations_in_a_namespace_cannot_reference_a_module = diagnostics.Import_declarations_in_a_namespace_cannot_reference_a_module
947
+ var Import_emit_helpers_from_tslib = diagnostics.Import_emit_helpers_from_tslib
948
+ var Import_may_be_converted_to_a_default_import = diagnostics.Import_may_be_converted_to_a_default_import
949
+ var Import_name_cannot_be_0 = diagnostics.Import_name_cannot_be_0
950
+ var Import_or_export_declaration_in_an_ambient_module_declaration_cannot_reference_module_through_relative_module_name = diagnostics.Import_or_export_declaration_in_an_ambient_module_declaration_cannot_reference_module_through_relative_module_name
951
+ var Import_specifier_0_does_not_exist_in_package_json_scope_at_path_1 = diagnostics.Import_specifier_0_does_not_exist_in_package_json_scope_at_path_1
952
+ var Imported_via_0_from_file_1 = diagnostics.Imported_via_0_from_file_1
953
+ var Imported_via_0_from_file_1_to_import_importHelpers_as_specified_in_compilerOptions = diagnostics.Imported_via_0_from_file_1_to_import_importHelpers_as_specified_in_compilerOptions
954
+ var Imported_via_0_from_file_1_to_import_jsx_and_jsxs_factory_functions = diagnostics.Imported_via_0_from_file_1_to_import_jsx_and_jsxs_factory_functions
955
+ var Imported_via_0_from_file_1_with_packageId_2 = diagnostics.Imported_via_0_from_file_1_with_packageId_2
956
+ var Imported_via_0_from_file_1_with_packageId_2_to_import_importHelpers_as_specified_in_compilerOptions = diagnostics.Imported_via_0_from_file_1_with_packageId_2_to_import_importHelpers_as_specified_in_compilerOptions
957
+ var Imported_via_0_from_file_1_with_packageId_2_to_import_jsx_and_jsxs_factory_functions = diagnostics.Imported_via_0_from_file_1_with_packageId_2_to_import_jsx_and_jsxs_factory_functions
958
+ var Importing_a_JSON_file_into_an_ECMAScript_module_requires_a_type_Colon_json_import_attribute_when_module_is_set_to_0 = diagnostics.Importing_a_JSON_file_into_an_ECMAScript_module_requires_a_type_Colon_json_import_attribute_when_module_is_set_to_0
959
+ var Importing_from_barrel_module_0_is_not_allowed_effect_importFromBarrel = diagnostics.Importing_from_barrel_module_0_is_not_allowed_effect_importFromBarrel
960
+ var Imports_are_not_permitted_in_module_augmentations_Consider_moving_them_to_the_enclosing_external_module = diagnostics.Imports_are_not_permitted_in_module_augmentations_Consider_moving_them_to_the_enclosing_external_module
961
+ var In_ambient_enum_declarations_member_initializer_must_be_constant_expression = diagnostics.In_ambient_enum_declarations_member_initializer_must_be_constant_expression
962
+ var In_an_enum_with_multiple_declarations_only_one_declaration_can_omit_an_initializer_for_its_first_enum_element = diagnostics.In_an_enum_with_multiple_declarations_only_one_declaration_can_omit_an_initializer_for_its_first_enum_element
963
+ var Include_a_list_of_files_This_does_not_support_glob_patterns_as_opposed_to_include = diagnostics.Include_a_list_of_files_This_does_not_support_glob_patterns_as_opposed_to_include
964
+ var Include_modules_imported_with_json_extension = diagnostics.Include_modules_imported_with_json_extension
965
+ var Include_source_code_in_the_sourcemaps_inside_the_emitted_JavaScript = diagnostics.Include_source_code_in_the_sourcemaps_inside_the_emitted_JavaScript
966
+ var Include_sourcemap_files_inside_the_emitted_JavaScript = diagnostics.Include_sourcemap_files_inside_the_emitted_JavaScript
967
+ var Includes_imports_of_types_referenced_by_0 = diagnostics.Includes_imports_of_types_referenced_by_0
968
+ var Including_watch_w_will_start_watching_the_current_project_for_the_file_changes_Once_set_you_can_config_watch_mode_with_Colon = diagnostics.Including_watch_w_will_start_watching_the_current_project_for_the_file_changes_Once_set_you_can_config_watch_mode_with_Colon
969
+ var Incomplete_quantifier_Digit_expected = diagnostics.Incomplete_quantifier_Digit_expected
970
+ var Index_signature_for_type_0_is_missing_in_type_1 = diagnostics.Index_signature_for_type_0_is_missing_in_type_1
971
+ var Index_signature_in_type_0_only_permits_reading = diagnostics.Index_signature_in_type_0_only_permits_reading
972
+ var Individual_declarations_in_merged_declaration_0_must_be_all_exported_or_all_local = diagnostics.Individual_declarations_in_merged_declaration_0_must_be_all_exported_or_all_local
973
+ var Infer_all_types_from_usage = diagnostics.Infer_all_types_from_usage
974
+ var Infer_function_return_type = diagnostics.Infer_function_return_type
975
+ var Infer_parameter_types_from_usage = diagnostics.Infer_parameter_types_from_usage
976
+ var Infer_this_type_of_0_from_usage = diagnostics.Infer_this_type_of_0_from_usage
977
+ var Infer_type_of_0_from_usage = diagnostics.Infer_type_of_0_from_usage
978
+ var Inference_from_class_expressions_is_not_supported_with_isolatedDeclarations = diagnostics.Inference_from_class_expressions_is_not_supported_with_isolatedDeclarations
979
+ var Initialize_property_0_in_the_constructor = diagnostics.Initialize_property_0_in_the_constructor
980
+ var Initialize_static_property_0 = diagnostics.Initialize_static_property_0
981
+ var Initializer_for_property_0 = diagnostics.Initializer_for_property_0
982
+ var Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor = diagnostics.Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor
983
+ var Initializers_are_not_allowed_in_ambient_contexts = diagnostics.Initializers_are_not_allowed_in_ambient_contexts
984
+ var Initializes_a_TypeScript_project_and_creates_a_tsconfig_json_file = diagnostics.Initializes_a_TypeScript_project_and_creates_a_tsconfig_json_file
985
+ var Inline_variable = diagnostics.Inline_variable
986
+ var Insert_command_line_options_and_files_from_a_file = diagnostics.Insert_command_line_options_and_files_from_a_file
987
+ var Inside_this_Effect_generator_effect_missingStarInYieldEffectGen = diagnostics.Inside_this_Effect_generator_effect_missingStarInYieldEffectGen
988
+ var Install_0 = diagnostics.Install_0
989
+ var Install_all_missing_types_packages = diagnostics.Install_all_missing_types_packages
990
+ var Installing_types_for_0 = diagnostics.Installing_types_for_0
991
+ var Interface_0_cannot_simultaneously_extend_types_1_and_2 = diagnostics.Interface_0_cannot_simultaneously_extend_types_1_and_2
992
+ var Interface_0_incorrectly_extends_interface_1 = diagnostics.Interface_0_incorrectly_extends_interface_1
993
+ var Interface_declaration_cannot_have_implements_clause = diagnostics.Interface_declaration_cannot_have_implements_clause
994
+ var Interface_must_be_given_a_name = diagnostics.Interface_must_be_given_a_name
995
+ var Interface_name_cannot_be_0 = diagnostics.Interface_name_cannot_be_0
996
+ var Interop_Constraints = diagnostics.Interop_Constraints
997
+ var Interpret_optional_property_types_as_written_rather_than_adding_undefined = diagnostics.Interpret_optional_property_types_as_written_rather_than_adding_undefined
998
+ var Invalid_character = diagnostics.Invalid_character
999
+ var Invalid_import_specifier_0_has_no_possible_resolutions = diagnostics.Invalid_import_specifier_0_has_no_possible_resolutions
1000
+ var Invalid_module_name_in_augmentation_Module_0_resolves_to_an_untyped_module_at_1_which_cannot_be_augmented = diagnostics.Invalid_module_name_in_augmentation_Module_0_resolves_to_an_untyped_module_at_1_which_cannot_be_augmented
1001
+ var Invalid_module_name_in_augmentation_module_0_cannot_be_found = diagnostics.Invalid_module_name_in_augmentation_module_0_cannot_be_found
1002
+ var Invalid_optional_chain_from_new_expression_Did_you_mean_to_call_0 = diagnostics.Invalid_optional_chain_from_new_expression_Did_you_mean_to_call_0
1003
+ var Invalid_reference_directive_syntax = diagnostics.Invalid_reference_directive_syntax
1004
+ var Invalid_syntax_in_decorator = diagnostics.Invalid_syntax_in_decorator
1005
+ var Invalid_use_of_0_It_cannot_be_used_inside_a_class_static_block = diagnostics.Invalid_use_of_0_It_cannot_be_used_inside_a_class_static_block
1006
+ var Invalid_use_of_0_Modules_are_automatically_in_strict_mode = diagnostics.Invalid_use_of_0_Modules_are_automatically_in_strict_mode
1007
+ var Invalid_use_of_0_in_strict_mode = diagnostics.Invalid_use_of_0_in_strict_mode
1008
+ var Invalid_value_for_ignoreDeprecations = diagnostics.Invalid_value_for_ignoreDeprecations
1009
+ var Invalid_value_for_jsxFactory_0_is_not_a_valid_identifier_or_qualified_name = diagnostics.Invalid_value_for_jsxFactory_0_is_not_a_valid_identifier_or_qualified_name
1010
+ var Invalid_value_for_jsxFragmentFactory_0_is_not_a_valid_identifier_or_qualified_name = diagnostics.Invalid_value_for_jsxFragmentFactory_0_is_not_a_valid_identifier_or_qualified_name
1011
+ var Invalid_value_for_reactNamespace_0_is_not_a_valid_identifier = diagnostics.Invalid_value_for_reactNamespace_0_is_not_a_valid_identifier
1012
+ var It_is_likely_that_you_are_missing_a_comma_to_separate_these_two_template_expressions_They_form_a_tagged_template_expression_which_cannot_be_invoked = diagnostics.It_is_likely_that_you_are_missing_a_comma_to_separate_these_two_template_expressions_They_form_a_tagged_template_expression_which_cannot_be_invoked
1013
+ var Its_element_type_0_is_not_a_valid_JSX_element = diagnostics.Its_element_type_0_is_not_a_valid_JSX_element
1014
+ var Its_instance_type_0_is_not_a_valid_JSX_element = diagnostics.Its_instance_type_0_is_not_a_valid_JSX_element
1015
+ var Its_return_type_0_is_not_a_valid_JSX_element = diagnostics.Its_return_type_0_is_not_a_valid_JSX_element
1016
+ var Its_type_0_is_not_a_valid_JSX_element_type = diagnostics.Its_type_0_is_not_a_valid_JSX_element_type
1017
+ var JSDoc_0_1_does_not_match_the_extends_2_clause = diagnostics.JSDoc_0_1_does_not_match_the_extends_2_clause
1018
+ var JSDoc_0_is_not_attached_to_a_class = diagnostics.JSDoc_0_is_not_attached_to_a_class
1019
+ var JSDoc_may_only_appear_in_the_last_parameter_of_a_signature = diagnostics.JSDoc_may_only_appear_in_the_last_parameter_of_a_signature
1020
+ var JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name = diagnostics.JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name
1021
+ var JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name_It_would_match_arguments_if_it_had_an_array_type = diagnostics.JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name_It_would_match_arguments_if_it_had_an_array_type
1022
+ var JSDoc_typedef_may_be_converted_to_TypeScript_type = diagnostics.JSDoc_typedef_may_be_converted_to_TypeScript_type
1023
+ var JSDoc_typedef_tag_should_either_have_a_type_annotation_or_be_followed_by_property_or_member_tags = diagnostics.JSDoc_typedef_tag_should_either_have_a_type_annotation_or_be_followed_by_property_or_member_tags
1024
+ var JSDoc_typedefs_may_be_converted_to_TypeScript_types = diagnostics.JSDoc_typedefs_may_be_converted_to_TypeScript_types
1025
+ var JSDoc_types_can_only_be_used_inside_documentation_comments = diagnostics.JSDoc_types_can_only_be_used_inside_documentation_comments
1026
+ var JSDoc_types_may_be_moved_to_TypeScript_types = diagnostics.JSDoc_types_may_be_moved_to_TypeScript_types
1027
+ var JSX_attributes_must_only_be_assigned_a_non_empty_expression = diagnostics.JSX_attributes_must_only_be_assigned_a_non_empty_expression
1028
+ var JSX_element_0_has_no_corresponding_closing_tag = diagnostics.JSX_element_0_has_no_corresponding_closing_tag
1029
+ var JSX_element_class_does_not_support_attributes_because_it_does_not_have_a_0_property = diagnostics.JSX_element_class_does_not_support_attributes_because_it_does_not_have_a_0_property
1030
+ var JSX_element_implicitly_has_type_any_because_no_interface_JSX_0_exists = diagnostics.JSX_element_implicitly_has_type_any_because_no_interface_JSX_0_exists
1031
+ var JSX_element_implicitly_has_type_any_because_the_global_type_JSX_Element_does_not_exist = diagnostics.JSX_element_implicitly_has_type_any_because_the_global_type_JSX_Element_does_not_exist
1032
+ var JSX_element_type_0_does_not_have_any_construct_or_call_signatures = diagnostics.JSX_element_type_0_does_not_have_any_construct_or_call_signatures
1033
+ var JSX_elements_cannot_have_multiple_attributes_with_the_same_name = diagnostics.JSX_elements_cannot_have_multiple_attributes_with_the_same_name
1034
+ var JSX_expressions_may_not_use_the_comma_operator_Did_you_mean_to_write_an_array = diagnostics.JSX_expressions_may_not_use_the_comma_operator_Did_you_mean_to_write_an_array
1035
+ var JSX_expressions_must_have_one_parent_element = diagnostics.JSX_expressions_must_have_one_parent_element
1036
+ var JSX_fragment_has_no_corresponding_closing_tag = diagnostics.JSX_fragment_has_no_corresponding_closing_tag
1037
+ var JSX_property_access_expressions_cannot_include_JSX_namespace_names = diagnostics.JSX_property_access_expressions_cannot_include_JSX_namespace_names
1038
+ var JSX_spread_child_must_be_an_array_type = diagnostics.JSX_spread_child_must_be_an_array_type
1039
+ var JavaScript_Support = diagnostics.JavaScript_Support
1040
+ var Jump_target_cannot_cross_function_boundary = diagnostics.Jump_target_cannot_cross_function_boundary
1041
+ var KIND = diagnostics.KIND
1042
+ type Key = diagnostics.Key
1043
+ var Keywords_cannot_contain_escape_characters = diagnostics.Keywords_cannot_contain_escape_characters
1044
+ var LOCATION = diagnostics.LOCATION
1045
+ var Language_and_Environment = diagnostics.Language_and_Environment
1046
+ var Left_side_of_comma_operator_is_unused_and_has_no_side_effects = diagnostics.Left_side_of_comma_operator_is_unused_and_has_no_side_effects
1047
+ var Library_0_specified_in_compilerOptions = diagnostics.Library_0_specified_in_compilerOptions
1048
+ var Library_referenced_via_0_from_file_1 = diagnostics.Library_referenced_via_0_from_file_1
1049
+ var Line_break_not_permitted_here = diagnostics.Line_break_not_permitted_here
1050
+ var Line_terminator_not_permitted_before_arrow = diagnostics.Line_terminator_not_permitted_before_arrow
1051
+ var List_of_file_name_suffixes_to_search_when_resolving_a_module = diagnostics.List_of_file_name_suffixes_to_search_when_resolving_a_module
1052
+ var List_of_folders_to_include_type_definitions_from = diagnostics.List_of_folders_to_include_type_definitions_from
1053
+ var List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime = diagnostics.List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime
1054
+ var Loading = diagnostics.Loading
1055
+ var Loading_0_from_the_root_dir_1_candidate_location_2 = diagnostics.Loading_0_from_the_root_dir_1_candidate_location_2
1056
+ var Loading_module_0_from_node_modules_folder_target_file_types_Colon_1 = diagnostics.Loading_module_0_from_node_modules_folder_target_file_types_Colon_1
1057
+ var Loading_module_as_file_Slash_folder_candidate_module_location_0_target_file_types_Colon_1 = diagnostics.Loading_module_as_file_Slash_folder_candidate_module_location_0_target_file_types_Colon_1
1058
+ var Locale_must_be_an_IETF_BCP_47_language_tag_Examples_Colon_0_1 = diagnostics.Locale_must_be_an_IETF_BCP_47_language_tag_Examples_Colon_0_1
1059
+ //go:linkname Localize github.com/microsoft/typescript-go/internal/diagnostics.Localize
1060
+ func Localize(locale locale.Locale, message *diagnostics.Message, key diagnostics.Key, args ...string) string
1061
+ var Log_paths_used_during_the_moduleResolution_process = diagnostics.Log_paths_used_during_the_moduleResolution_process
1062
+ var Longest_matching_prefix_for_0_is_1 = diagnostics.Longest_matching_prefix_for_0_is_1
1063
+ var Looking_up_in_node_modules_folder_initial_location_0 = diagnostics.Looking_up_in_node_modules_folder_initial_location_0
1064
+ var Make_all_super_calls_the_first_statement_in_their_constructor = diagnostics.Make_all_super_calls_the_first_statement_in_their_constructor
1065
+ var Make_keyof_only_return_strings_instead_of_string_numbers_or_symbols_Legacy_option = diagnostics.Make_keyof_only_return_strings_instead_of_string_numbers_or_symbols_Legacy_option
1066
+ var Make_super_call_the_first_statement_in_the_constructor = diagnostics.Make_super_call_the_first_statement_in_the_constructor
1067
+ var Mapped_object_type_implicitly_has_an_any_template_type = diagnostics.Mapped_object_type_implicitly_has_an_any_template_type
1068
+ var Mark_array_literal_as_const = diagnostics.Mark_array_literal_as_const
1069
+ var Matched_0_condition_1 = diagnostics.Matched_0_condition_1
1070
+ var Matched_by_default_include_pattern_Asterisk_Asterisk_Slash_Asterisk = diagnostics.Matched_by_default_include_pattern_Asterisk_Asterisk_Slash_Asterisk
1071
+ var Matched_by_include_pattern_0_in_1 = diagnostics.Matched_by_include_pattern_0_in_1
1072
+ var Member_0_implicitly_has_an_1_type = diagnostics.Member_0_implicitly_has_an_1_type
1073
+ var Member_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage = diagnostics.Member_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage
1074
+ var Merge_conflict_marker_encountered = diagnostics.Merge_conflict_marker_encountered
1075
+ var Merged_declaration_0_cannot_include_a_default_export_declaration_Consider_adding_a_separate_export_default_0_declaration_instead = diagnostics.Merged_declaration_0_cannot_include_a_default_export_declaration_Consider_adding_a_separate_export_default_0_declaration_instead
1076
+ type Message = diagnostics.Message
1077
+ var Meta_property_0_is_only_allowed_in_the_body_of_a_function_declaration_function_expression_or_constructor = diagnostics.Meta_property_0_is_only_allowed_in_the_body_of_a_function_declaration_function_expression_or_constructor
1078
+ var Method_0_cannot_have_an_implementation_because_it_is_marked_abstract = diagnostics.Method_0_cannot_have_an_implementation_because_it_is_marked_abstract
1079
+ var Method_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2 = diagnostics.Method_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2
1080
+ var Method_0_of_exported_interface_has_or_is_using_private_name_1 = diagnostics.Method_0_of_exported_interface_has_or_is_using_private_name_1
1081
+ var Method_must_have_an_explicit_return_type_annotation_with_isolatedDeclarations = diagnostics.Method_must_have_an_explicit_return_type_annotation_with_isolatedDeclarations
1082
+ var Method_not_implemented = diagnostics.Method_not_implemented
1083
+ var Methods_of_this_Service_require_0_from_every_caller_The_requirement_becomes_part_of_the_public_service_surface_instead_of_remaining_internal_to_Layer_implementation_Resolve_these_dependencies_at_Layer_creation_and_provide_them_to_each_method_so_the_service_s_type_reflects_its_purpose_not_its_implementation_To_suppress_this_diagnostic_for_specific_dependency_types_that_are_intentionally_passed_through_e_g_HttpServerRequest_add_effect_leakable_service_JSDoc_to_their_interface_declarations_or_to_this_service_by_adding_a_effect_expect_leaking_0_JSDoc_More_info_and_examples_at_https_Colon_Slash_Slasheffect_website_Slashdocs_Slashrequirements_management_Slashlayers_Slash_avoiding_requirement_leakage_effect_leakingRequirements = diagnostics.Methods_of_this_Service_require_0_from_every_caller_The_requirement_becomes_part_of_the_public_service_surface_instead_of_remaining_internal_to_Layer_implementation_Resolve_these_dependencies_at_Layer_creation_and_provide_them_to_each_method_so_the_service_s_type_reflects_its_purpose_not_its_implementation_To_suppress_this_diagnostic_for_specific_dependency_types_that_are_intentionally_passed_through_e_g_HttpServerRequest_add_effect_leakable_service_JSDoc_to_their_interface_declarations_or_to_this_service_by_adding_a_effect_expect_leaking_0_JSDoc_More_info_and_examples_at_https_Colon_Slash_Slasheffect_website_Slashdocs_Slashrequirements_management_Slashlayers_Slash_avoiding_requirement_leakage_effect_leakingRequirements
1084
+ var Missing_0_in_the_expected_Layer_context_effect_missingLayerContext = diagnostics.Missing_0_in_the_expected_Layer_context_effect_missingLayerContext
1085
+ var Missing_errors_0_in_the_expected_Effect_type_effect_missingEffectError = diagnostics.Missing_errors_0_in_the_expected_Effect_type_effect_missingEffectError
1086
+ var Modifiers_cannot_appear_here = diagnostics.Modifiers_cannot_appear_here
1087
+ var Module_0_can_only_be_default_imported_using_the_1_flag = diagnostics.Module_0_can_only_be_default_imported_using_the_1_flag
1088
+ var Module_0_cannot_be_imported_using_this_construct_The_specifier_only_resolves_to_an_ES_module_which_cannot_be_imported_with_require_Use_an_ECMAScript_import_instead = diagnostics.Module_0_cannot_be_imported_using_this_construct_The_specifier_only_resolves_to_an_ES_module_which_cannot_be_imported_with_require_Use_an_ECMAScript_import_instead
1089
+ var Module_0_declares_1_locally_but_it_is_exported_as_2 = diagnostics.Module_0_declares_1_locally_but_it_is_exported_as_2
1090
+ var Module_0_declares_1_locally_but_it_is_not_exported = diagnostics.Module_0_declares_1_locally_but_it_is_not_exported
1091
+ var Module_0_does_not_refer_to_a_type_but_is_used_as_a_type_here_Did_you_mean_typeof_import_0 = diagnostics.Module_0_does_not_refer_to_a_type_but_is_used_as_a_type_here_Did_you_mean_typeof_import_0
1092
+ var Module_0_does_not_refer_to_a_value_but_is_used_as_a_value_here = diagnostics.Module_0_does_not_refer_to_a_value_but_is_used_as_a_value_here
1093
+ var Module_0_has_already_exported_a_member_named_1_Consider_explicitly_re_exporting_to_resolve_the_ambiguity = diagnostics.Module_0_has_already_exported_a_member_named_1_Consider_explicitly_re_exporting_to_resolve_the_ambiguity
1094
+ var Module_0_has_no_default_export = diagnostics.Module_0_has_no_default_export
1095
+ var Module_0_has_no_default_export_Did_you_mean_to_use_import_1_from_0_instead = diagnostics.Module_0_has_no_default_export_Did_you_mean_to_use_import_1_from_0_instead
1096
+ var Module_0_has_no_exported_member_1 = diagnostics.Module_0_has_no_exported_member_1
1097
+ var Module_0_has_no_exported_member_1_Did_you_mean_to_use_import_1_from_0_instead = diagnostics.Module_0_has_no_exported_member_1_Did_you_mean_to_use_import_1_from_0_instead
1098
+ var Module_0_is_hidden_by_a_local_declaration_with_the_same_name = diagnostics.Module_0_is_hidden_by_a_local_declaration_with_the_same_name
1099
+ var Module_0_uses_export_and_cannot_be_used_with_export_Asterisk = diagnostics.Module_0_uses_export_and_cannot_be_used_with_export_Asterisk
1100
+ var Module_0_was_resolved_as_locally_declared_ambient_module_in_file_1 = diagnostics.Module_0_was_resolved_as_locally_declared_ambient_module_in_file_1
1101
+ var Module_0_was_resolved_to_1_but_allowArbitraryExtensions_is_not_set = diagnostics.Module_0_was_resolved_to_1_but_allowArbitraryExtensions_is_not_set
1102
+ var Module_0_was_resolved_to_1_but_jsx_is_not_set = diagnostics.Module_0_was_resolved_to_1_but_jsx_is_not_set
1103
+ var Module_0_was_resolved_to_1_but_resolveJsonModule_is_not_used = diagnostics.Module_0_was_resolved_to_1_but_resolveJsonModule_is_not_used
1104
+ var Module_declaration_names_may_only_use_or_quoted_strings = diagnostics.Module_declaration_names_may_only_use_or_quoted_strings
1105
+ var Module_name_0_matched_pattern_1 = diagnostics.Module_name_0_matched_pattern_1
1106
+ var Module_name_0_was_not_resolved = diagnostics.Module_name_0_was_not_resolved
1107
+ var Module_name_0_was_successfully_resolved_to_1 = diagnostics.Module_name_0_was_successfully_resolved_to_1
1108
+ var Module_name_0_was_successfully_resolved_to_1_with_Package_ID_2 = diagnostics.Module_name_0_was_successfully_resolved_to_1_with_Package_ID_2
1109
+ var Module_resolution_kind_is_not_specified_using_0 = diagnostics.Module_resolution_kind_is_not_specified_using_0
1110
+ var Module_resolution_using_rootDirs_has_failed = diagnostics.Module_resolution_using_rootDirs_has_failed
1111
+ var Modules = diagnostics.Modules
1112
+ var Move_labeled_tuple_element_modifiers_to_labels = diagnostics.Move_labeled_tuple_element_modifiers_to_labels
1113
+ var Move_the_expression_in_default_export_to_a_variable_and_add_a_type_annotation_to_it = diagnostics.Move_the_expression_in_default_export_to_a_variable_and_add_a_type_annotation_to_it
1114
+ var Move_to_a_new_file = diagnostics.Move_to_a_new_file
1115
+ var Move_to_file = diagnostics.Move_to_file
1116
+ var Multiple_consecutive_numeric_separators_are_not_permitted = diagnostics.Multiple_consecutive_numeric_separators_are_not_permitted
1117
+ var Multiple_constructor_implementations_are_not_allowed = diagnostics.Multiple_constructor_implementations_are_not_allowed
1118
+ var Multiple_module_exports_assignments_cannot_be_serialized_for_declaration_emit = diagnostics.Multiple_module_exports_assignments_cannot_be_serialized_for_declaration_emit
1119
+ var Multiple_versions_of_package_0_were_detected_Colon_1_Package_duplication_can_change_runtime_identity_and_type_equality_across_Effect_modules_If_this_is_intentional_set_the_LSP_config_allowedDuplicatedPackages_to_2_effect_duplicatePackage = diagnostics.Multiple_versions_of_package_0_were_detected_Colon_1_Package_duplication_can_change_runtime_identity_and_type_equality_across_Effect_modules_If_this_is_intentional_set_the_LSP_config_allowedDuplicatedPackages_to_2_effect_duplicatePackage
1120
+ var NEWLINE = diagnostics.NEWLINE
1121
+ var Name_is_not_valid = diagnostics.Name_is_not_valid
1122
+ var Named_capturing_groups_are_only_available_when_targeting_ES2018_or_later = diagnostics.Named_capturing_groups_are_only_available_when_targeting_ES2018_or_later
1123
+ var Named_capturing_groups_with_the_same_name_must_be_mutually_exclusive_to_each_other = diagnostics.Named_capturing_groups_with_the_same_name_must_be_mutually_exclusive_to_each_other
1124
+ var Named_imports_are_not_allowed_in_a_deferred_import = diagnostics.Named_imports_are_not_allowed_in_a_deferred_import
1125
+ var Named_imports_from_a_JSON_file_into_an_ECMAScript_module_are_not_allowed_when_module_is_set_to_0 = diagnostics.Named_imports_from_a_JSON_file_into_an_ECMAScript_module_are_not_allowed_when_module_is_set_to_0
1126
+ var Named_property_0_of_types_1_and_2_are_not_identical = diagnostics.Named_property_0_of_types_1_and_2_are_not_identical
1127
+ var Namespace_0_has_no_exported_member_1 = diagnostics.Namespace_0_has_no_exported_member_1
1128
+ var Namespace_must_be_given_a_name = diagnostics.Namespace_must_be_given_a_name
1129
+ var Namespace_name_cannot_be_0 = diagnostics.Namespace_name_cannot_be_0
1130
+ var Namespaces_are_not_allowed_in_global_script_files_when_0_is_enabled_If_this_file_is_not_intended_to_be_a_global_script_set_moduleDetection_to_force_or_add_an_empty_export_statement = diagnostics.Namespaces_are_not_allowed_in_global_script_files_when_0_is_enabled_If_this_file_is_not_intended_to_be_a_global_script_set_moduleDetection_to_force_or_add_an_empty_export_statement
1131
+ var Neither_decorators_nor_modifiers_may_be_applied_to_this_parameters = diagnostics.Neither_decorators_nor_modifiers_may_be_applied_to_this_parameters
1132
+ var Nested_CommonJS_export_constructs_cannot_be_serialized_for_declaration_emit = diagnostics.Nested_CommonJS_export_constructs_cannot_be_serialized_for_declaration_emit
1133
+ var No_base_constructor_has_the_specified_number_of_type_arguments = diagnostics.No_base_constructor_has_the_specified_number_of_type_arguments
1134
+ var No_constituent_of_type_0_is_callable = diagnostics.No_constituent_of_type_0_is_callable
1135
+ var No_constituent_of_type_0_is_constructable = diagnostics.No_constituent_of_type_0_is_constructable
1136
+ var No_index_signature_with_a_parameter_of_type_0_was_found_on_type_1 = diagnostics.No_index_signature_with_a_parameter_of_type_0_was_found_on_type_1
1137
+ var No_inputs_were_found_in_config_file_0_Specified_include_paths_were_1_and_exclude_paths_were_2 = diagnostics.No_inputs_were_found_in_config_file_0_Specified_include_paths_were_1_and_exclude_paths_were_2
1138
+ var No_longer_supported_In_early_versions_manually_set_the_text_encoding_for_reading_files = diagnostics.No_longer_supported_In_early_versions_manually_set_the_text_encoding_for_reading_files
1139
+ var No_overload_expects_0_arguments_but_overloads_do_exist_that_expect_either_1_or_2_arguments = diagnostics.No_overload_expects_0_arguments_but_overloads_do_exist_that_expect_either_1_or_2_arguments
1140
+ var No_overload_expects_0_type_arguments_but_overloads_do_exist_that_expect_either_1_or_2_type_arguments = diagnostics.No_overload_expects_0_type_arguments_but_overloads_do_exist_that_expect_either_1_or_2_type_arguments
1141
+ var No_overload_matches_this_call = diagnostics.No_overload_matches_this_call
1142
+ var No_type_could_be_extracted_from_this_type_node = diagnostics.No_type_could_be_extracted_from_this_type_node
1143
+ var No_value_exists_in_scope_for_the_shorthand_property_0_Either_declare_one_or_provide_an_initializer = diagnostics.No_value_exists_in_scope_for_the_shorthand_property_0_Either_declare_one_or_provide_an_initializer
1144
+ var Non_abstract_class_0_does_not_implement_inherited_abstract_member_1_from_class_2 = diagnostics.Non_abstract_class_0_does_not_implement_inherited_abstract_member_1_from_class_2
1145
+ var Non_abstract_class_0_is_missing_implementations_for_the_following_members_of_1_Colon_2 = diagnostics.Non_abstract_class_0_is_missing_implementations_for_the_following_members_of_1_Colon_2
1146
+ var Non_abstract_class_0_is_missing_implementations_for_the_following_members_of_1_Colon_2_and_3_more = diagnostics.Non_abstract_class_0_is_missing_implementations_for_the_following_members_of_1_Colon_2_and_3_more
1147
+ var Non_abstract_class_expression_does_not_implement_inherited_abstract_member_0_from_class_1 = diagnostics.Non_abstract_class_expression_does_not_implement_inherited_abstract_member_0_from_class_1
1148
+ var Non_abstract_class_expression_is_missing_implementations_for_the_following_members_of_0_Colon_1 = diagnostics.Non_abstract_class_expression_is_missing_implementations_for_the_following_members_of_0_Colon_1
1149
+ var Non_abstract_class_expression_is_missing_implementations_for_the_following_members_of_0_Colon_1_and_2_more = diagnostics.Non_abstract_class_expression_is_missing_implementations_for_the_following_members_of_0_Colon_1_and_2_more
1150
+ var Non_null_assertions_can_only_be_used_in_TypeScript_files = diagnostics.Non_null_assertions_can_only_be_used_in_TypeScript_files
1151
+ var Non_relative_paths_are_not_allowed_Did_you_forget_a_leading_Slash = diagnostics.Non_relative_paths_are_not_allowed_Did_you_forget_a_leading_Slash
1152
+ var Non_simple_parameter_declared_here = diagnostics.Non_simple_parameter_declared_here
1153
+ var Not_all_code_paths_return_a_value = diagnostics.Not_all_code_paths_return_a_value
1154
+ var Not_all_constituents_of_type_0_are_callable = diagnostics.Not_all_constituents_of_type_0_are_callable
1155
+ var Not_all_constituents_of_type_0_are_constructable = diagnostics.Not_all_constituents_of_type_0_are_constructable
1156
+ var Numbers_out_of_order_in_quantifier = diagnostics.Numbers_out_of_order_in_quantifier
1157
+ var Numeric_literals_with_absolute_values_equal_to_2_53_or_greater_are_too_large_to_be_represented_accurately_as_integers = diagnostics.Numeric_literals_with_absolute_values_equal_to_2_53_or_greater_are_too_large_to_be_represented_accurately_as_integers
1158
+ var Numeric_separators_are_not_allowed_here = diagnostics.Numeric_separators_are_not_allowed_here
1159
+ var Object_is_of_type_unknown = diagnostics.Object_is_of_type_unknown
1160
+ var Object_is_possibly_null = diagnostics.Object_is_possibly_null
1161
+ var Object_is_possibly_null_or_undefined = diagnostics.Object_is_possibly_null_or_undefined
1162
+ var Object_is_possibly_undefined = diagnostics.Object_is_possibly_undefined
1163
+ var Object_literal_may_only_specify_known_properties_and_0_does_not_exist_in_type_1 = diagnostics.Object_literal_may_only_specify_known_properties_and_0_does_not_exist_in_type_1
1164
+ var Object_literal_may_only_specify_known_properties_but_0_does_not_exist_in_type_1_Did_you_mean_to_write_2 = diagnostics.Object_literal_may_only_specify_known_properties_but_0_does_not_exist_in_type_1_Did_you_mean_to_write_2
1165
+ var Object_literal_s_property_0_implicitly_has_an_1_type = diagnostics.Object_literal_s_property_0_implicitly_has_an_1_type
1166
+ var Objects_that_contain_shorthand_properties_can_t_be_inferred_with_isolatedDeclarations = diagnostics.Objects_that_contain_shorthand_properties_can_t_be_inferred_with_isolatedDeclarations
1167
+ var Objects_that_contain_spread_assignments_can_t_be_inferred_with_isolatedDeclarations = diagnostics.Objects_that_contain_spread_assignments_can_t_be_inferred_with_isolatedDeclarations
1168
+ var Octal_digit_expected = diagnostics.Octal_digit_expected
1169
+ var Octal_escape_sequences_and_backreferences_are_not_allowed_in_a_character_class_If_this_was_intended_as_an_escape_sequence_use_the_syntax_0_instead = diagnostics.Octal_escape_sequences_and_backreferences_are_not_allowed_in_a_character_class_If_this_was_intended_as_an_escape_sequence_use_the_syntax_0_instead
1170
+ var Octal_escape_sequences_are_not_allowed_Use_the_syntax_0 = diagnostics.Octal_escape_sequences_are_not_allowed_Use_the_syntax_0
1171
+ var Octal_literals_are_not_allowed_Use_the_syntax_0 = diagnostics.Octal_literals_are_not_allowed_Use_the_syntax_0
1172
+ var One_value_of_0_1_is_the_string_2_and_the_other_is_assumed_to_be_an_unknown_numeric_value = diagnostics.One_value_of_0_1_is_the_string_2_and_the_other_is_assumed_to_be_an_unknown_numeric_value
1173
+ var Only_a_single_variable_declaration_is_allowed_in_a_for_in_statement = diagnostics.Only_a_single_variable_declaration_is_allowed_in_a_for_in_statement
1174
+ var Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement = diagnostics.Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement
1175
+ var Only_a_void_function_can_be_called_with_the_new_keyword = diagnostics.Only_a_void_function_can_be_called_with_the_new_keyword
1176
+ var Only_ambient_modules_can_use_quoted_names = diagnostics.Only_ambient_modules_can_use_quoted_names
1177
+ var Only_amd_and_system_modules_are_supported_alongside_0 = diagnostics.Only_amd_and_system_modules_are_supported_alongside_0
1178
+ var Only_const_arrays_can_be_inferred_with_isolatedDeclarations = diagnostics.Only_const_arrays_can_be_inferred_with_isolatedDeclarations
1179
+ var Only_emit_d_ts_declaration_files = diagnostics.Only_emit_d_ts_declaration_files
1180
+ var Only_output_d_ts_files_and_not_JavaScript_files = diagnostics.Only_output_d_ts_files_and_not_JavaScript_files
1181
+ var Only_public_and_protected_methods_of_the_base_class_are_accessible_via_the_super_keyword = diagnostics.Only_public_and_protected_methods_of_the_base_class_are_accessible_via_the_super_keyword
1182
+ var Operator_0_cannot_be_applied_to_type_1 = diagnostics.Operator_0_cannot_be_applied_to_type_1
1183
+ var Operator_0_cannot_be_applied_to_types_1_and_2 = diagnostics.Operator_0_cannot_be_applied_to_types_1_and_2
1184
+ var Operators_must_not_be_mixed_within_a_character_class_Wrap_it_in_a_nested_class_instead = diagnostics.Operators_must_not_be_mixed_within_a_character_class_Wrap_it_in_a_nested_class_instead
1185
+ var Opt_a_project_out_of_multi_project_reference_checking_when_editing = diagnostics.Opt_a_project_out_of_multi_project_reference_checking_when_editing
1186
+ var Option_0_1_has_been_removed_Please_remove_it_from_your_configuration = diagnostics.Option_0_1_has_been_removed_Please_remove_it_from_your_configuration
1187
+ var Option_0_1_is_deprecated_and_will_stop_functioning_in_TypeScript_2_Specify_compilerOption_ignoreDeprecations_Colon_3_to_silence_this_error = diagnostics.Option_0_1_is_deprecated_and_will_stop_functioning_in_TypeScript_2_Specify_compilerOption_ignoreDeprecations_Colon_3_to_silence_this_error
1188
+ var Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_false_or_null_on_command_line = diagnostics.Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_false_or_null_on_command_line
1189
+ var Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line = diagnostics.Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line
1190
+ var Option_0_can_only_be_specified_on_command_line = diagnostics.Option_0_can_only_be_specified_on_command_line
1191
+ var Option_0_can_only_be_used_when_either_option_inlineSourceMap_or_option_sourceMap_is_provided = diagnostics.Option_0_can_only_be_used_when_either_option_inlineSourceMap_or_option_sourceMap_is_provided
1192
+ var Option_0_can_only_be_used_when_moduleResolution_is_set_to_node16_nodenext_or_bundler = diagnostics.Option_0_can_only_be_used_when_moduleResolution_is_set_to_node16_nodenext_or_bundler
1193
+ var Option_0_can_only_be_used_when_module_is_set_to_preserve_commonjs_or_es2015_or_later = diagnostics.Option_0_can_only_be_used_when_module_is_set_to_preserve_commonjs_or_es2015_or_later
1194
+ var Option_0_cannot_be_specified_when_option_jsx_is_1 = diagnostics.Option_0_cannot_be_specified_when_option_jsx_is_1
1195
+ var Option_0_cannot_be_specified_with_option_1 = diagnostics.Option_0_cannot_be_specified_with_option_1
1196
+ var Option_0_cannot_be_specified_without_specifying_option_1 = diagnostics.Option_0_cannot_be_specified_without_specifying_option_1
1197
+ var Option_0_cannot_be_specified_without_specifying_option_1_or_option_2 = diagnostics.Option_0_cannot_be_specified_without_specifying_option_1_or_option_2
1198
+ var Option_0_has_been_removed_Please_remove_it_from_your_configuration = diagnostics.Option_0_has_been_removed_Please_remove_it_from_your_configuration
1199
+ var Option_0_is_deprecated_and_will_stop_functioning_in_TypeScript_1_Specify_compilerOption_ignoreDeprecations_Colon_2_to_silence_this_error = diagnostics.Option_0_is_deprecated_and_will_stop_functioning_in_TypeScript_1_Specify_compilerOption_ignoreDeprecations_Colon_2_to_silence_this_error
1200
+ var Option_0_is_redundant_and_cannot_be_specified_with_option_1 = diagnostics.Option_0_is_redundant_and_cannot_be_specified_with_option_1
1201
+ var Option_0_requires_value_to_be_greater_than_1 = diagnostics.Option_0_requires_value_to_be_greater_than_1
1202
+ var Option_allowImportingTsExtensions_can_only_be_used_when_one_of_noEmit_emitDeclarationOnly_or_rewriteRelativeImportExtensions_is_set = diagnostics.Option_allowImportingTsExtensions_can_only_be_used_when_one_of_noEmit_emitDeclarationOnly_or_rewriteRelativeImportExtensions_is_set
1203
+ var Option_build_must_be_the_first_command_line_argument = diagnostics.Option_build_must_be_the_first_command_line_argument
1204
+ var Option_incremental_is_only_valid_with_a_known_configuration_file_like_tsconfig_json_or_when_tsBuildInfoFile_is_explicitly_provided = diagnostics.Option_incremental_is_only_valid_with_a_known_configuration_file_like_tsconfig_json_or_when_tsBuildInfoFile_is_explicitly_provided
1205
+ var Option_isolatedModules_can_only_be_used_when_either_option_module_is_provided_or_option_target_is_ES2015_or_higher = diagnostics.Option_isolatedModules_can_only_be_used_when_either_option_module_is_provided_or_option_target_is_ES2015_or_higher
1206
+ var Option_moduleResolution_must_be_set_to_0_or_left_unspecified_when_option_module_is_set_to_1 = diagnostics.Option_moduleResolution_must_be_set_to_0_or_left_unspecified_when_option_module_is_set_to_1
1207
+ var Option_module_must_be_set_to_0_when_option_moduleResolution_is_set_to_1 = diagnostics.Option_module_must_be_set_to_0_when_option_moduleResolution_is_set_to_1
1208
+ var Option_preserveConstEnums_cannot_be_disabled_when_0_is_enabled = diagnostics.Option_preserveConstEnums_cannot_be_disabled_when_0_is_enabled
1209
+ var Option_project_cannot_be_mixed_with_source_files_on_a_command_line = diagnostics.Option_project_cannot_be_mixed_with_source_files_on_a_command_line
1210
+ var Option_resolveJsonModule_cannot_be_specified_when_moduleResolution_is_set_to_classic = diagnostics.Option_resolveJsonModule_cannot_be_specified_when_moduleResolution_is_set_to_classic
1211
+ var Option_resolveJsonModule_cannot_be_specified_when_module_is_set_to_none_system_or_umd = diagnostics.Option_resolveJsonModule_cannot_be_specified_when_module_is_set_to_none_system_or_umd
1212
+ var Option_verbatimModuleSyntax_cannot_be_used_when_module_is_set_to_UMD_AMD_or_System = diagnostics.Option_verbatimModuleSyntax_cannot_be_used_when_module_is_set_to_UMD_AMD_or_System
1213
+ var Options_0_and_1_cannot_be_combined = diagnostics.Options_0_and_1_cannot_be_combined
1214
+ var Options_Colon = diagnostics.Options_Colon
1215
+ var Organize_Imports = diagnostics.Organize_Imports
1216
+ var Other_Outputs = diagnostics.Other_Outputs
1217
+ var Output_Formatting = diagnostics.Output_Formatting
1218
+ var Output_compiler_performance_information_after_building = diagnostics.Output_compiler_performance_information_after_building
1219
+ var Output_directory_for_generated_declaration_files = diagnostics.Output_directory_for_generated_declaration_files
1220
+ var Output_file_0_has_not_been_built_from_source_file_1 = diagnostics.Output_file_0_has_not_been_built_from_source_file_1
1221
+ var Output_from_referenced_project_0_included_because_1_specified = diagnostics.Output_from_referenced_project_0_included_because_1_specified
1222
+ var Output_from_referenced_project_0_included_because_module_is_specified_as_none = diagnostics.Output_from_referenced_project_0_included_because_module_is_specified_as_none
1223
+ var Output_more_detailed_compiler_performance_information_after_building = diagnostics.Output_more_detailed_compiler_performance_information_after_building
1224
+ var Overload_0_of_1_2_gave_the_following_error = diagnostics.Overload_0_of_1_2_gave_the_following_error
1225
+ var Overload_signatures_must_all_be_abstract_or_non_abstract = diagnostics.Overload_signatures_must_all_be_abstract_or_non_abstract
1226
+ var Overload_signatures_must_all_be_ambient_or_non_ambient = diagnostics.Overload_signatures_must_all_be_ambient_or_non_ambient
1227
+ var Overload_signatures_must_all_be_exported_or_non_exported = diagnostics.Overload_signatures_must_all_be_exported_or_non_exported
1228
+ var Overload_signatures_must_all_be_optional_or_required = diagnostics.Overload_signatures_must_all_be_optional_or_required
1229
+ var Overload_signatures_must_all_be_public_private_or_protected = diagnostics.Overload_signatures_must_all_be_public_private_or_protected
1230
+ var Parameter_0_cannot_reference_identifier_1_declared_after_it = diagnostics.Parameter_0_cannot_reference_identifier_1_declared_after_it
1231
+ var Parameter_0_cannot_reference_itself = diagnostics.Parameter_0_cannot_reference_itself
1232
+ var Parameter_0_implicitly_has_an_1_type = diagnostics.Parameter_0_implicitly_has_an_1_type
1233
+ var Parameter_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage = diagnostics.Parameter_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage
1234
+ var Parameter_0_implicitly_has_type_any_in_Effect_fn_Effect_fnUntraced_or_Effect_fnUntracedEager_No_parameter_type_is_available_from_an_explicit_annotation_or_contextual_function_type_effect_effectFnImplicitAny = diagnostics.Parameter_0_implicitly_has_type_any_in_Effect_fn_Effect_fnUntraced_or_Effect_fnUntracedEager_No_parameter_type_is_available_from_an_explicit_annotation_or_contextual_function_type_effect_effectFnImplicitAny
1235
+ var Parameter_0_is_not_in_the_same_position_as_parameter_1 = diagnostics.Parameter_0_is_not_in_the_same_position_as_parameter_1
1236
+ var Parameter_0_of_accessor_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Parameter_0_of_accessor_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1237
+ var Parameter_0_of_accessor_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_0_of_accessor_has_or_is_using_name_1_from_private_module_2
1238
+ var Parameter_0_of_accessor_has_or_is_using_private_name_1 = diagnostics.Parameter_0_of_accessor_has_or_is_using_private_name_1
1239
+ var Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2
1240
+ var Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1 = diagnostics.Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1
1241
+ var Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1242
+ var Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_private_module_2
1243
+ var Parameter_0_of_constructor_from_exported_class_has_or_is_using_private_name_1 = diagnostics.Parameter_0_of_constructor_from_exported_class_has_or_is_using_private_name_1
1244
+ var Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2
1245
+ var Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1 = diagnostics.Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1
1246
+ var Parameter_0_of_exported_function_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Parameter_0_of_exported_function_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1247
+ var Parameter_0_of_exported_function_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_0_of_exported_function_has_or_is_using_name_1_from_private_module_2
1248
+ var Parameter_0_of_exported_function_has_or_is_using_private_name_1 = diagnostics.Parameter_0_of_exported_function_has_or_is_using_private_name_1
1249
+ var Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2
1250
+ var Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_private_name_1 = diagnostics.Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_private_name_1
1251
+ var Parameter_0_of_method_from_exported_interface_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_0_of_method_from_exported_interface_has_or_is_using_name_1_from_private_module_2
1252
+ var Parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1 = diagnostics.Parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1
1253
+ var Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1254
+ var Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_private_module_2
1255
+ var Parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1 = diagnostics.Parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1
1256
+ var Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1257
+ var Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_private_module_2
1258
+ var Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1 = diagnostics.Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1
1259
+ var Parameter_cannot_have_question_mark_and_initializer = diagnostics.Parameter_cannot_have_question_mark_and_initializer
1260
+ var Parameter_declaration_expected = diagnostics.Parameter_declaration_expected
1261
+ var Parameter_has_a_name_but_no_type_Did_you_mean_0_Colon_1 = diagnostics.Parameter_has_a_name_but_no_type_Did_you_mean_0_Colon_1
1262
+ var Parameter_modifiers_can_only_be_used_in_TypeScript_files = diagnostics.Parameter_modifiers_can_only_be_used_in_TypeScript_files
1263
+ var Parameter_must_have_an_explicit_type_annotation_with_isolatedDeclarations = diagnostics.Parameter_must_have_an_explicit_type_annotation_with_isolatedDeclarations
1264
+ var Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2
1265
+ var Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_private_name_1 = diagnostics.Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_private_name_1
1266
+ var Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2
1267
+ var Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_private_name_1 = diagnostics.Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_private_name_1
1268
+ var Parse_in_strict_mode_and_emit_use_strict_for_each_source_file = diagnostics.Parse_in_strict_mode_and_emit_use_strict_for_each_source_file
1269
+ var Part_of_files_list_in_tsconfig_json = diagnostics.Part_of_files_list_in_tsconfig_json
1270
+ var Pattern_0_can_have_at_most_one_Asterisk_character = diagnostics.Pattern_0_can_have_at_most_one_Asterisk_character
1271
+ var Performance_timings_for_diagnostics_or_extendedDiagnostics_are_not_available_in_this_session_A_native_implementation_of_the_Web_Performance_API_could_not_be_found = diagnostics.Performance_timings_for_diagnostics_or_extendedDiagnostics_are_not_available_in_this_session_A_native_implementation_of_the_Web_Performance_API_could_not_be_found
1272
+ var Platform_specific = diagnostics.Platform_specific
1273
+ var Prefix_0_with_an_underscore = diagnostics.Prefix_0_with_an_underscore
1274
+ var Prefix_all_incorrect_property_declarations_with_declare = diagnostics.Prefix_all_incorrect_property_declarations_with_declare
1275
+ var Prefix_all_unused_declarations_with_where_possible = diagnostics.Prefix_all_unused_declarations_with_where_possible
1276
+ var Prefix_with_declare = diagnostics.Prefix_with_declare
1277
+ var Preserve_unused_imported_values_in_the_JavaScript_output_that_would_otherwise_be_removed = diagnostics.Preserve_unused_imported_values_in_the_JavaScript_output_that_would_otherwise_be_removed
1278
+ var Print_all_of_the_files_read_during_the_compilation = diagnostics.Print_all_of_the_files_read_during_the_compilation
1279
+ var Print_files_read_during_the_compilation_including_why_it_was_included = diagnostics.Print_files_read_during_the_compilation_including_why_it_was_included
1280
+ var Print_names_of_files_and_the_reason_they_are_part_of_the_compilation = diagnostics.Print_names_of_files_and_the_reason_they_are_part_of_the_compilation
1281
+ var Print_names_of_files_part_of_the_compilation = diagnostics.Print_names_of_files_part_of_the_compilation
1282
+ var Print_names_of_files_that_are_part_of_the_compilation_and_then_stop_processing = diagnostics.Print_names_of_files_that_are_part_of_the_compilation_and_then_stop_processing
1283
+ var Print_names_of_generated_files_part_of_the_compilation = diagnostics.Print_names_of_generated_files_part_of_the_compilation
1284
+ var Print_the_compiler_s_version = diagnostics.Print_the_compiler_s_version
1285
+ var Print_the_final_configuration_instead_of_building = diagnostics.Print_the_final_configuration_instead_of_building
1286
+ var Print_the_names_of_emitted_files_after_a_compilation = diagnostics.Print_the_names_of_emitted_files_after_a_compilation
1287
+ var Print_this_message = diagnostics.Print_this_message
1288
+ var Private_accessor_was_defined_without_a_getter = diagnostics.Private_accessor_was_defined_without_a_getter
1289
+ var Private_field_0_must_be_declared_in_an_enclosing_class = diagnostics.Private_field_0_must_be_declared_in_an_enclosing_class
1290
+ var Private_identifiers_are_not_allowed_in_variable_declarations = diagnostics.Private_identifiers_are_not_allowed_in_variable_declarations
1291
+ var Private_identifiers_are_not_allowed_outside_class_bodies = diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies
1292
+ var Private_identifiers_are_only_allowed_in_class_bodies_and_may_only_be_used_as_part_of_a_class_member_declaration_property_access_or_on_the_left_hand_side_of_an_in_expression = diagnostics.Private_identifiers_are_only_allowed_in_class_bodies_and_may_only_be_used_as_part_of_a_class_member_declaration_property_access_or_on_the_left_hand_side_of_an_in_expression
1293
+ var Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher = diagnostics.Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher
1294
+ var Private_identifiers_cannot_be_used_as_parameters = diagnostics.Private_identifiers_cannot_be_used_as_parameters
1295
+ var Private_or_protected_member_0_cannot_be_accessed_on_a_type_parameter = diagnostics.Private_or_protected_member_0_cannot_be_accessed_on_a_type_parameter
1296
+ var Project_0 = diagnostics.Project_0
1297
+ var Project_0_can_t_be_built_because_its_dependency_1_has_errors = diagnostics.Project_0_can_t_be_built_because_its_dependency_1_has_errors
1298
+ var Project_0_can_t_be_built_because_its_dependency_1_was_not_built = diagnostics.Project_0_can_t_be_built_because_its_dependency_1_was_not_built
1299
+ var Project_0_is_being_forcibly_rebuilt = diagnostics.Project_0_is_being_forcibly_rebuilt
1300
+ var Project_0_is_out_of_date_because_buildinfo_file_1_indicates_that_file_2_was_root_file_of_compilation_but_not_any_more = diagnostics.Project_0_is_out_of_date_because_buildinfo_file_1_indicates_that_file_2_was_root_file_of_compilation_but_not_any_more
1301
+ var Project_0_is_out_of_date_because_buildinfo_file_1_indicates_that_program_needs_to_report_errors = diagnostics.Project_0_is_out_of_date_because_buildinfo_file_1_indicates_that_program_needs_to_report_errors
1302
+ var Project_0_is_out_of_date_because_buildinfo_file_1_indicates_that_some_of_the_changes_were_not_emitted = diagnostics.Project_0_is_out_of_date_because_buildinfo_file_1_indicates_that_some_of_the_changes_were_not_emitted
1303
+ var Project_0_is_out_of_date_because_buildinfo_file_1_indicates_there_is_change_in_compilerOptions = diagnostics.Project_0_is_out_of_date_because_buildinfo_file_1_indicates_there_is_change_in_compilerOptions
1304
+ var Project_0_is_out_of_date_because_config_file_does_not_exist = diagnostics.Project_0_is_out_of_date_because_config_file_does_not_exist
1305
+ var Project_0_is_out_of_date_because_input_1_does_not_exist = diagnostics.Project_0_is_out_of_date_because_input_1_does_not_exist
1306
+ var Project_0_is_out_of_date_because_it_has_errors = diagnostics.Project_0_is_out_of_date_because_it_has_errors
1307
+ var Project_0_is_out_of_date_because_output_1_is_older_than_input_2 = diagnostics.Project_0_is_out_of_date_because_output_1_is_older_than_input_2
1308
+ var Project_0_is_out_of_date_because_output_file_1_does_not_exist = diagnostics.Project_0_is_out_of_date_because_output_file_1_does_not_exist
1309
+ var Project_0_is_out_of_date_because_output_for_it_was_generated_with_version_1_that_differs_with_current_version_2 = diagnostics.Project_0_is_out_of_date_because_output_for_it_was_generated_with_version_1_that_differs_with_current_version_2
1310
+ var Project_0_is_up_to_date = diagnostics.Project_0_is_up_to_date
1311
+ var Project_0_is_up_to_date_because_newest_input_1_is_older_than_output_2 = diagnostics.Project_0_is_up_to_date_because_newest_input_1_is_older_than_output_2
1312
+ var Project_0_is_up_to_date_but_needs_to_update_timestamps_of_output_files_that_are_older_than_input_files = diagnostics.Project_0_is_up_to_date_but_needs_to_update_timestamps_of_output_files_that_are_older_than_input_files
1313
+ var Project_0_is_up_to_date_with_d_ts_files_from_its_dependencies = diagnostics.Project_0_is_up_to_date_with_d_ts_files_from_its_dependencies
1314
+ var Project_references_may_not_form_a_circular_graph_Cycle_detected_Colon_0 = diagnostics.Project_references_may_not_form_a_circular_graph_Cycle_detected_Colon_0
1315
+ var Projects = diagnostics.Projects
1316
+ var Projects_in_this_build_Colon_0 = diagnostics.Projects_in_this_build_Colon_0
1317
+ var Properties_with_the_accessor_modifier_are_only_available_when_targeting_ECMAScript_2015_and_higher = diagnostics.Properties_with_the_accessor_modifier_are_only_available_when_targeting_ECMAScript_2015_and_higher
1318
+ var Property_0_cannot_have_an_initializer_because_it_is_marked_abstract = diagnostics.Property_0_cannot_have_an_initializer_because_it_is_marked_abstract
1319
+ var Property_0_comes_from_an_index_signature_so_it_must_be_accessed_with_0 = diagnostics.Property_0_comes_from_an_index_signature_so_it_must_be_accessed_with_0
1320
+ var Property_0_does_not_exist_on_type_1 = diagnostics.Property_0_does_not_exist_on_type_1
1321
+ var Property_0_does_not_exist_on_type_1_Did_you_mean_2 = diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_2
1322
+ var Property_0_does_not_exist_on_type_1_Did_you_mean_to_access_the_static_member_2_instead = diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_to_access_the_static_member_2_instead
1323
+ var Property_0_does_not_exist_on_type_1_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_2_or_later = diagnostics.Property_0_does_not_exist_on_type_1_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_2_or_later
1324
+ var Property_0_does_not_exist_on_type_1_Try_changing_the_lib_compiler_option_to_include_dom = diagnostics.Property_0_does_not_exist_on_type_1_Try_changing_the_lib_compiler_option_to_include_dom
1325
+ var Property_0_has_no_initializer_and_is_not_definitely_assigned_in_a_class_static_block = diagnostics.Property_0_has_no_initializer_and_is_not_definitely_assigned_in_a_class_static_block
1326
+ var Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor = diagnostics.Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor
1327
+ var Property_0_implicitly_has_type_any_because_its_get_accessor_lacks_a_return_type_annotation = diagnostics.Property_0_implicitly_has_type_any_because_its_get_accessor_lacks_a_return_type_annotation
1328
+ var Property_0_implicitly_has_type_any_because_its_set_accessor_lacks_a_parameter_type_annotation = diagnostics.Property_0_implicitly_has_type_any_because_its_set_accessor_lacks_a_parameter_type_annotation
1329
+ var Property_0_implicitly_has_type_any_but_a_better_type_for_its_get_accessor_may_be_inferred_from_usage = diagnostics.Property_0_implicitly_has_type_any_but_a_better_type_for_its_get_accessor_may_be_inferred_from_usage
1330
+ var Property_0_implicitly_has_type_any_but_a_better_type_for_its_set_accessor_may_be_inferred_from_usage = diagnostics.Property_0_implicitly_has_type_any_but_a_better_type_for_its_set_accessor_may_be_inferred_from_usage
1331
+ var Property_0_in_type_1_is_not_assignable_to_the_same_property_in_base_type_2 = diagnostics.Property_0_in_type_1_is_not_assignable_to_the_same_property_in_base_type_2
1332
+ var Property_0_in_type_1_is_not_assignable_to_type_2 = diagnostics.Property_0_in_type_1_is_not_assignable_to_type_2
1333
+ var Property_0_in_type_1_refers_to_a_different_member_that_cannot_be_accessed_from_within_type_2 = diagnostics.Property_0_in_type_1_refers_to_a_different_member_that_cannot_be_accessed_from_within_type_2
1334
+ var Property_0_is_declared_but_its_value_is_never_read = diagnostics.Property_0_is_declared_but_its_value_is_never_read
1335
+ var Property_0_is_incompatible_with_index_signature = diagnostics.Property_0_is_incompatible_with_index_signature
1336
+ var Property_0_is_missing_in_type_1 = diagnostics.Property_0_is_missing_in_type_1
1337
+ var Property_0_is_missing_in_type_1_but_required_in_type_2 = diagnostics.Property_0_is_missing_in_type_1_but_required_in_type_2
1338
+ var Property_0_is_not_accessible_outside_class_1_because_it_has_a_private_identifier = diagnostics.Property_0_is_not_accessible_outside_class_1_because_it_has_a_private_identifier
1339
+ var Property_0_is_optional_in_type_1_but_required_in_type_2 = diagnostics.Property_0_is_optional_in_type_1_but_required_in_type_2
1340
+ var Property_0_is_private_and_only_accessible_within_class_1 = diagnostics.Property_0_is_private_and_only_accessible_within_class_1
1341
+ var Property_0_is_private_in_type_1_but_not_in_type_2 = diagnostics.Property_0_is_private_in_type_1_but_not_in_type_2
1342
+ var Property_0_is_protected_and_only_accessible_through_an_instance_of_class_1_This_is_an_instance_of_class_2 = diagnostics.Property_0_is_protected_and_only_accessible_through_an_instance_of_class_1_This_is_an_instance_of_class_2
1343
+ var Property_0_is_protected_and_only_accessible_within_class_1_and_its_subclasses = diagnostics.Property_0_is_protected_and_only_accessible_within_class_1_and_its_subclasses
1344
+ var Property_0_is_protected_but_type_1_is_not_a_class_derived_from_2 = diagnostics.Property_0_is_protected_but_type_1_is_not_a_class_derived_from_2
1345
+ var Property_0_is_protected_in_type_1_but_public_in_type_2 = diagnostics.Property_0_is_protected_in_type_1_but_public_in_type_2
1346
+ var Property_0_is_used_before_being_assigned = diagnostics.Property_0_is_used_before_being_assigned
1347
+ var Property_0_is_used_before_its_initialization = diagnostics.Property_0_is_used_before_its_initialization
1348
+ var Property_0_may_not_exist_on_type_1_Did_you_mean_2 = diagnostics.Property_0_may_not_exist_on_type_1_Did_you_mean_2
1349
+ var Property_0_of_JSX_spread_attribute_is_not_assignable_to_target_property = diagnostics.Property_0_of_JSX_spread_attribute_is_not_assignable_to_target_property
1350
+ var Property_0_of_exported_anonymous_class_type_may_not_be_private_or_protected = diagnostics.Property_0_of_exported_anonymous_class_type_may_not_be_private_or_protected
1351
+ var Property_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2 = diagnostics.Property_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2
1352
+ var Property_0_of_exported_interface_has_or_is_using_private_name_1 = diagnostics.Property_0_of_exported_interface_has_or_is_using_private_name_1
1353
+ var Property_0_of_type_1_is_not_assignable_to_2_index_type_3 = diagnostics.Property_0_of_type_1_is_not_assignable_to_2_index_type_3
1354
+ var Property_0_was_also_declared_here = diagnostics.Property_0_was_also_declared_here
1355
+ var Property_0_will_overwrite_the_base_property_in_1_If_this_is_intentional_add_an_initializer_Otherwise_add_a_declare_modifier_or_remove_the_redundant_declaration = diagnostics.Property_0_will_overwrite_the_base_property_in_1_If_this_is_intentional_add_an_initializer_Otherwise_add_a_declare_modifier_or_remove_the_redundant_declaration
1356
+ var Property_assignment_expected = diagnostics.Property_assignment_expected
1357
+ var Property_destructuring_pattern_expected = diagnostics.Property_destructuring_pattern_expected
1358
+ var Property_must_have_an_explicit_type_annotation_with_isolatedDeclarations = diagnostics.Property_must_have_an_explicit_type_annotation_with_isolatedDeclarations
1359
+ var Property_or_signature_expected = diagnostics.Property_or_signature_expected
1360
+ var Property_value_can_only_be_string_literal_numeric_literal_true_false_null_object_literal_or_array_literal = diagnostics.Property_value_can_only_be_string_literal_numeric_literal_true_false_null_object_literal_or_array_literal
1361
+ var Provide_full_support_for_iterables_in_for_of_spread_and_destructuring_when_targeting_ES5 = diagnostics.Provide_full_support_for_iterables_in_for_of_spread_and_destructuring_when_targeting_ES5
1362
+ var Public_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Public_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1363
+ var Public_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Public_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2
1364
+ var Public_method_0_of_exported_class_has_or_is_using_private_name_1 = diagnostics.Public_method_0_of_exported_class_has_or_is_using_private_name_1
1365
+ var Public_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Public_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1366
+ var Public_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Public_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2
1367
+ var Public_property_0_of_exported_class_has_or_is_using_private_name_1 = diagnostics.Public_property_0_of_exported_class_has_or_is_using_private_name_1
1368
+ var Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1369
+ var Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2
1370
+ var Public_static_method_0_of_exported_class_has_or_is_using_private_name_1 = diagnostics.Public_static_method_0_of_exported_class_has_or_is_using_private_name_1
1371
+ var Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1372
+ var Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2
1373
+ var Public_static_property_0_of_exported_class_has_or_is_using_private_name_1 = diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_private_name_1
1374
+ var Qualified_name_0_is_not_allowed_without_a_leading_param_object_1 = diagnostics.Qualified_name_0_is_not_allowed_without_a_leading_param_object_1
1375
+ var Raise_an_error_when_a_function_parameter_isn_t_read = diagnostics.Raise_an_error_when_a_function_parameter_isn_t_read
1376
+ var Raise_error_on_expressions_and_declarations_with_an_implied_any_type = diagnostics.Raise_error_on_expressions_and_declarations_with_an_implied_any_type
1377
+ var Raise_error_on_this_expressions_with_an_implied_any_type = diagnostics.Raise_error_on_this_expressions_with_an_implied_any_type
1378
+ var Range_out_of_order_in_character_class = diagnostics.Range_out_of_order_in_character_class
1379
+ var Re_exporting_a_type_when_0_is_enabled_requires_using_export_type = diagnostics.Re_exporting_a_type_when_0_is_enabled_requires_using_export_type
1380
+ var React_components_cannot_include_JSX_namespace_names = diagnostics.React_components_cannot_include_JSX_namespace_names
1381
+ var Recommended_Options = diagnostics.Recommended_Options
1382
+ var Redirect_output_structure_to_the_directory = diagnostics.Redirect_output_structure_to_the_directory
1383
+ var Reduce_the_number_of_projects_loaded_automatically_by_TypeScript = diagnostics.Reduce_the_number_of_projects_loaded_automatically_by_TypeScript
1384
+ var Referenced_project_0_may_not_disable_emit = diagnostics.Referenced_project_0_may_not_disable_emit
1385
+ var Referenced_project_0_must_have_setting_composite_Colon_true = diagnostics.Referenced_project_0_must_have_setting_composite_Colon_true
1386
+ var Referenced_via_0_from_file_1 = diagnostics.Referenced_via_0_from_file_1
1387
+ var Relative_import_paths_need_explicit_file_extensions_in_ECMAScript_imports_when_moduleResolution_is_node16_or_nodenext_Consider_adding_an_extension_to_the_import_path = diagnostics.Relative_import_paths_need_explicit_file_extensions_in_ECMAScript_imports_when_moduleResolution_is_node16_or_nodenext_Consider_adding_an_extension_to_the_import_path
1388
+ var Relative_import_paths_need_explicit_file_extensions_in_ECMAScript_imports_when_moduleResolution_is_node16_or_nodenext_Did_you_mean_0 = diagnostics.Relative_import_paths_need_explicit_file_extensions_in_ECMAScript_imports_when_moduleResolution_is_node16_or_nodenext_Did_you_mean_0
1389
+ var Remove_Unused_Imports = diagnostics.Remove_Unused_Imports
1390
+ var Remove_a_list_of_directories_from_the_watch_process = diagnostics.Remove_a_list_of_directories_from_the_watch_process
1391
+ var Remove_a_list_of_files_from_the_watch_mode_s_processing = diagnostics.Remove_a_list_of_files_from_the_watch_mode_s_processing
1392
+ var Remove_all_unnecessary_override_modifiers = diagnostics.Remove_all_unnecessary_override_modifiers
1393
+ var Remove_all_unnecessary_uses_of_await = diagnostics.Remove_all_unnecessary_uses_of_await
1394
+ var Remove_all_unreachable_code = diagnostics.Remove_all_unreachable_code
1395
+ var Remove_all_unused_labels = diagnostics.Remove_all_unused_labels
1396
+ var Remove_braces_from_all_arrow_function_bodies_with_relevant_issues = diagnostics.Remove_braces_from_all_arrow_function_bodies_with_relevant_issues
1397
+ var Remove_braces_from_arrow_function = diagnostics.Remove_braces_from_arrow_function
1398
+ var Remove_braces_from_arrow_function_body = diagnostics.Remove_braces_from_arrow_function_body
1399
+ var Remove_import_from_0 = diagnostics.Remove_import_from_0
1400
+ var Remove_override_modifier = diagnostics.Remove_override_modifier
1401
+ var Remove_parentheses = diagnostics.Remove_parentheses
1402
+ var Remove_template_tag = diagnostics.Remove_template_tag
1403
+ var Remove_the_20mb_cap_on_total_source_code_size_for_JavaScript_files_in_the_TypeScript_language_server = diagnostics.Remove_the_20mb_cap_on_total_source_code_size_for_JavaScript_files_in_the_TypeScript_language_server
1404
+ var Remove_type_from_import_declaration_from_0 = diagnostics.Remove_type_from_import_declaration_from_0
1405
+ var Remove_type_from_import_of_0_from_1 = diagnostics.Remove_type_from_import_of_0_from_1
1406
+ var Remove_type_parameters = diagnostics.Remove_type_parameters
1407
+ var Remove_unnecessary_await = diagnostics.Remove_unnecessary_await
1408
+ var Remove_unreachable_code = diagnostics.Remove_unreachable_code
1409
+ var Remove_unused_declaration_for_Colon_0 = diagnostics.Remove_unused_declaration_for_Colon_0
1410
+ var Remove_unused_declarations_for_Colon_0 = diagnostics.Remove_unused_declarations_for_Colon_0
1411
+ var Remove_unused_destructuring_declaration = diagnostics.Remove_unused_destructuring_declaration
1412
+ var Remove_unused_label = diagnostics.Remove_unused_label
1413
+ var Remove_variable_statement = diagnostics.Remove_variable_statement
1414
+ var Rename_param_tag_name_0_to_1 = diagnostics.Rename_param_tag_name_0_to_1
1415
+ var Replace_0_with_Promise_1 = diagnostics.Replace_0_with_Promise_1
1416
+ var Replace_all_unused_infer_with_unknown = diagnostics.Replace_all_unused_infer_with_unknown
1417
+ var Replace_import_with_0 = diagnostics.Replace_import_with_0
1418
+ var Replace_infer_0_with_unknown = diagnostics.Replace_infer_0_with_unknown
1419
+ var Report_error_when_not_all_code_paths_in_function_return_a_value = diagnostics.Report_error_when_not_all_code_paths_in_function_return_a_value
1420
+ var Report_errors_for_fallthrough_cases_in_switch_statement = diagnostics.Report_errors_for_fallthrough_cases_in_switch_statement
1421
+ var Report_errors_in_js_files = diagnostics.Report_errors_in_js_files
1422
+ var Report_errors_on_unused_locals = diagnostics.Report_errors_on_unused_locals
1423
+ var Report_errors_on_unused_parameters = diagnostics.Report_errors_on_unused_parameters
1424
+ var Require_sufficient_annotation_on_exports_so_other_tools_can_trivially_generate_declaration_files = diagnostics.Require_sufficient_annotation_on_exports_so_other_tools_can_trivially_generate_declaration_files
1425
+ var Require_undeclared_properties_from_index_signatures_to_use_element_accesses = diagnostics.Require_undeclared_properties_from_index_signatures_to_use_element_accesses
1426
+ var Required_type_parameters_may_not_follow_optional_type_parameters = diagnostics.Required_type_parameters_may_not_follow_optional_type_parameters
1427
+ var Resolution_for_module_0_was_found_in_cache_from_location_1 = diagnostics.Resolution_for_module_0_was_found_in_cache_from_location_1
1428
+ var Resolution_for_type_reference_directive_0_was_found_in_cache_from_location_1 = diagnostics.Resolution_for_type_reference_directive_0_was_found_in_cache_from_location_1
1429
+ var Resolution_of_non_relative_name_failed_trying_with_modern_Node_resolution_features_disabled_to_see_if_npm_library_needs_configuration_update = diagnostics.Resolution_of_non_relative_name_failed_trying_with_modern_Node_resolution_features_disabled_to_see_if_npm_library_needs_configuration_update
1430
+ var Resolution_of_non_relative_name_failed_trying_with_moduleResolution_bundler_to_see_if_project_may_need_configuration_update = diagnostics.Resolution_of_non_relative_name_failed_trying_with_moduleResolution_bundler_to_see_if_project_may_need_configuration_update
1431
+ var Resolve_keyof_to_string_valued_property_names_only_no_numbers_or_symbols = diagnostics.Resolve_keyof_to_string_valued_property_names_only_no_numbers_or_symbols
1432
+ var Resolved_under_condition_0 = diagnostics.Resolved_under_condition_0
1433
+ var Resolving_in_0_mode_with_conditions_1 = diagnostics.Resolving_in_0_mode_with_conditions_1
1434
+ var Resolving_module_0_from_1 = diagnostics.Resolving_module_0_from_1
1435
+ var Resolving_module_name_0_relative_to_base_url_1_2 = diagnostics.Resolving_module_name_0_relative_to_base_url_1_2
1436
+ var Resolving_real_path_for_0_result_1 = diagnostics.Resolving_real_path_for_0_result_1
1437
+ var Resolving_type_reference_directive_0_containing_file_1 = diagnostics.Resolving_type_reference_directive_0_containing_file_1
1438
+ var Resolving_type_reference_directive_0_containing_file_1_root_directory_2 = diagnostics.Resolving_type_reference_directive_0_containing_file_1_root_directory_2
1439
+ var Resolving_type_reference_directive_0_containing_file_1_root_directory_not_set = diagnostics.Resolving_type_reference_directive_0_containing_file_1_root_directory_not_set
1440
+ var Resolving_type_reference_directive_0_containing_file_not_set_root_directory_1 = diagnostics.Resolving_type_reference_directive_0_containing_file_not_set_root_directory_1
1441
+ var Resolving_type_reference_directive_0_containing_file_not_set_root_directory_not_set = diagnostics.Resolving_type_reference_directive_0_containing_file_not_set_root_directory_not_set
1442
+ var Resolving_type_reference_directive_for_program_that_specifies_custom_typeRoots_skipping_lookup_in_node_modules_folder = diagnostics.Resolving_type_reference_directive_for_program_that_specifies_custom_typeRoots_skipping_lookup_in_node_modules_folder
1443
+ var Resolving_with_primary_search_path_0 = diagnostics.Resolving_with_primary_search_path_0
1444
+ var Rest_parameter_0_implicitly_has_an_any_type = diagnostics.Rest_parameter_0_implicitly_has_an_any_type
1445
+ var Rest_parameter_0_implicitly_has_an_any_type_but_a_better_type_may_be_inferred_from_usage = diagnostics.Rest_parameter_0_implicitly_has_an_any_type_but_a_better_type_may_be_inferred_from_usage
1446
+ var Rest_types_may_only_be_created_from_object_types = diagnostics.Rest_types_may_only_be_created_from_object_types
1447
+ var Return_type_annotation_circularly_references_itself = diagnostics.Return_type_annotation_circularly_references_itself
1448
+ var Return_type_must_be_inferred_from_a_function = diagnostics.Return_type_must_be_inferred_from_a_function
1449
+ var Return_type_of_call_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1 = diagnostics.Return_type_of_call_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1
1450
+ var Return_type_of_call_signature_from_exported_interface_has_or_is_using_private_name_0 = diagnostics.Return_type_of_call_signature_from_exported_interface_has_or_is_using_private_name_0
1451
+ var Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1 = diagnostics.Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1
1452
+ var Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_0 = diagnostics.Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_0
1453
+ var Return_type_of_constructor_signature_must_be_assignable_to_the_instance_type_of_the_class = diagnostics.Return_type_of_constructor_signature_must_be_assignable_to_the_instance_type_of_the_class
1454
+ var Return_type_of_exported_function_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named = diagnostics.Return_type_of_exported_function_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named
1455
+ var Return_type_of_exported_function_has_or_is_using_name_0_from_private_module_1 = diagnostics.Return_type_of_exported_function_has_or_is_using_name_0_from_private_module_1
1456
+ var Return_type_of_exported_function_has_or_is_using_private_name_0 = diagnostics.Return_type_of_exported_function_has_or_is_using_private_name_0
1457
+ var Return_type_of_index_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1 = diagnostics.Return_type_of_index_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1
1458
+ var Return_type_of_index_signature_from_exported_interface_has_or_is_using_private_name_0 = diagnostics.Return_type_of_index_signature_from_exported_interface_has_or_is_using_private_name_0
1459
+ var Return_type_of_method_from_exported_interface_has_or_is_using_name_0_from_private_module_1 = diagnostics.Return_type_of_method_from_exported_interface_has_or_is_using_name_0_from_private_module_1
1460
+ var Return_type_of_method_from_exported_interface_has_or_is_using_private_name_0 = diagnostics.Return_type_of_method_from_exported_interface_has_or_is_using_private_name_0
1461
+ var Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1462
+ var Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2
1463
+ var Return_type_of_public_getter_0_from_exported_class_has_or_is_using_private_name_1 = diagnostics.Return_type_of_public_getter_0_from_exported_class_has_or_is_using_private_name_1
1464
+ var Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named = diagnostics.Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named
1465
+ var Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_private_module_1 = diagnostics.Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_private_module_1
1466
+ var Return_type_of_public_method_from_exported_class_has_or_is_using_private_name_0 = diagnostics.Return_type_of_public_method_from_exported_class_has_or_is_using_private_name_0
1467
+ var Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named = diagnostics.Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named
1468
+ var Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2 = diagnostics.Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2
1469
+ var Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_private_name_1 = diagnostics.Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_private_name_1
1470
+ var Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named = diagnostics.Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named
1471
+ var Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_private_module_1 = diagnostics.Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_private_module_1
1472
+ var Return_type_of_public_static_method_from_exported_class_has_or_is_using_private_name_0 = diagnostics.Return_type_of_public_static_method_from_exported_class_has_or_is_using_private_name_0
1473
+ var Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_not_resolved = diagnostics.Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_not_resolved
1474
+ var Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3 = diagnostics.Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3
1475
+ var Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3_with_Package_ID_4 = diagnostics.Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3_with_Package_ID_4
1476
+ var Reusing_resolution_of_module_0_from_1_of_old_program_it_was_not_resolved = diagnostics.Reusing_resolution_of_module_0_from_1_of_old_program_it_was_not_resolved
1477
+ var Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2 = diagnostics.Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2
1478
+ var Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3 = diagnostics.Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3
1479
+ var Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_not_resolved = diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_not_resolved
1480
+ var Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3 = diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3
1481
+ var Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3_with_Package_ID_4 = diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3_with_Package_ID_4
1482
+ var Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_not_resolved = diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_not_resolved
1483
+ var Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved_to_2 = diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved_to_2
1484
+ var Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3 = diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3
1485
+ var Rewrite_all_as_indexed_access_types = diagnostics.Rewrite_all_as_indexed_access_types
1486
+ var Rewrite_as_the_indexed_access_type_0 = diagnostics.Rewrite_as_the_indexed_access_type_0
1487
+ var Rewrite_ts_tsx_mts_and_cts_file_extensions_in_relative_import_paths_to_their_JavaScript_equivalent_in_output_files = diagnostics.Rewrite_ts_tsx_mts_and_cts_file_extensions_in_relative_import_paths_to_their_JavaScript_equivalent_in_output_files
1488
+ var Right_operand_of_is_unreachable_because_the_left_operand_is_never_nullish = diagnostics.Right_operand_of_is_unreachable_because_the_left_operand_is_never_nullish
1489
+ var Root_directory_cannot_be_determined_skipping_primary_search_paths = diagnostics.Root_directory_cannot_be_determined_skipping_primary_search_paths
1490
+ var Root_file_specified_for_compilation = diagnostics.Root_file_specified_for_compilation
1491
+ var Run_in_single_threaded_mode = diagnostics.Run_in_single_threaded_mode
1492
+ var STRATEGY = diagnostics.STRATEGY
1493
+ var Save_tsbuildinfo_files_to_allow_for_incremental_compilation_of_projects = diagnostics.Save_tsbuildinfo_files_to_allow_for_incremental_compilation_of_projects
1494
+ var Saw_non_matching_condition_0 = diagnostics.Saw_non_matching_condition_0
1495
+ var Scoped_package_detected_looking_in_0 = diagnostics.Scoped_package_detected_looking_in_0
1496
+ var Searching_all_ancestor_node_modules_directories_for_fallback_extensions_Colon_0 = diagnostics.Searching_all_ancestor_node_modules_directories_for_fallback_extensions_Colon_0
1497
+ var Searching_all_ancestor_node_modules_directories_for_preferred_extensions_Colon_0 = diagnostics.Searching_all_ancestor_node_modules_directories_for_preferred_extensions_Colon_0
1498
+ var See_also_https_Colon_Slash_Slashaka_ms_Slashtsconfig_Slashmodule = diagnostics.See_also_https_Colon_Slash_Slashaka_ms_Slashtsconfig_Slashmodule
1499
+ var Selection_is_not_a_valid_statement_or_statements = diagnostics.Selection_is_not_a_valid_statement_or_statements
1500
+ var Selection_is_not_a_valid_type_node = diagnostics.Selection_is_not_a_valid_type_node
1501
+ var Service_0_is_required_but_not_provided_by_dependencies_effect_missingEffectServiceDependency = diagnostics.Service_0_is_required_but_not_provided_by_dependencies_effect_missingEffectServiceDependency
1502
+ var Services_0_are_required_but_not_provided_by_dependencies_effect_missingEffectServiceDependency = diagnostics.Services_0_are_required_but_not_provided_by_dependencies_effect_missingEffectServiceDependency
1503
+ var Set_the_JavaScript_language_version_for_emitted_JavaScript_and_include_compatible_library_declarations = diagnostics.Set_the_JavaScript_language_version_for_emitted_JavaScript_and_include_compatible_library_declarations
1504
+ var Set_the_language_of_the_messaging_from_TypeScript_This_does_not_affect_emit = diagnostics.Set_the_language_of_the_messaging_from_TypeScript_This_does_not_affect_emit
1505
+ var Set_the_module_option_in_your_configuration_file_to_0 = diagnostics.Set_the_module_option_in_your_configuration_file_to_0
1506
+ var Set_the_newline_character_for_emitting_files = diagnostics.Set_the_newline_character_for_emitting_files
1507
+ var Set_the_number_of_checkers_per_project = diagnostics.Set_the_number_of_checkers_per_project
1508
+ var Set_the_number_of_projects_to_build_concurrently = diagnostics.Set_the_number_of_projects_to_build_concurrently
1509
+ var Set_the_target_option_in_your_configuration_file_to_0 = diagnostics.Set_the_target_option_in_your_configuration_file_to_0
1510
+ var Setters_cannot_return_a_value = diagnostics.Setters_cannot_return_a_value
1511
+ var Show_all_compiler_options = diagnostics.Show_all_compiler_options
1512
+ var Show_diagnostic_information = diagnostics.Show_diagnostic_information
1513
+ var Show_verbose_diagnostic_information = diagnostics.Show_verbose_diagnostic_information
1514
+ var Show_what_would_be_built_or_deleted_if_specified_with_clean = diagnostics.Show_what_would_be_built_or_deleted_if_specified_with_clean
1515
+ var Signature_0_must_be_a_type_predicate = diagnostics.Signature_0_must_be_a_type_predicate
1516
+ var Signature_declarations_can_only_be_used_in_TypeScript_files = diagnostics.Signature_declarations_can_only_be_used_in_TypeScript_files
1517
+ var Skip_building_downstream_projects_on_error_in_upstream_project = diagnostics.Skip_building_downstream_projects_on_error_in_upstream_project
1518
+ var Skip_type_checking_all_d_ts_files = diagnostics.Skip_type_checking_all_d_ts_files
1519
+ var Skip_type_checking_d_ts_files_that_are_included_with_TypeScript = diagnostics.Skip_type_checking_d_ts_files_that_are_included_with_TypeScript
1520
+ var Skip_type_checking_of_declaration_files = diagnostics.Skip_type_checking_of_declaration_files
1521
+ var Skipping_build_of_project_0_because_its_dependency_1_has_errors = diagnostics.Skipping_build_of_project_0_because_its_dependency_1_has_errors
1522
+ var Skipping_build_of_project_0_because_its_dependency_1_was_not_built = diagnostics.Skipping_build_of_project_0_because_its_dependency_1_was_not_built
1523
+ var Skipping_module_0_that_looks_like_an_absolute_URI_target_file_types_Colon_1 = diagnostics.Skipping_module_0_that_looks_like_an_absolute_URI_target_file_types_Colon_1
1524
+ var Sort_Imports = diagnostics.Sort_Imports
1525
+ var Source_from_referenced_project_0_included_because_1_specified = diagnostics.Source_from_referenced_project_0_included_because_1_specified
1526
+ var Source_from_referenced_project_0_included_because_module_is_specified_as_none = diagnostics.Source_from_referenced_project_0_included_because_module_is_specified_as_none
1527
+ var Source_has_0_element_s_but_target_allows_only_1 = diagnostics.Source_has_0_element_s_but_target_allows_only_1
1528
+ var Source_has_0_element_s_but_target_requires_1 = diagnostics.Source_has_0_element_s_but_target_requires_1
1529
+ var Source_provides_no_match_for_required_element_at_position_0_in_target = diagnostics.Source_provides_no_match_for_required_element_at_position_0_in_target
1530
+ var Source_provides_no_match_for_variadic_element_at_position_0_in_target = diagnostics.Source_provides_no_match_for_variadic_element_at_position_0_in_target
1531
+ var Specify_ECMAScript_target_version = diagnostics.Specify_ECMAScript_target_version
1532
+ var Specify_JSX_code_generation = diagnostics.Specify_JSX_code_generation
1533
+ var Specify_a_file_that_bundles_all_outputs_into_one_JavaScript_file_If_declaration_is_true_also_designates_a_file_that_bundles_all_d_ts_output = diagnostics.Specify_a_file_that_bundles_all_outputs_into_one_JavaScript_file_If_declaration_is_true_also_designates_a_file_that_bundles_all_d_ts_output
1534
+ var Specify_a_list_of_glob_patterns_that_match_files_to_be_included_in_compilation = diagnostics.Specify_a_list_of_glob_patterns_that_match_files_to_be_included_in_compilation
1535
+ var Specify_a_list_of_language_service_plugins_to_include = diagnostics.Specify_a_list_of_language_service_plugins_to_include
1536
+ var Specify_a_set_of_bundled_library_declaration_files_that_describe_the_target_runtime_environment = diagnostics.Specify_a_set_of_bundled_library_declaration_files_that_describe_the_target_runtime_environment
1537
+ var Specify_a_set_of_entries_that_re_map_imports_to_additional_lookup_locations = diagnostics.Specify_a_set_of_entries_that_re_map_imports_to_additional_lookup_locations
1538
+ var Specify_an_array_of_objects_that_specify_paths_for_projects_Used_in_project_references = diagnostics.Specify_an_array_of_objects_that_specify_paths_for_projects_Used_in_project_references
1539
+ var Specify_an_output_folder_for_all_emitted_files = diagnostics.Specify_an_output_folder_for_all_emitted_files
1540
+ var Specify_emit_Slashchecking_behavior_for_imports_that_are_only_used_for_types = diagnostics.Specify_emit_Slashchecking_behavior_for_imports_that_are_only_used_for_types
1541
+ var Specify_file_to_store_incremental_compilation_information = diagnostics.Specify_file_to_store_incremental_compilation_information
1542
+ var Specify_how_TypeScript_looks_up_a_file_from_a_given_module_specifier = diagnostics.Specify_how_TypeScript_looks_up_a_file_from_a_given_module_specifier
1543
+ var Specify_how_directories_are_watched_on_systems_that_lack_recursive_file_watching_functionality = diagnostics.Specify_how_directories_are_watched_on_systems_that_lack_recursive_file_watching_functionality
1544
+ var Specify_how_the_TypeScript_watch_mode_works = diagnostics.Specify_how_the_TypeScript_watch_mode_works
1545
+ var Specify_library_files_to_be_included_in_the_compilation = diagnostics.Specify_library_files_to_be_included_in_the_compilation
1546
+ var Specify_module_code_generation = diagnostics.Specify_module_code_generation
1547
+ var Specify_module_specifier_used_to_import_the_JSX_factory_functions_when_using_jsx_Colon_react_jsx_Asterisk = diagnostics.Specify_module_specifier_used_to_import_the_JSX_factory_functions_when_using_jsx_Colon_react_jsx_Asterisk
1548
+ var Specify_multiple_folders_that_act_like_Slashnode_modules_Slash_types = diagnostics.Specify_multiple_folders_that_act_like_Slashnode_modules_Slash_types
1549
+ var Specify_one_or_more_path_or_node_module_references_to_base_configuration_files_from_which_settings_are_inherited = diagnostics.Specify_one_or_more_path_or_node_module_references_to_base_configuration_files_from_which_settings_are_inherited
1550
+ var Specify_options_for_automatic_acquisition_of_declaration_files = diagnostics.Specify_options_for_automatic_acquisition_of_declaration_files
1551
+ var Specify_strategy_for_creating_a_polling_watch_when_it_fails_to_create_using_file_system_events_Colon_FixedInterval_default_PriorityInterval_DynamicPriority_FixedChunkSize = diagnostics.Specify_strategy_for_creating_a_polling_watch_when_it_fails_to_create_using_file_system_events_Colon_FixedInterval_default_PriorityInterval_DynamicPriority_FixedChunkSize
1552
+ var Specify_strategy_for_watching_directory_on_platforms_that_don_t_support_recursive_watching_natively_Colon_UseFsEvents_default_FixedPollingInterval_DynamicPriorityPolling_FixedChunkSizePolling = diagnostics.Specify_strategy_for_watching_directory_on_platforms_that_don_t_support_recursive_watching_natively_Colon_UseFsEvents_default_FixedPollingInterval_DynamicPriorityPolling_FixedChunkSizePolling
1553
+ var Specify_strategy_for_watching_file_Colon_FixedPollingInterval_default_PriorityPollingInterval_DynamicPriorityPolling_FixedChunkSizePolling_UseFsEvents_UseFsEventsOnParentDirectory = diagnostics.Specify_strategy_for_watching_file_Colon_FixedPollingInterval_default_PriorityPollingInterval_DynamicPriorityPolling_FixedChunkSizePolling_UseFsEvents_UseFsEventsOnParentDirectory
1554
+ var Specify_the_JSX_Fragment_reference_used_for_fragments_when_targeting_React_JSX_emit_e_g_React_Fragment_or_Fragment = diagnostics.Specify_the_JSX_Fragment_reference_used_for_fragments_when_targeting_React_JSX_emit_e_g_React_Fragment_or_Fragment
1555
+ var Specify_the_JSX_factory_function_to_use_when_targeting_react_JSX_emit_e_g_React_createElement_or_h = diagnostics.Specify_the_JSX_factory_function_to_use_when_targeting_react_JSX_emit_e_g_React_createElement_or_h
1556
+ var Specify_the_JSX_factory_function_used_when_targeting_React_JSX_emit_e_g_React_createElement_or_h = diagnostics.Specify_the_JSX_factory_function_used_when_targeting_React_JSX_emit_e_g_React_createElement_or_h
1557
+ var Specify_the_JSX_fragment_factory_function_to_use_when_targeting_react_JSX_emit_with_jsxFactory_compiler_option_is_specified_e_g_Fragment = diagnostics.Specify_the_JSX_fragment_factory_function_to_use_when_targeting_react_JSX_emit_with_jsxFactory_compiler_option_is_specified_e_g_Fragment
1558
+ var Specify_the_base_directory_to_resolve_non_relative_module_names = diagnostics.Specify_the_base_directory_to_resolve_non_relative_module_names
1559
+ var Specify_the_end_of_line_sequence_to_be_used_when_emitting_files_Colon_CRLF_dos_or_LF_unix = diagnostics.Specify_the_end_of_line_sequence_to_be_used_when_emitting_files_Colon_CRLF_dos_or_LF_unix
1560
+ var Specify_the_location_where_debugger_should_locate_TypeScript_files_instead_of_source_locations = diagnostics.Specify_the_location_where_debugger_should_locate_TypeScript_files_instead_of_source_locations
1561
+ var Specify_the_location_where_debugger_should_locate_map_files_instead_of_generated_locations = diagnostics.Specify_the_location_where_debugger_should_locate_map_files_instead_of_generated_locations
1562
+ var Specify_the_maximum_folder_depth_used_for_checking_JavaScript_files_from_node_modules_Only_applicable_with_allowJs = diagnostics.Specify_the_maximum_folder_depth_used_for_checking_JavaScript_files_from_node_modules_Only_applicable_with_allowJs
1563
+ var Specify_the_module_specifier_to_be_used_to_import_the_jsx_and_jsxs_factory_functions_from_eg_react = diagnostics.Specify_the_module_specifier_to_be_used_to_import_the_jsx_and_jsxs_factory_functions_from_eg_react
1564
+ var Specify_the_object_invoked_for_createElement_This_only_applies_when_targeting_react_JSX_emit = diagnostics.Specify_the_object_invoked_for_createElement_This_only_applies_when_targeting_react_JSX_emit
1565
+ var Specify_the_output_directory_for_generated_declaration_files = diagnostics.Specify_the_output_directory_for_generated_declaration_files
1566
+ var Specify_the_path_to_tsbuildinfo_incremental_compilation_file = diagnostics.Specify_the_path_to_tsbuildinfo_incremental_compilation_file
1567
+ var Specify_the_root_directory_of_input_files_Use_to_control_the_output_directory_structure_with_outDir = diagnostics.Specify_the_root_directory_of_input_files_Use_to_control_the_output_directory_structure_with_outDir
1568
+ var Specify_the_root_folder_within_your_source_files = diagnostics.Specify_the_root_folder_within_your_source_files
1569
+ var Specify_the_root_path_for_debuggers_to_find_the_reference_source_code = diagnostics.Specify_the_root_path_for_debuggers_to_find_the_reference_source_code
1570
+ var Specify_type_package_names_to_be_included_without_being_referenced_in_a_source_file = diagnostics.Specify_type_package_names_to_be_included_without_being_referenced_in_a_source_file
1571
+ var Specify_what_JSX_code_is_generated = diagnostics.Specify_what_JSX_code_is_generated
1572
+ var Specify_what_approach_the_watcher_should_use_if_the_system_runs_out_of_native_file_watchers = diagnostics.Specify_what_approach_the_watcher_should_use_if_the_system_runs_out_of_native_file_watchers
1573
+ var Specify_what_module_code_is_generated = diagnostics.Specify_what_module_code_is_generated
1574
+ var Split_all_invalid_type_only_imports = diagnostics.Split_all_invalid_type_only_imports
1575
+ var Split_into_two_separate_import_declarations = diagnostics.Split_into_two_separate_import_declarations
1576
+ var Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher = diagnostics.Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher
1577
+ var Spread_types_may_only_be_created_from_object_types = diagnostics.Spread_types_may_only_be_created_from_object_types
1578
+ var Starting_compilation_in_watch_mode = diagnostics.Starting_compilation_in_watch_mode
1579
+ var Statement_expected = diagnostics.Statement_expected
1580
+ var Statements_are_not_allowed_in_ambient_contexts = diagnostics.Statements_are_not_allowed_in_ambient_contexts
1581
+ var Static_members_cannot_reference_class_type_parameters = diagnostics.Static_members_cannot_reference_class_type_parameters
1582
+ var Static_property_0_conflicts_with_built_in_property_Function_0_of_constructor_function_1 = diagnostics.Static_property_0_conflicts_with_built_in_property_Function_0_of_constructor_function_1
1583
+ var Stricter_Typechecking_Options = diagnostics.Stricter_Typechecking_Options
1584
+ var String_literal_expected = diagnostics.String_literal_expected
1585
+ var String_literal_import_and_export_names_are_not_supported_when_the_module_flag_is_set_to_es2015_or_es2020 = diagnostics.String_literal_import_and_export_names_are_not_supported_when_the_module_flag_is_set_to_es2015_or_es2020
1586
+ var String_literal_with_double_quotes_expected = diagnostics.String_literal_with_double_quotes_expected
1587
+ //go:linkname StringifyArgs github.com/microsoft/typescript-go/internal/diagnostics.StringifyArgs
1588
+ func StringifyArgs(args []any) []string
1589
+ var Style_Options = diagnostics.Style_Options
1590
+ var Stylize_errors_and_messages_using_color_and_context_experimental = diagnostics.Stylize_errors_and_messages_using_color_and_context_experimental
1591
+ var Subpattern_flags_must_be_present_when_there_is_a_minus_sign = diagnostics.Subpattern_flags_must_be_present_when_there_is_a_minus_sign
1592
+ var Subsequent_property_declarations_must_have_the_same_type_Property_0_must_be_of_type_1_but_here_has_type_2 = diagnostics.Subsequent_property_declarations_must_have_the_same_type_Property_0_must_be_of_type_1_but_here_has_type_2
1593
+ var Subsequent_variable_declarations_must_have_the_same_type_Variable_0_must_be_of_type_1_but_here_has_type_2 = diagnostics.Subsequent_variable_declarations_must_have_the_same_type_Variable_0_must_be_of_type_1_but_here_has_type_2
1594
+ var Substitution_0_for_pattern_1_has_incorrect_type_expected_string_got_2 = diagnostics.Substitution_0_for_pattern_1_has_incorrect_type_expected_string_got_2
1595
+ var Substitution_0_in_pattern_1_can_have_at_most_one_Asterisk_character = diagnostics.Substitution_0_in_pattern_1_can_have_at_most_one_Asterisk_character
1596
+ var Substitutions_for_pattern_0_should_be_an_array = diagnostics.Substitutions_for_pattern_0_should_be_an_array
1597
+ var Substitutions_for_pattern_0_shouldn_t_be_an_empty_array = diagnostics.Substitutions_for_pattern_0_shouldn_t_be_an_empty_array
1598
+ var Successfully_created_a_tsconfig_json_file = diagnostics.Successfully_created_a_tsconfig_json_file
1599
+ var Super_calls_are_not_permitted_outside_constructors_or_in_nested_functions_inside_constructors = diagnostics.Super_calls_are_not_permitted_outside_constructors_or_in_nested_functions_inside_constructors
1600
+ var Suppress_excess_property_checks_for_object_literals = diagnostics.Suppress_excess_property_checks_for_object_literals
1601
+ var Suppress_noImplicitAny_errors_for_indexing_objects_lacking_index_signatures = diagnostics.Suppress_noImplicitAny_errors_for_indexing_objects_lacking_index_signatures
1602
+ var Suppress_noImplicitAny_errors_when_indexing_objects_that_lack_index_signatures = diagnostics.Suppress_noImplicitAny_errors_when_indexing_objects_that_lack_index_signatures
1603
+ var Switch_each_misused_0_to_1 = diagnostics.Switch_each_misused_0_to_1
1604
+ var Synchronously_call_callbacks_and_update_the_state_of_directory_watchers_on_platforms_that_don_t_support_recursive_watching_natively = diagnostics.Synchronously_call_callbacks_and_update_the_state_of_directory_watchers_on_platforms_that_don_t_support_recursive_watching_natively
1605
+ var Syntax_Colon_0 = diagnostics.Syntax_Colon_0
1606
+ var Tag_0_expects_at_least_1_arguments_but_the_JSX_factory_2_provides_at_most_3 = diagnostics.Tag_0_expects_at_least_1_arguments_but_the_JSX_factory_2_provides_at_most_3
1607
+ var Tagged_template_expressions_are_not_permitted_in_an_optional_chain = diagnostics.Tagged_template_expressions_are_not_permitted_in_an_optional_chain
1608
+ var Target_allows_only_0_element_s_but_source_may_have_more = diagnostics.Target_allows_only_0_element_s_but_source_may_have_more
1609
+ var Target_requires_0_element_s_but_source_may_have_fewer = diagnostics.Target_requires_0_element_s_but_source_may_have_fewer
1610
+ var Target_signature_provides_too_few_arguments_Expected_0_or_more_but_got_1 = diagnostics.Target_signature_provides_too_few_arguments_Expected_0_or_more_but_got_1
1611
+ var The_0_channel_is_narrowed_from_1_to_2_effect_unsafeEffectTypeAssertion = diagnostics.The_0_channel_is_narrowed_from_1_to_2_effect_unsafeEffectTypeAssertion
1612
+ var The_0_modifier_can_only_be_used_in_TypeScript_files = diagnostics.The_0_modifier_can_only_be_used_in_TypeScript_files
1613
+ var The_0_operator_cannot_be_applied_to_type_symbol = diagnostics.The_0_operator_cannot_be_applied_to_type_symbol
1614
+ var The_0_operator_is_not_allowed_for_boolean_types_Consider_using_1_instead = diagnostics.The_0_operator_is_not_allowed_for_boolean_types_Consider_using_1_instead
1615
+ var The_0_property_of_an_async_iterator_must_be_a_method = diagnostics.The_0_property_of_an_async_iterator_must_be_a_method
1616
+ var The_0_property_of_an_iterator_must_be_a_method = diagnostics.The_0_property_of_an_iterator_must_be_a_method
1617
+ var The_Object_type_is_assignable_to_very_few_other_types_Did_you_mean_to_use_the_any_type_instead = diagnostics.The_Object_type_is_assignable_to_very_few_other_types_Did_you_mean_to_use_the_any_type_instead
1618
+ var The_Self_type_parameter_for_this_class_should_be_0_effect_classSelfMismatch = diagnostics.The_Self_type_parameter_for_this_class_should_be_0_effect_classSelfMismatch
1619
+ var The_Unicode_u_flag_and_the_Unicode_Sets_v_flag_cannot_be_set_simultaneously = diagnostics.The_Unicode_u_flag_and_the_Unicode_Sets_v_flag_cannot_be_set_simultaneously
1620
+ var The_adapter_of_Effect_gen_is_not_required_anymore_it_is_now_just_an_alias_of_pipe_effect_effectGenUsesAdapter = diagnostics.The_adapter_of_Effect_gen_is_not_required_anymore_it_is_now_just_an_alias_of_pipe_effect_effectGenUsesAdapter
1621
+ var The_arguments_object_cannot_be_referenced_in_an_arrow_function_in_ES5_Consider_using_a_standard_function_expression = diagnostics.The_arguments_object_cannot_be_referenced_in_an_arrow_function_in_ES5_Consider_using_a_standard_function_expression
1622
+ var The_arguments_object_cannot_be_referenced_in_an_async_function_or_method_in_ES5_Consider_using_a_standard_function_or_method = diagnostics.The_arguments_object_cannot_be_referenced_in_an_async_function_or_method_in_ES5_Consider_using_a_standard_function_or_method
1623
+ var The_body_of_an_if_statement_cannot_be_the_empty_statement = diagnostics.The_body_of_an_if_statement_cannot_be_the_empty_statement
1624
+ var The_call_would_have_succeeded_against_this_implementation_but_implementation_signatures_of_overloads_are_not_externally_visible = diagnostics.The_call_would_have_succeeded_against_this_implementation_but_implementation_signatures_of_overloads_are_not_externally_visible
1625
+ var The_catch_callback_in_0_returns_the_global_Error_type_Untagged_errors_merge_together_in_the_Effect_error_channel_and_lose_type_level_distinction_a_tagged_error_preserves_that_distinction_and_can_wrap_the_original_error_in_a_cause_property_effect_globalErrorInEffectCatch = diagnostics.The_catch_callback_in_0_returns_the_global_Error_type_Untagged_errors_merge_together_in_the_Effect_error_channel_and_lose_type_level_distinction_a_tagged_error_preserves_that_distinction_and_can_wrap_the_original_error_in_a_cause_property_effect_globalErrorInEffectCatch
1626
+ var The_catch_callback_in_0_returns_unknown_so_the_Effect_error_type_stays_untyped_A_specific_typed_error_preserves_error_channel_information_for_example_by_narrowing_the_value_or_wrapping_it_in_Data_TaggedError_effect_unknownInEffectCatch = diagnostics.The_catch_callback_in_0_returns_unknown_so_the_Effect_error_type_stays_untyped_A_specific_typed_error_preserves_error_channel_information_for_example_by_narrowing_the_value_or_wrapping_it_in_Data_TaggedError_effect_unknownInEffectCatch
1627
+ var The_character_set_of_the_input_files = diagnostics.The_character_set_of_the_input_files
1628
+ var The_common_source_directory_of_0_is_1_The_rootDir_setting_must_be_explicitly_set_to_this_or_another_path_to_adjust_your_output_s_file_layout = diagnostics.The_common_source_directory_of_0_is_1_The_rootDir_setting_must_be_explicitly_set_to_this_or_another_path_to_adjust_your_output_s_file_layout
1629
+ var The_containing_arrow_function_captures_the_global_value_of_this = diagnostics.The_containing_arrow_function_captures_the_global_value_of_this
1630
+ var The_containing_function_or_module_body_is_too_large_for_control_flow_analysis = diagnostics.The_containing_function_or_module_body_is_too_large_for_control_flow_analysis
1631
+ var The_current_file_is_a_CommonJS_module_and_cannot_use_await_at_the_top_level = diagnostics.The_current_file_is_a_CommonJS_module_and_cannot_use_await_at_the_top_level
1632
+ var 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_0_call_instead = diagnostics.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_0_call_instead
1633
+ var The_current_host_does_not_support_the_0_option = diagnostics.The_current_host_does_not_support_the_0_option
1634
+ var The_declaration_of_0_that_you_probably_intended_to_use_is_defined_here = diagnostics.The_declaration_of_0_that_you_probably_intended_to_use_is_defined_here
1635
+ var The_declaration_was_marked_as_deprecated_here = diagnostics.The_declaration_was_marked_as_deprecated_here
1636
+ var The_error_channel_contains_an_Effect_0_Putting_Effect_computations_in_the_failure_channel_is_not_intended_keep_only_failure_types_there_effect_effectInFailure = diagnostics.The_error_channel_contains_an_Effect_0_Putting_Effect_computations_in_the_failure_channel_is_not_intended_keep_only_failure_types_there_effect_effectInFailure
1637
+ var The_expected_type_comes_from_property_0_which_is_declared_here_on_type_1 = diagnostics.The_expected_type_comes_from_property_0_which_is_declared_here_on_type_1
1638
+ var The_expected_type_comes_from_the_return_type_of_this_signature = diagnostics.The_expected_type_comes_from_the_return_type_of_this_signature
1639
+ var The_expected_type_comes_from_this_index_signature = diagnostics.The_expected_type_comes_from_this_index_signature
1640
+ var The_expression_of_an_export_assignment_must_be_an_identifier_or_qualified_name_in_an_ambient_context = diagnostics.The_expression_of_an_export_assignment_must_be_an_identifier_or_qualified_name_in_an_ambient_context
1641
+ var The_file_is_in_the_program_because_Colon = diagnostics.The_file_is_in_the_program_because_Colon
1642
+ var The_files_list_in_config_file_0_is_empty = diagnostics.The_files_list_in_config_file_0_is_empty
1643
+ var The_first_export_default_is_here = diagnostics.The_first_export_default_is_here
1644
+ var The_first_parameter_of_the_then_method_of_a_promise_must_be_a_callback = diagnostics.The_first_parameter_of_the_then_method_of_a_promise_must_be_a_callback
1645
+ var The_global_type_JSX_0_may_not_have_more_than_one_property = diagnostics.The_global_type_JSX_0_may_not_have_more_than_one_property
1646
+ var The_implementation_signature_is_declared_here = diagnostics.The_implementation_signature_is_declared_here
1647
+ var The_import_meta_meta_property_is_not_allowed_in_files_which_will_build_into_CommonJS_output = diagnostics.The_import_meta_meta_property_is_not_allowed_in_files_which_will_build_into_CommonJS_output
1648
+ var The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_es2022_esnext_system_node16_node18_node20_or_nodenext = diagnostics.The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_es2022_esnext_system_node16_node18_node20_or_nodenext
1649
+ var The_inferred_type_of_0_cannot_be_named_without_a_reference_to_1_This_is_likely_not_portable_A_type_annotation_is_necessary = diagnostics.The_inferred_type_of_0_cannot_be_named_without_a_reference_to_1_This_is_likely_not_portable_A_type_annotation_is_necessary
1650
+ var The_inferred_type_of_0_cannot_be_named_without_a_reference_to_2_from_1_This_is_likely_not_portable_A_type_annotation_is_necessary = diagnostics.The_inferred_type_of_0_cannot_be_named_without_a_reference_to_2_from_1_This_is_likely_not_portable_A_type_annotation_is_necessary
1651
+ var The_inferred_type_of_0_references_a_type_with_a_cyclic_structure_which_cannot_be_trivially_serialized_A_type_annotation_is_necessary = diagnostics.The_inferred_type_of_0_references_a_type_with_a_cyclic_structure_which_cannot_be_trivially_serialized_A_type_annotation_is_necessary
1652
+ var The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary = diagnostics.The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary
1653
+ var The_inferred_type_of_this_node_exceeds_the_maximum_length_the_compiler_will_serialize_An_explicit_type_annotation_is_needed = diagnostics.The_inferred_type_of_this_node_exceeds_the_maximum_length_the_compiler_will_serialize_An_explicit_type_annotation_is_needed
1654
+ var The_initializer_of_a_using_declaration_must_be_either_an_object_with_a_Symbol_dispose_method_or_be_null_or_undefined = diagnostics.The_initializer_of_a_using_declaration_must_be_either_an_object_with_a_Symbol_dispose_method_or_be_null_or_undefined
1655
+ var The_initializer_of_an_await_using_declaration_must_be_either_an_object_with_a_Symbol_asyncDispose_or_Symbol_dispose_method_or_be_null_or_undefined = diagnostics.The_initializer_of_an_await_using_declaration_must_be_either_an_object_with_a_Symbol_asyncDispose_or_Symbol_dispose_method_or_be_null_or_undefined
1656
+ var The_intersection_0_was_reduced_to_never_because_property_1_exists_in_multiple_constituents_and_is_private_in_some = diagnostics.The_intersection_0_was_reduced_to_never_because_property_1_exists_in_multiple_constituents_and_is_private_in_some
1657
+ var The_intersection_0_was_reduced_to_never_because_property_1_has_conflicting_types_in_some_constituents = diagnostics.The_intersection_0_was_reduced_to_never_because_property_1_has_conflicting_types_in_some_constituents
1658
+ var The_intrinsic_keyword_can_only_be_used_to_declare_compiler_provided_intrinsic_types = diagnostics.The_intrinsic_keyword_can_only_be_used_to_declare_compiler_provided_intrinsic_types
1659
+ var The_jsxFragmentFactory_compiler_option_must_be_provided_to_use_JSX_fragments_with_the_jsxFactory_compiler_option = diagnostics.The_jsxFragmentFactory_compiler_option_must_be_provided_to_use_JSX_fragments_with_the_jsxFactory_compiler_option
1660
+ var The_last_overload_gave_the_following_error = diagnostics.The_last_overload_gave_the_following_error
1661
+ var The_last_overload_is_declared_here = diagnostics.The_last_overload_is_declared_here
1662
+ var The_left_hand_side_of_a_for_in_statement_cannot_be_a_destructuring_pattern = diagnostics.The_left_hand_side_of_a_for_in_statement_cannot_be_a_destructuring_pattern
1663
+ var The_left_hand_side_of_a_for_in_statement_cannot_be_a_using_declaration = diagnostics.The_left_hand_side_of_a_for_in_statement_cannot_be_a_using_declaration
1664
+ var The_left_hand_side_of_a_for_in_statement_cannot_be_an_await_using_declaration = diagnostics.The_left_hand_side_of_a_for_in_statement_cannot_be_an_await_using_declaration
1665
+ var The_left_hand_side_of_a_for_in_statement_cannot_use_a_type_annotation = diagnostics.The_left_hand_side_of_a_for_in_statement_cannot_use_a_type_annotation
1666
+ var The_left_hand_side_of_a_for_in_statement_may_not_be_an_optional_property_access = diagnostics.The_left_hand_side_of_a_for_in_statement_may_not_be_an_optional_property_access
1667
+ var The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access = diagnostics.The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access
1668
+ var The_left_hand_side_of_a_for_in_statement_must_be_of_type_string_or_any = diagnostics.The_left_hand_side_of_a_for_in_statement_must_be_of_type_string_or_any
1669
+ var The_left_hand_side_of_a_for_of_statement_cannot_use_a_type_annotation = diagnostics.The_left_hand_side_of_a_for_of_statement_cannot_use_a_type_annotation
1670
+ var The_left_hand_side_of_a_for_of_statement_may_not_be_an_optional_property_access = diagnostics.The_left_hand_side_of_a_for_of_statement_may_not_be_an_optional_property_access
1671
+ var The_left_hand_side_of_a_for_of_statement_may_not_be_async = diagnostics.The_left_hand_side_of_a_for_of_statement_may_not_be_async
1672
+ var The_left_hand_side_of_a_for_of_statement_must_be_a_variable_or_a_property_access = diagnostics.The_left_hand_side_of_a_for_of_statement_must_be_a_variable_or_a_property_access
1673
+ var The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type = diagnostics.The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type
1674
+ var The_left_hand_side_of_an_assignment_expression_may_not_be_an_optional_property_access = diagnostics.The_left_hand_side_of_an_assignment_expression_may_not_be_an_optional_property_access
1675
+ var The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access = diagnostics.The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access
1676
+ var The_left_hand_side_of_an_instanceof_expression_must_be_assignable_to_the_first_argument_of_the_right_hand_side_s_Symbol_hasInstance_method = diagnostics.The_left_hand_side_of_an_instanceof_expression_must_be_assignable_to_the_first_argument_of_the_right_hand_side_s_Symbol_hasInstance_method
1677
+ var The_left_hand_side_of_an_instanceof_expression_must_be_of_type_any_an_object_type_or_a_type_parameter = diagnostics.The_left_hand_side_of_an_instanceof_expression_must_be_of_type_any_an_object_type_or_a_type_parameter
1678
+ var The_locale_used_when_displaying_messages_to_the_user_e_g_en_us = diagnostics.The_locale_used_when_displaying_messages_to_the_user_e_g_en_us
1679
+ var The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files = diagnostics.The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files
1680
+ var The_operand_of_a_delete_operator_cannot_be_a_private_identifier = diagnostics.The_operand_of_a_delete_operator_cannot_be_a_private_identifier
1681
+ var The_operand_of_a_delete_operator_cannot_be_a_read_only_property = diagnostics.The_operand_of_a_delete_operator_cannot_be_a_read_only_property
1682
+ var The_operand_of_a_delete_operator_must_be_a_property_reference = diagnostics.The_operand_of_a_delete_operator_must_be_a_property_reference
1683
+ var The_operand_of_a_delete_operator_must_be_optional = diagnostics.The_operand_of_a_delete_operator_must_be_optional
1684
+ var The_operand_of_an_increment_or_decrement_operator_may_not_be_an_optional_property_access = diagnostics.The_operand_of_an_increment_or_decrement_operator_may_not_be_an_optional_property_access
1685
+ var The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access = diagnostics.The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access
1686
+ var The_parser_expected_to_find_a_1_to_match_the_0_token_here = diagnostics.The_parser_expected_to_find_a_1_to_match_the_0_token_here
1687
+ var The_previous_Effect_does_not_fail_so_this_error_handling_branch_will_never_run_effect_catchUnfailableEffect = diagnostics.The_previous_Effect_does_not_fail_so_this_error_handling_branch_will_never_run_effect_catchUnfailableEffect
1688
+ var The_project_root_is_ambiguous_but_is_required_to_resolve_export_map_entry_0_in_file_1_Supply_the_rootDir_compiler_option_to_disambiguate = diagnostics.The_project_root_is_ambiguous_but_is_required_to_resolve_export_map_entry_0_in_file_1_Supply_the_rootDir_compiler_option_to_disambiguate
1689
+ var The_project_root_is_ambiguous_but_is_required_to_resolve_import_map_entry_0_in_file_1_Supply_the_rootDir_compiler_option_to_disambiguate = diagnostics.The_project_root_is_ambiguous_but_is_required_to_resolve_import_map_entry_0_in_file_1_Supply_the_rootDir_compiler_option_to_disambiguate
1690
+ var The_property_0_cannot_be_accessed_on_type_1_within_this_class_because_it_is_shadowed_by_another_private_identifier_with_the_same_spelling = diagnostics.The_property_0_cannot_be_accessed_on_type_1_within_this_class_because_it_is_shadowed_by_another_private_identifier_with_the_same_spelling
1691
+ var The_return_type_of_a_parameter_decorator_function_must_be_either_void_or_any = diagnostics.The_return_type_of_a_parameter_decorator_function_must_be_either_void_or_any
1692
+ var The_return_type_of_a_property_decorator_function_must_be_either_void_or_any = diagnostics.The_return_type_of_a_property_decorator_function_must_be_either_void_or_any
1693
+ var The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member = diagnostics.The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member
1694
+ var The_return_type_of_an_async_function_or_method_must_be_the_global_Promise_T_type = diagnostics.The_return_type_of_an_async_function_or_method_must_be_the_global_Promise_T_type
1695
+ var The_return_type_of_an_async_function_or_method_must_be_the_global_Promise_T_type_Did_you_mean_to_write_Promise_0 = diagnostics.The_return_type_of_an_async_function_or_method_must_be_the_global_Promise_T_type_Did_you_mean_to_write_Promise_0
1696
+ var The_right_hand_side_of_a_for_in_statement_must_be_of_type_any_an_object_type_or_a_type_parameter_but_here_has_type_0 = diagnostics.The_right_hand_side_of_a_for_in_statement_must_be_of_type_any_an_object_type_or_a_type_parameter_but_here_has_type_0
1697
+ var The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type = diagnostics.The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type
1698
+ var The_right_hand_side_of_an_instanceof_expression_must_be_either_of_type_any_a_class_function_or_other_type_assignable_to_the_Function_interface_type_or_an_object_type_with_a_Symbol_hasInstance_method = diagnostics.The_right_hand_side_of_an_instanceof_expression_must_be_either_of_type_any_a_class_function_or_other_type_assignable_to_the_Function_interface_type_or_an_object_type_with_a_Symbol_hasInstance_method
1699
+ var The_right_hand_side_of_an_instanceof_expression_must_not_be_an_instantiation_expression = diagnostics.The_right_hand_side_of_an_instanceof_expression_must_not_be_an_instantiation_expression
1700
+ var The_root_value_of_a_0_file_must_be_an_object = diagnostics.The_root_value_of_a_0_file_must_be_an_object
1701
+ var The_runtime_will_invoke_the_decorator_with_1_arguments_but_the_decorator_expects_0 = diagnostics.The_runtime_will_invoke_the_decorator_with_1_arguments_but_the_decorator_expects_0
1702
+ var The_runtime_will_invoke_the_decorator_with_1_arguments_but_the_decorator_expects_at_least_0 = diagnostics.The_runtime_will_invoke_the_decorator_with_1_arguments_but_the_decorator_expects_at_least_0
1703
+ var The_shadowing_declaration_of_0_is_defined_here = diagnostics.The_shadowing_declaration_of_0_is_defined_here
1704
+ var The_signature_0_of_1_is_deprecated = diagnostics.The_signature_0_of_1_is_deprecated
1705
+ var The_specified_path_does_not_exist_Colon_0 = diagnostics.The_specified_path_does_not_exist_Colon_0
1706
+ var The_tag_was_first_specified_here = diagnostics.The_tag_was_first_specified_here
1707
+ var The_target_of_an_object_rest_assignment_may_not_be_an_optional_property_access = diagnostics.The_target_of_an_object_rest_assignment_may_not_be_an_optional_property_access
1708
+ var The_target_of_an_object_rest_assignment_must_be_a_variable_or_a_property_access = diagnostics.The_target_of_an_object_rest_assignment_must_be_a_variable_or_a_property_access
1709
+ var The_this_context_of_type_0_is_not_assignable_to_method_s_this_of_type_1 = diagnostics.The_this_context_of_type_0_is_not_assignable_to_method_s_this_of_type_1
1710
+ var The_this_types_of_each_signature_are_incompatible = diagnostics.The_this_types_of_each_signature_are_incompatible
1711
+ var The_type_0_is_readonly_and_cannot_be_assigned_to_the_mutable_type_1 = diagnostics.The_type_0_is_readonly_and_cannot_be_assigned_to_the_mutable_type_1
1712
+ var The_type_modifier_cannot_be_used_on_a_named_export_when_export_type_is_used_on_its_export_statement = diagnostics.The_type_modifier_cannot_be_used_on_a_named_export_when_export_type_is_used_on_its_export_statement
1713
+ var The_type_modifier_cannot_be_used_on_a_named_import_when_import_type_is_used_on_its_import_statement = diagnostics.The_type_modifier_cannot_be_used_on_a_named_import_when_import_type_is_used_on_its_import_statement
1714
+ var The_type_of_this_node_cannot_be_serialized_because_its_property_0_cannot_be_serialized = diagnostics.The_type_of_this_node_cannot_be_serialized_because_its_property_0_cannot_be_serialized
1715
+ var The_type_returned_by_the_0_method_of_an_async_iterator_must_be_a_promise_for_a_type_with_a_value_property = diagnostics.The_type_returned_by_the_0_method_of_an_async_iterator_must_be_a_promise_for_a_type_with_a_value_property
1716
+ var The_type_returned_by_the_0_method_of_an_iterator_must_have_a_value_property = diagnostics.The_type_returned_by_the_0_method_of_an_iterator_must_have_a_value_property
1717
+ var The_types_of_0_are_incompatible_between_these_types = diagnostics.The_types_of_0_are_incompatible_between_these_types
1718
+ var The_types_returned_by_0_are_incompatible_between_these_types = diagnostics.The_types_returned_by_0_are_incompatible_between_these_types
1719
+ var The_value_0_cannot_be_used_here = diagnostics.The_value_0_cannot_be_used_here
1720
+ var The_variable_declaration_of_a_for_in_statement_cannot_have_an_initializer = diagnostics.The_variable_declaration_of_a_for_in_statement_cannot_have_an_initializer
1721
+ var The_variable_declaration_of_a_for_of_statement_cannot_have_an_initializer = diagnostics.The_variable_declaration_of_a_for_of_statement_cannot_have_an_initializer
1722
+ var The_with_statement_is_not_supported_All_symbols_in_a_with_block_will_have_type_any = diagnostics.The_with_statement_is_not_supported_All_symbols_in_a_with_block_will_have_type_any
1723
+ var There_are_types_at_0_but_this_result_could_not_be_resolved_under_your_current_moduleResolution_setting_Consider_updating_to_node16_nodenext_or_bundler = diagnostics.There_are_types_at_0_but_this_result_could_not_be_resolved_under_your_current_moduleResolution_setting_Consider_updating_to_node16_nodenext_or_bundler
1724
+ var There_are_types_at_0_but_this_result_could_not_be_resolved_when_respecting_package_json_exports_The_1_library_may_need_to_update_its_package_json_or_typings = diagnostics.There_are_types_at_0_but_this_result_could_not_be_resolved_when_respecting_package_json_exports_The_1_library_may_need_to_update_its_package_json_or_typings
1725
+ var There_is_a_nested_0_in_the_void_success_channel_beware_that_this_could_lead_to_nested_Effect_Effect_that_won_t_be_executed_effect_effectInVoidSuccess = diagnostics.There_is_a_nested_0_in_the_void_success_channel_beware_that_this_could_lead_to_nested_Effect_Effect_that_won_t_be_executed_effect_effectInVoidSuccess
1726
+ var There_is_no_capturing_group_named_0_in_this_regular_expression = diagnostics.There_is_no_capturing_group_named_0_in_this_regular_expression
1727
+ var There_is_nothing_available_for_repetition = diagnostics.There_is_nothing_available_for_repetition
1728
+ var These_0_consecutive_catchTag_transformations_can_be_collapsed_into_a_single_catchTags_call_effect_multipleCatchTag = diagnostics.These_0_consecutive_catchTag_transformations_can_be_collapsed_into_a_single_catchTags_call_effect_multipleCatchTag
1729
+ var This_Effect_able_0_value_is_neither_yielded_nor_assigned_to_a_variable_effect_floatingEffect = diagnostics.This_Effect_able_0_value_is_neither_yielded_nor_assigned_to_a_variable_effect_floatingEffect
1730
+ var This_Effect_code_calls_the_global_fetch_function_HTTP_requests_in_Effect_code_are_represented_through_HttpClient_from_0_effect_globalFetchInEffect = diagnostics.This_Effect_code_calls_the_global_fetch_function_HTTP_requests_in_Effect_code_are_represented_through_HttpClient_from_0_effect_globalFetchInEffect
1731
+ var This_Effect_code_constructs_new_Date_date_values_in_Effect_code_are_represented_through_DateTime_from_Effect_effect_globalDateInEffect = diagnostics.This_Effect_code_constructs_new_Date_date_values_in_Effect_code_are_represented_through_DateTime_from_Effect_effect_globalDateInEffect
1732
+ var This_Effect_code_reads_from_process_env_environment_configuration_in_Effect_code_is_represented_through_Config_from_Effect_effect_processEnvInEffect = diagnostics.This_Effect_code_reads_from_process_env_environment_configuration_in_Effect_code_is_represented_through_Config_from_Effect_effect_processEnvInEffect
1733
+ var This_Effect_code_uses_1_the_corresponding_timer_API_in_this_context_is_0_from_Effect_effect_globalTimersInEffect = diagnostics.This_Effect_code_uses_1_the_corresponding_timer_API_in_this_context_is_0_from_Effect_effect_globalTimersInEffect
1734
+ var This_Effect_code_uses_Date_now_time_access_in_Effect_code_is_represented_through_Clock_from_Effect_effect_globalDateInEffect = diagnostics.This_Effect_code_uses_Date_now_time_access_in_Effect_code_is_represented_through_Clock_from_Effect_effect_globalDateInEffect
1735
+ var This_Effect_code_uses_Math_random_randomness_is_represented_through_the_Effect_Random_service_effect_globalRandomInEffect = diagnostics.This_Effect_code_uses_Math_random_randomness_is_represented_through_the_Effect_Random_service_effect_globalRandomInEffect
1736
+ var This_Effect_code_uses_console_1_logging_in_Effect_code_is_represented_through_0_effect_globalConsoleInEffect = diagnostics.This_Effect_code_uses_console_1_logging_in_Effect_code_is_represented_through_0_effect_globalConsoleInEffect
1737
+ var This_Effect_code_uses_crypto_randomUUID_prefer_the_Effect_Random_module_instead_because_it_uses_Effect_injected_randomness_rather_than_the_crypto_module_behind_the_scenes_effect_cryptoRandomUUIDInEffect = diagnostics.This_Effect_code_uses_crypto_randomUUID_prefer_the_Effect_Random_module_instead_because_it_uses_Effect_injected_randomness_rather_than_the_crypto_module_behind_the_scenes_effect_cryptoRandomUUIDInEffect
1738
+ var This_Effect_gen_contains_a_single_return_statement_effect_unnecessaryEffectGen = diagnostics.This_Effect_gen_contains_a_single_return_statement_effect_unnecessaryEffectGen
1739
+ var This_Effect_generator_contains_try_Slashcatch_in_this_context_error_handling_is_expressed_with_Effect_APIs_such_as_Effect_try_Effect_tryPromise_Effect_catch_Effect_catchTag_effect_tryCatchInEffectGen = diagnostics.This_Effect_generator_contains_try_Slashcatch_in_this_context_error_handling_is_expressed_with_Effect_APIs_such_as_Effect_try_Effect_tryPromise_Effect_catch_Effect_catchTag_effect_tryCatchInEffectGen
1740
+ var This_Effect_never_succeeds_using_return_yield_Asterisk_preserves_a_definitive_generator_exit_point_for_type_narrowing_and_tooling_support_effect_missingReturnYieldStar = diagnostics.This_Effect_never_succeeds_using_return_yield_Asterisk_preserves_a_definitive_generator_exit_point_for_type_narrowing_and_tooling_support_effect_missingReturnYieldStar
1741
+ var This_Effect_requires_a_service_that_is_missing_from_the_expected_Effect_context_Colon_0_effect_missingEffectContext = diagnostics.This_Effect_requires_a_service_that_is_missing_from_the_expected_Effect_context_Colon_0_effect_missingEffectContext
1742
+ var This_Effect_sync_thunk_returns_a_Promise_Use_Effect_promise_or_Effect_tryPromise_to_represent_async_work_effect_lazyPromiseInEffectSync = diagnostics.This_Effect_sync_thunk_returns_a_Promise_Use_Effect_promise_or_Effect_tryPromise_to_represent_async_work_effect_lazyPromiseInEffectSync
1743
+ var This_Effect_value_is_neither_yielded_nor_used_in_an_assignment_effect_floatingEffect = diagnostics.This_Effect_value_is_neither_yielded_nor_used_in_an_assignment_effect_floatingEffect
1744
+ var This_JSX_tag_requires_0_to_be_in_scope_but_it_could_not_be_found = diagnostics.This_JSX_tag_requires_0_to_be_in_scope_but_it_could_not_be_found
1745
+ var This_JSX_tag_requires_the_module_path_0_to_exist_but_none_could_be_found_Make_sure_you_have_types_for_the_appropriate_package_installed = diagnostics.This_JSX_tag_requires_the_module_path_0_to_exist_but_none_could_be_found_Make_sure_you_have_types_for_the_appropriate_package_installed
1746
+ var This_JSX_tag_s_0_prop_expects_a_single_child_of_type_1_but_multiple_children_were_provided = diagnostics.This_JSX_tag_s_0_prop_expects_a_single_child_of_type_1_but_multiple_children_were_provided
1747
+ var This_JSX_tag_s_0_prop_expects_type_1_which_requires_multiple_children_but_only_a_single_child_was_provided = diagnostics.This_JSX_tag_s_0_prop_expects_type_1_which_requires_multiple_children_but_only_a_single_child_was_provided
1748
+ var This_Schema_Struct_includes_a_tag_field_Schema_TaggedStruct_is_the_tagged_struct_form_for_this_pattern_and_makes_the_tag_optional_in_the_constructor_effect_schemaStructWithTag = diagnostics.This_Schema_Struct_includes_a_tag_field_Schema_TaggedStruct_is_the_tagged_struct_form_for_this_pattern_and_makes_the_tag_optional_in_the_constructor_effect_schemaStructWithTag
1749
+ var This_Schema_Union_contains_multiple_Schema_Literal_members_and_can_be_simplified_to_a_single_Schema_Literal_call_effect_schemaUnionOfLiterals = diagnostics.This_Schema_Union_contains_multiple_Schema_Literal_members_and_can_be_simplified_to_a_single_Schema_Literal_call_effect_schemaUnionOfLiterals
1750
+ var This_Schema_class_is_constructed_with_new_0_make_can_be_used_to_construct_the_Schema_class_instance_effect_newSchemaClass = diagnostics.This_Schema_class_is_constructed_with_new_0_make_can_be_used_to_construct_the_Schema_class_instance_effect_newSchemaClass
1751
+ var This_Schema_number_API_accepts_NaN_Infinity_and_Infinity_Use_0_for_finite_domain_numbers_If_non_finite_values_are_intentional_disable_this_diagnostic_for_that_line_effect_schemaNumber = diagnostics.This_Schema_number_API_accepts_NaN_Infinity_and_Infinity_Use_0_for_finite_domain_numbers_If_non_finite_values_are_intentional_disable_this_diagnostic_for_that_line_effect_schemaNumber
1752
+ var This_Schema_subclass_defines_its_own_constructor_For_Schema_classes_constructor_overrides_break_decoding_behavior_for_the_class_shape_Custom_construction_can_be_expressed_through_a_static_new_method_instead_effect_overriddenSchemaConstructor = diagnostics.This_Schema_subclass_defines_its_own_constructor_For_Schema_classes_constructor_overrides_break_decoding_behavior_for_the_class_shape_Custom_construction_can_be_expressed_through_a_static_new_method_instead_effect_overriddenSchemaConstructor
1753
+ var This_arrow_function_block_only_returns_an_expression_and_can_use_a_concise_body_effect_unnecessaryArrowBlock = diagnostics.This_arrow_function_block_only_returns_an_expression_and_can_use_a_concise_body_effect_unnecessaryArrowBlock
1754
+ var This_backreference_refers_to_a_group_that_does_not_exist_There_are_no_capturing_groups_in_this_regular_expression = diagnostics.This_backreference_refers_to_a_group_that_does_not_exist_There_are_no_capturing_groups_in_this_regular_expression
1755
+ var This_backreference_refers_to_a_group_that_does_not_exist_There_are_only_0_capturing_groups_in_this_regular_expression = diagnostics.This_backreference_refers_to_a_group_that_does_not_exist_There_are_only_0_capturing_groups_in_this_regular_expression
1756
+ var This_binary_expression_is_never_nullish_Are_you_missing_parentheses = diagnostics.This_binary_expression_is_never_nullish_Are_you_missing_parentheses
1757
+ var This_catchTag_transformation_is_part_of_a_consecutive_chain_that_can_be_collapsed_into_catchTags_effect_multipleCatchTag = diagnostics.This_catchTag_transformation_is_part_of_a_consecutive_chain_that_can_be_collapsed_into_catchTags_effect_multipleCatchTag
1758
+ var This_character_cannot_be_escaped_in_a_regular_expression = diagnostics.This_character_cannot_be_escaped_in_a_regular_expression
1759
+ var This_class_extends_the_native_Error_type_directly_Untagged_native_errors_lose_distinction_in_the_Effect_failure_channel_effect_extendsNativeError = diagnostics.This_class_extends_the_native_Error_type_directly_Untagged_native_errors_lose_distinction_in_the_Effect_failure_channel_effect_extendsNativeError
1760
+ var This_code_constructs_new_Date_date_values_are_represented_through_DateTime_from_Effect_effect_globalDate = diagnostics.This_code_constructs_new_Date_date_values_are_represented_through_DateTime_from_Effect_effect_globalDate
1761
+ var This_code_constructs_new_Promise_prefer_Effect_APIs_such_as_Effect_async_Effect_promise_or_Effect_tryPromise_instead_of_manual_Promise_construction_effect_newPromise = diagnostics.This_code_constructs_new_Promise_prefer_Effect_APIs_such_as_Effect_async_Effect_promise_or_Effect_tryPromise_instead_of_manual_Promise_construction_effect_newPromise
1762
+ var This_code_declares_an_async_function_consider_representing_this_async_control_flow_with_Effect_values_and_Effect_gen_effect_asyncFunction = diagnostics.This_code_declares_an_async_function_consider_representing_this_async_control_flow_with_Effect_values_and_Effect_gen_effect_asyncFunction
1763
+ var This_code_reads_from_process_env_environment_configuration_is_represented_through_Config_from_Effect_effect_processEnv = diagnostics.This_code_reads_from_process_env_environment_configuration_is_represented_through_Config_from_Effect_effect_processEnv
1764
+ var This_code_uses_1_the_corresponding_Effect_timer_API_is_0_from_Effect_effect_globalTimers = diagnostics.This_code_uses_1_the_corresponding_Effect_timer_API_is_0_from_Effect_effect_globalTimers
1765
+ var This_code_uses_Date_now_time_access_is_represented_through_Clock_from_Effect_effect_globalDate = diagnostics.This_code_uses_Date_now_time_access_is_represented_through_Clock_from_Effect_effect_globalDate
1766
+ var This_code_uses_JSON_parse_or_JSON_stringify_0_effect_preferSchemaOverJson = diagnostics.This_code_uses_JSON_parse_or_JSON_stringify_0_effect_preferSchemaOverJson
1767
+ var This_code_uses_Math_random_randomness_is_represented_through_the_Effect_Random_service_effect_globalRandom = diagnostics.This_code_uses_Math_random_randomness_is_represented_through_the_Effect_Random_service_effect_globalRandom
1768
+ var This_code_uses_console_1_the_corresponding_Effect_logging_API_is_0_effect_globalConsole = diagnostics.This_code_uses_console_1_the_corresponding_Effect_logging_API_is_0_effect_globalConsole
1769
+ var This_code_uses_crypto_randomUUID_prefer_the_Effect_Random_module_instead_because_it_uses_Effect_injected_randomness_rather_than_the_crypto_module_behind_the_scenes_effect_cryptoRandomUUID = diagnostics.This_code_uses_crypto_randomUUID_prefer_the_Effect_Random_module_instead_because_it_uses_Effect_injected_randomness_rather_than_the_crypto_module_behind_the_scenes_effect_cryptoRandomUUID
1770
+ var This_code_uses_instanceof_with_an_Effect_Schema_type_Schema_is_is_the_schema_aware_runtime_check_for_this_case_effect_instanceOfSchema = diagnostics.This_code_uses_instanceof_with_an_Effect_Schema_type_Schema_is_is_the_schema_aware_runtime_check_for_this_case_effect_instanceOfSchema
1771
+ var This_code_uses_the_global_fetch_function_HTTP_requests_are_represented_through_HttpClient_from_0_effect_globalFetch = diagnostics.This_code_uses_the_global_fetch_function_HTTP_requests_are_represented_through_HttpClient_from_0_effect_globalFetch
1772
+ var This_comparison_appears_to_be_unintentional_because_the_types_0_and_1_have_no_overlap = diagnostics.This_comparison_appears_to_be_unintentional_because_the_types_0_and_1_have_no_overlap
1773
+ var This_condition_will_always_return_0 = diagnostics.This_condition_will_always_return_0
1774
+ var This_condition_will_always_return_0_since_JavaScript_compares_objects_by_reference_not_value = diagnostics.This_condition_will_always_return_0_since_JavaScript_compares_objects_by_reference_not_value
1775
+ var This_condition_will_always_return_true_since_this_0_is_always_defined = diagnostics.This_condition_will_always_return_true_since_this_0_is_always_defined
1776
+ var This_condition_will_always_return_true_since_this_function_is_always_defined_Did_you_mean_to_call_it_instead = diagnostics.This_condition_will_always_return_true_since_this_function_is_always_defined_Did_you_mean_to_call_it_instead
1777
+ var This_constructor_function_may_be_converted_to_a_class_declaration = diagnostics.This_constructor_function_may_be_converted_to_a_class_declaration
1778
+ var This_expression_can_be_rewritten_in_the_reusable_function_form_0_effect_effectFnOpportunity = diagnostics.This_expression_can_be_rewritten_in_the_reusable_function_form_0_effect_effectFnOpportunity
1779
+ var This_expression_chains_multiple_Effect_provide_calls_Providing_Layers_in_multiple_calls_in_a_chain_can_break_service_lifecycle_behavior_compared_with_a_single_combined_provide_with_merged_layers_effect_multipleEffectProvide = diagnostics.This_expression_chains_multiple_Effect_provide_calls_Providing_Layers_in_multiple_calls_in_a_chain_can_break_service_lifecycle_behavior_compared_with_a_single_combined_provide_with_merged_layers_effect_multipleEffectProvide
1780
+ var This_expression_contains_chained_pipe_calls_that_can_be_simplified_to_a_single_pipe_call_effect_unnecessaryPipeChain = diagnostics.This_expression_contains_chained_pipe_calls_that_can_be_simplified_to_a_single_pipe_call_effect_unnecessaryPipeChain
1781
+ var This_expression_discards_the_success_value_through_mapping_Effect_asVoid_represents_that_form_directly_effect_effectMapVoid = diagnostics.This_expression_discards_the_success_value_through_mapping_Effect_asVoid_represents_that_form_directly_effect_effectMapVoid
1782
+ var This_expression_is_always_nullish = diagnostics.This_expression_is_always_nullish
1783
+ var This_expression_is_never_nullish = diagnostics.This_expression_is_never_nullish
1784
+ var This_expression_is_not_callable = diagnostics.This_expression_is_not_callable
1785
+ var This_expression_is_not_callable_because_it_is_a_get_accessor_Did_you_mean_to_use_it_without = diagnostics.This_expression_is_not_callable_because_it_is_a_get_accessor_Did_you_mean_to_use_it_without
1786
+ var This_expression_is_not_constructable = diagnostics.This_expression_is_not_constructable
1787
+ var This_file_already_has_a_default_export = diagnostics.This_file_already_has_a_default_export
1788
+ var This_generator_applies_Effect_orDie_to_every_yielded_effect_Hoist_it_once_to_the_generator_result_Colon_Effect_gen_pipe_Effect_orDie_or_Effect_fn_function_Asterisk_Effect_orDie_effect_redundantOrDie = diagnostics.This_generator_applies_Effect_orDie_to_every_yielded_effect_Hoist_it_once_to_the_generator_result_Colon_Effect_gen_pipe_Effect_orDie_or_Effect_fn_function_Asterisk_Effect_orDie_effect_redundantOrDie
1789
+ var This_generator_applies_the_same_inline_Effect_mapError_to_every_yielded_effect_Keep_that_Effect_mapError_inline_and_hoist_it_once_to_the_generator_result_Colon_Effect_gen_pipe_Effect_mapError_or_Effect_fn_function_Asterisk_Effect_mapError_effect_redundantMapError = diagnostics.This_generator_applies_the_same_inline_Effect_mapError_to_every_yielded_effect_Keep_that_Effect_mapError_inline_and_hoist_it_once_to_the_generator_result_Colon_Effect_gen_pipe_Effect_mapError_or_Effect_fn_function_Asterisk_Effect_mapError_effect_redundantMapError
1790
+ var This_generator_returns_an_Effect_able_value_directly_which_produces_a_nested_Effect_Effect_If_the_intended_result_is_the_inner_Effect_value_return_yield_Asterisk_represents_that_form_effect_returnEffectInGen = diagnostics.This_generator_returns_an_Effect_able_value_directly_which_produces_a_nested_Effect_Effect_If_the_intended_result_is_the_inner_Effect_value_return_yield_Asterisk_represents_that_form_effect_returnEffectInGen
1791
+ var This_import_path_is_unsafe_to_rewrite_because_it_resolves_to_another_project_and_the_relative_path_between_the_projects_output_files_is_not_the_same_as_the_relative_path_between_its_input_files = diagnostics.This_import_path_is_unsafe_to_rewrite_because_it_resolves_to_another_project_and_the_relative_path_between_the_projects_output_files_is_not_the_same_as_the_relative_path_between_its_input_files
1792
+ var This_import_uses_a_0_extension_to_resolve_to_an_input_TypeScript_file_but_will_not_be_rewritten_during_emit_because_it_is_not_a_relative_path = diagnostics.This_import_uses_a_0_extension_to_resolve_to_an_input_TypeScript_file_but_will_not_be_rewritten_during_emit_because_it_is_not_a_relative_path
1793
+ var This_is_the_declaration_being_augmented_Consider_moving_the_augmenting_declaration_into_the_same_file = diagnostics.This_is_the_declaration_being_augmented_Consider_moving_the_augmenting_declaration_into_the_same_file
1794
+ var This_key_does_not_match_the_deterministic_key_for_this_declaration_The_expected_key_is_0_effect_deterministicKeys = diagnostics.This_key_does_not_match_the_deterministic_key_for_this_declaration_The_expected_key_is_0_effect_deterministicKeys
1795
+ var This_kind_of_expression_is_always_falsy = diagnostics.This_kind_of_expression_is_always_falsy
1796
+ var This_kind_of_expression_is_always_truthy = diagnostics.This_kind_of_expression_is_always_truthy
1797
+ var This_layer_construction_leaves_Scope_in_the_requirement_set_The_scoped_API_removes_Scope_from_the_resulting_requirements_effect_scopeInLayerEffect = diagnostics.This_layer_construction_leaves_Scope_in_the_requirement_set_The_scoped_API_removes_Scope_from_the_resulting_requirements_effect_scopeInLayerEffect
1798
+ var This_layer_provides_0_which_is_required_by_another_layer_in_the_same_Layer_mergeAll_call_Layer_mergeAll_creates_layers_in_parallel_so_dependencies_between_layers_will_not_be_satisfied_Consider_moving_this_layer_into_a_Layer_provideMerge_after_the_Layer_mergeAll_effect_layerMergeAllWithDependencies = diagnostics.This_layer_provides_0_which_is_required_by_another_layer_in_the_same_Layer_mergeAll_call_Layer_mergeAll_creates_layers_in_parallel_so_dependencies_between_layers_will_not_be_satisfied_Consider_moving_this_layer_into_a_Layer_provideMerge_after_the_Layer_mergeAll_effect_layerMergeAllWithDependencies
1799
+ var This_layer_provides_the_missing_service_0_effect_missingEffectContext = diagnostics.This_layer_provides_the_missing_service_0_effect_missingEffectContext
1800
+ var This_may_be_converted_to_an_async_function = diagnostics.This_may_be_converted_to_an_async_function
1801
+ var This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_it_is_not_declared_in_the_base_class_0 = diagnostics.This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_it_is_not_declared_in_the_base_class_0
1802
+ var This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_it_is_not_declared_in_the_base_class_0_Did_you_mean_1 = diagnostics.This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_it_is_not_declared_in_the_base_class_0_Did_you_mean_1
1803
+ var This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_its_containing_class_0_does_not_extend_another_class = diagnostics.This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_its_containing_class_0_does_not_extend_another_class
1804
+ var This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_its_name_is_dynamic = diagnostics.This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_its_name_is_dynamic
1805
+ var This_member_cannot_have_an_override_modifier_because_it_is_not_declared_in_the_base_class_0 = diagnostics.This_member_cannot_have_an_override_modifier_because_it_is_not_declared_in_the_base_class_0
1806
+ var This_member_cannot_have_an_override_modifier_because_it_is_not_declared_in_the_base_class_0_Did_you_mean_1 = diagnostics.This_member_cannot_have_an_override_modifier_because_it_is_not_declared_in_the_base_class_0_Did_you_mean_1
1807
+ var This_member_cannot_have_an_override_modifier_because_its_containing_class_0_does_not_extend_another_class = diagnostics.This_member_cannot_have_an_override_modifier_because_its_containing_class_0_does_not_extend_another_class
1808
+ var This_member_cannot_have_an_override_modifier_because_its_name_is_dynamic = diagnostics.This_member_cannot_have_an_override_modifier_because_its_name_is_dynamic
1809
+ var This_member_must_have_a_JSDoc_comment_with_an_override_tag_because_it_overrides_a_member_in_the_base_class_0 = diagnostics.This_member_must_have_a_JSDoc_comment_with_an_override_tag_because_it_overrides_a_member_in_the_base_class_0
1810
+ var This_member_must_have_an_override_modifier_because_it_overrides_a_member_in_the_base_class_0 = diagnostics.This_member_must_have_an_override_modifier_because_it_overrides_a_member_in_the_base_class_0
1811
+ var This_member_must_have_an_override_modifier_because_it_overrides_an_abstract_method_that_is_declared_in_the_base_class_0 = diagnostics.This_member_must_have_an_override_modifier_because_it_overrides_an_abstract_method_that_is_declared_in_the_base_class_0
1812
+ var This_module_can_only_be_referenced_with_ECMAScript_imports_Slashexports_by_turning_on_the_0_flag_and_referencing_its_default_export = diagnostics.This_module_can_only_be_referenced_with_ECMAScript_imports_Slashexports_by_turning_on_the_0_flag_and_referencing_its_default_export
1813
+ var This_module_is_declared_with_export_and_can_only_be_used_with_a_default_import_when_using_the_0_flag = diagnostics.This_module_is_declared_with_export_and_can_only_be_used_with_a_default_import_when_using_the_0_flag
1814
+ var This_module_reference_uses_the_2_module_the_corresponding_Effect_API_is_0_from_1_effect_nodeBuiltinImport = diagnostics.This_module_reference_uses_the_2_module_the_corresponding_Effect_API_is_0_from_1_effect_nodeBuiltinImport
1815
+ var This_nested_call_structure_has_a_pipeable_form_0_pipe_represents_the_same_call_sequence_in_pipe_style_and_may_be_easier_to_read_effect_missedPipeableOpportunity = diagnostics.This_nested_call_structure_has_a_pipeable_form_0_pipe_represents_the_same_call_sequence_in_pipe_style_and_may_be_easier_to_read_effect_missedPipeableOpportunity
1816
+ var This_operation_can_be_simplified_This_shift_is_identical_to_0_1_2 = diagnostics.This_operation_can_be_simplified_This_shift_is_identical_to_0_1_2
1817
+ var This_overload_implicitly_returns_the_type_0_because_it_lacks_a_return_type_annotation = diagnostics.This_overload_implicitly_returns_the_type_0_because_it_lacks_a_return_type_annotation
1818
+ var This_overload_signature_is_not_compatible_with_its_implementation_signature = diagnostics.This_overload_signature_is_not_compatible_with_its_implementation_signature
1819
+ var This_parameter_is_not_allowed_with_use_strict_directive = diagnostics.This_parameter_is_not_allowed_with_use_strict_directive
1820
+ var This_parameter_property_must_have_a_JSDoc_comment_with_an_override_tag_because_it_overrides_a_member_in_the_base_class_0 = diagnostics.This_parameter_property_must_have_a_JSDoc_comment_with_an_override_tag_because_it_overrides_a_member_in_the_base_class_0
1821
+ var This_parameter_property_must_have_an_override_modifier_because_it_overrides_a_member_in_base_class_0 = diagnostics.This_parameter_property_must_have_an_override_modifier_because_it_overrides_a_member_in_base_class_0
1822
+ var This_pipe_call_contains_no_arguments_effect_unnecessaryPipe = diagnostics.This_pipe_call_contains_no_arguments_effect_unnecessaryPipe
1823
+ var This_project_targets_Effect_v4_but_this_code_uses_Effect_v3_APIs_The_referenced_API_belongs_to_the_v3_surface_rather_than_the_configured_v4_surface_effect_outdatedApi = diagnostics.This_project_targets_Effect_v4_but_this_code_uses_Effect_v3_APIs_The_referenced_API_belongs_to_the_v3_surface_rather_than_the_configured_v4_surface_effect_outdatedApi
1824
+ var This_project_targets_Effect_v4_but_this_code_uses_the_Effect_v3_API_0_The_referenced_API_belongs_to_the_v3_surface_rather_than_the_configured_v4_surface_1_effect_outdatedApi = diagnostics.This_project_targets_Effect_v4_but_this_code_uses_the_Effect_v3_API_0_The_referenced_API_belongs_to_the_v3_surface_rather_than_the_configured_v4_surface_1_effect_outdatedApi
1825
+ var This_regular_expression_flag_cannot_be_toggled_within_a_subpattern = diagnostics.This_regular_expression_flag_cannot_be_toggled_within_a_subpattern
1826
+ var This_regular_expression_flag_is_only_available_when_targeting_0_or_later = diagnostics.This_regular_expression_flag_is_only_available_when_targeting_0_or_later
1827
+ var This_relative_import_path_is_unsafe_to_rewrite_because_it_looks_like_a_file_name_but_actually_resolves_to_0 = diagnostics.This_relative_import_path_is_unsafe_to_rewrite_because_it_looks_like_a_file_name_but_actually_resolves_to_0
1828
+ var This_repeated_Effect_mapError_site_participates_in_the_hoistable_generator_wide_mapping_effect_redundantMapError = diagnostics.This_repeated_Effect_mapError_site_participates_in_the_hoistable_generator_wide_mapping_effect_redundantMapError
1829
+ var This_repeated_Effect_orDie_site_participates_in_the_hoistable_generator_wide_orDie_effect_redundantOrDie = diagnostics.This_repeated_Effect_orDie_site_participates_in_the_hoistable_generator_wide_orDie_effect_redundantOrDie
1830
+ var This_spread_always_overwrites_this_property = diagnostics.This_spread_always_overwrites_this_property
1831
+ var This_syntax_is_not_allowed_when_erasableSyntaxOnly_is_enabled = diagnostics.This_syntax_is_not_allowed_when_erasableSyntaxOnly_is_enabled
1832
+ var This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Add_a_trailing_comma_or_explicit_constraint = diagnostics.This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Add_a_trailing_comma_or_explicit_constraint
1833
+ var This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Use_an_as_expression_instead = diagnostics.This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Use_an_as_expression_instead
1834
+ var This_syntax_requires_an_imported_helper_but_module_0_cannot_be_found = diagnostics.This_syntax_requires_an_imported_helper_but_module_0_cannot_be_found
1835
+ var This_syntax_requires_an_imported_helper_named_1_which_does_not_exist_in_0_Consider_upgrading_your_version_of_0 = diagnostics.This_syntax_requires_an_imported_helper_named_1_which_does_not_exist_in_0_Consider_upgrading_your_version_of_0
1836
+ var This_syntax_requires_an_imported_helper_named_1_with_2_parameters_which_is_not_compatible_with_the_one_in_0_Consider_upgrading_your_version_of_0 = diagnostics.This_syntax_requires_an_imported_helper_named_1_with_2_parameters_which_is_not_compatible_with_the_one_in_0_Consider_upgrading_your_version_of_0
1837
+ var This_type_assertion_unsafely_narrows_the_error_or_requirements_channels_effect_unsafeEffectTypeAssertion = diagnostics.This_type_assertion_unsafely_narrows_the_error_or_requirements_channels_effect_unsafeEffectTypeAssertion
1838
+ var This_type_parameter_might_need_an_extends_0_constraint = diagnostics.This_type_parameter_might_need_an_extends_0_constraint
1839
+ var This_typeof_Type_query_can_be_replaced_with_0_effect_unnecessaryTypeofType = diagnostics.This_typeof_Type_query_can_be_replaced_with_0_effect_unnecessaryTypeofType
1840
+ var This_use_of_import_is_invalid_import_calls_can_be_written_but_they_must_have_parentheses_and_cannot_have_type_arguments = diagnostics.This_use_of_import_is_invalid_import_calls_can_be_written_but_they_must_have_parentheses_and_cannot_have_type_arguments
1841
+ var This_uses_the_Effect_do_emulation_Effect_gen_or_Effect_fn_achieve_the_same_result_with_native_JS_scopes_effect_effectDoNotation = diagnostics.This_uses_the_Effect_do_emulation_Effect_gen_or_Effect_fn_achieve_the_same_result_with_native_JS_scopes_effect_effectDoNotation
1842
+ var This_uses_yield_for_an_Effect_value_yield_Asterisk_is_the_Effect_aware_form_in_this_context_effect_missingStarInYieldEffectGen = diagnostics.This_uses_yield_for_an_Effect_value_yield_Asterisk_is_the_Effect_aware_form_in_this_context_effect_missingStarInYieldEffectGen
1843
+ var This_yield_Asterisk_Effect_fail_passes_a_yieldable_error_value_yield_Asterisk_represents_that_value_directly_without_wrapping_it_in_Effect_fail_effect_unnecessaryFailYieldableError = diagnostics.This_yield_Asterisk_Effect_fail_passes_a_yieldable_error_value_yield_Asterisk_represents_that_value_directly_without_wrapping_it_in_Effect_fail_effect_unnecessaryFailYieldableError
1844
+ var This_yield_Asterisk_is_applied_to_a_nested_Effect_gen_that_can_be_inlined_in_the_parent_Effect_generator_context_effect_nestedEffectGenYield = diagnostics.This_yield_Asterisk_is_applied_to_a_nested_Effect_gen_that_can_be_inlined_in_the_parent_Effect_generator_context_effect_nestedEffectGenYield
1845
+ var To_convert_this_file_to_an_ECMAScript_module_add_the_field_type_Colon_module_to_0 = diagnostics.To_convert_this_file_to_an_ECMAScript_module_add_the_field_type_Colon_module_to_0
1846
+ var To_convert_this_file_to_an_ECMAScript_module_change_its_file_extension_to_0_or_add_the_field_type_Colon_module_to_1 = diagnostics.To_convert_this_file_to_an_ECMAScript_module_change_its_file_extension_to_0_or_add_the_field_type_Colon_module_to_1
1847
+ var To_convert_this_file_to_an_ECMAScript_module_change_its_file_extension_to_0_or_create_a_local_package_json_file_with_type_Colon_module = diagnostics.To_convert_this_file_to_an_ECMAScript_module_change_its_file_extension_to_0_or_create_a_local_package_json_file_with_type_Colon_module
1848
+ var To_convert_this_file_to_an_ECMAScript_module_create_a_local_package_json_file_with_type_Colon_module = diagnostics.To_convert_this_file_to_an_ECMAScript_module_create_a_local_package_json_file_with_type_Colon_module
1849
+ var Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_node18_node20_nodenext_or_preserve_and_the_target_option_is_set_to_es2017_or_higher = diagnostics.Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_node18_node20_nodenext_or_preserve_and_the_target_option_is_set_to_es2017_or_higher
1850
+ var Top_level_await_using_statements_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_node18_node20_nodenext_or_preserve_and_the_target_option_is_set_to_es2017_or_higher = diagnostics.Top_level_await_using_statements_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_node18_node20_nodenext_or_preserve_and_the_target_option_is_set_to_es2017_or_higher
1851
+ var Top_level_declarations_in_d_ts_files_must_start_with_either_a_declare_or_export_modifier = diagnostics.Top_level_declarations_in_d_ts_files_must_start_with_either_a_declare_or_export_modifier
1852
+ var Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_node18_node20_nodenext_or_preserve_and_the_target_option_is_set_to_es2017_or_higher = diagnostics.Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_node18_node20_nodenext_or_preserve_and_the_target_option_is_set_to_es2017_or_higher
1853
+ var Trailing_comma_not_allowed = diagnostics.Trailing_comma_not_allowed
1854
+ var Transpile_each_file_as_a_separate_module_similar_to_ts_transpileModule = diagnostics.Transpile_each_file_as_a_separate_module_similar_to_ts_transpileModule
1855
+ var Try_npm_i_save_dev_types_Slash_1_if_it_exists_or_add_a_new_declaration_d_ts_file_containing_declare_module_0 = diagnostics.Try_npm_i_save_dev_types_Slash_1_if_it_exists_or_add_a_new_declaration_d_ts_file_containing_declare_module_0
1856
+ var Trying_other_entries_in_rootDirs = diagnostics.Trying_other_entries_in_rootDirs
1857
+ var Trying_substitution_0_candidate_module_location_Colon_1 = diagnostics.Trying_substitution_0_candidate_module_location_Colon_1
1858
+ var Tuple_type_0_of_length_1_has_no_element_at_index_2 = diagnostics.Tuple_type_0_of_length_1_has_no_element_at_index_2
1859
+ var Tuple_type_arguments_circularly_reference_themselves = diagnostics.Tuple_type_arguments_circularly_reference_themselves
1860
+ var Type_0_can_only_be_iterated_through_when_using_the_downlevelIteration_flag_or_with_a_target_of_es2015_or_higher = diagnostics.Type_0_can_only_be_iterated_through_when_using_the_downlevelIteration_flag_or_with_a_target_of_es2015_or_higher
1861
+ var Type_0_cannot_be_used_as_an_index_type = diagnostics.Type_0_cannot_be_used_as_an_index_type
1862
+ var Type_0_cannot_be_used_to_index_type_1 = diagnostics.Type_0_cannot_be_used_to_index_type_1
1863
+ var Type_0_does_not_satisfy_the_constraint_1 = diagnostics.Type_0_does_not_satisfy_the_constraint_1
1864
+ var Type_0_does_not_satisfy_the_expected_type_1 = diagnostics.Type_0_does_not_satisfy_the_expected_type_1
1865
+ var Type_0_has_no_call_signatures = diagnostics.Type_0_has_no_call_signatures
1866
+ var Type_0_has_no_construct_signatures = diagnostics.Type_0_has_no_construct_signatures
1867
+ var Type_0_has_no_matching_index_signature_for_type_1 = diagnostics.Type_0_has_no_matching_index_signature_for_type_1
1868
+ var Type_0_has_no_properties_in_common_with_type_1 = diagnostics.Type_0_has_no_properties_in_common_with_type_1
1869
+ var Type_0_has_no_signatures_for_which_the_type_argument_list_is_applicable = diagnostics.Type_0_has_no_signatures_for_which_the_type_argument_list_is_applicable
1870
+ var Type_0_is_generic_and_can_only_be_indexed_for_reading = diagnostics.Type_0_is_generic_and_can_only_be_indexed_for_reading
1871
+ var Type_0_is_missing_the_following_properties_from_type_1_Colon_2 = diagnostics.Type_0_is_missing_the_following_properties_from_type_1_Colon_2
1872
+ var Type_0_is_missing_the_following_properties_from_type_1_Colon_2_and_3_more = diagnostics.Type_0_is_missing_the_following_properties_from_type_1_Colon_2_and_3_more
1873
+ var Type_0_is_not_a_constructor_function_type = diagnostics.Type_0_is_not_a_constructor_function_type
1874
+ var Type_0_is_not_a_valid_async_function_return_type_in_ES5_because_it_does_not_refer_to_a_Promise_compatible_constructor_value = diagnostics.Type_0_is_not_a_valid_async_function_return_type_in_ES5_because_it_does_not_refer_to_a_Promise_compatible_constructor_value
1875
+ var Type_0_is_not_an_array_type = diagnostics.Type_0_is_not_an_array_type
1876
+ var Type_0_is_not_an_array_type_or_a_string_type = diagnostics.Type_0_is_not_an_array_type_or_a_string_type
1877
+ var Type_0_is_not_an_array_type_or_a_string_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator = diagnostics.Type_0_is_not_an_array_type_or_a_string_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator
1878
+ var Type_0_is_not_an_array_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator = diagnostics.Type_0_is_not_an_array_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator
1879
+ var Type_0_is_not_assignable_to_type_1 = diagnostics.Type_0_is_not_assignable_to_type_1
1880
+ var Type_0_is_not_assignable_to_type_1_Did_you_mean_2 = diagnostics.Type_0_is_not_assignable_to_type_1_Did_you_mean_2
1881
+ var Type_0_is_not_assignable_to_type_1_Two_different_types_with_this_name_exist_but_they_are_unrelated = diagnostics.Type_0_is_not_assignable_to_type_1_Two_different_types_with_this_name_exist_but_they_are_unrelated
1882
+ var Type_0_is_not_assignable_to_type_1_as_implied_by_variance_annotation = diagnostics.Type_0_is_not_assignable_to_type_1_as_implied_by_variance_annotation
1883
+ var Type_0_is_not_assignable_to_type_1_as_required_for_computed_enum_member_values = diagnostics.Type_0_is_not_assignable_to_type_1_as_required_for_computed_enum_member_values
1884
+ var Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_type_of_the_target = diagnostics.Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_type_of_the_target
1885
+ var Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_types_of_the_target_s_properties = diagnostics.Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_types_of_the_target_s_properties
1886
+ var Type_0_is_not_comparable_to_type_1 = diagnostics.Type_0_is_not_comparable_to_type_1
1887
+ var Type_0_is_not_generic = diagnostics.Type_0_is_not_generic
1888
+ var Type_0_may_represent_a_primitive_value_which_is_not_permitted_as_the_right_operand_of_the_in_operator = diagnostics.Type_0_may_represent_a_primitive_value_which_is_not_permitted_as_the_right_operand_of_the_in_operator
1889
+ var Type_0_must_have_a_Symbol_asyncIterator_method_that_returns_an_async_iterator = diagnostics.Type_0_must_have_a_Symbol_asyncIterator_method_that_returns_an_async_iterator
1890
+ var Type_0_must_have_a_Symbol_iterator_method_that_returns_an_iterator = diagnostics.Type_0_must_have_a_Symbol_iterator_method_that_returns_an_iterator
1891
+ var Type_0_provides_no_match_for_the_signature_1 = diagnostics.Type_0_provides_no_match_for_the_signature_1
1892
+ var Type_0_recursively_references_itself_as_a_base_type = diagnostics.Type_0_recursively_references_itself_as_a_base_type
1893
+ var Type_Checking = diagnostics.Type_Checking
1894
+ var Type_alias_0_circularly_references_itself = diagnostics.Type_alias_0_circularly_references_itself
1895
+ var Type_alias_must_be_given_a_name = diagnostics.Type_alias_must_be_given_a_name
1896
+ var Type_alias_name_cannot_be_0 = diagnostics.Type_alias_name_cannot_be_0
1897
+ var Type_aliases_can_only_be_used_in_TypeScript_files = diagnostics.Type_aliases_can_only_be_used_in_TypeScript_files
1898
+ var Type_annotation_cannot_appear_on_a_constructor_declaration = diagnostics.Type_annotation_cannot_appear_on_a_constructor_declaration
1899
+ var Type_annotations_can_only_be_used_in_TypeScript_files = diagnostics.Type_annotations_can_only_be_used_in_TypeScript_files
1900
+ var Type_argument_expected = diagnostics.Type_argument_expected
1901
+ var Type_argument_list_cannot_be_empty = diagnostics.Type_argument_list_cannot_be_empty
1902
+ var Type_arguments_can_only_be_used_in_TypeScript_files = diagnostics.Type_arguments_can_only_be_used_in_TypeScript_files
1903
+ var Type_arguments_for_0_circularly_reference_themselves = diagnostics.Type_arguments_for_0_circularly_reference_themselves
1904
+ var Type_assertion_expressions_can_only_be_used_in_TypeScript_files = diagnostics.Type_assertion_expressions_can_only_be_used_in_TypeScript_files
1905
+ var Type_at_position_0_in_source_is_not_compatible_with_type_at_position_1_in_target = diagnostics.Type_at_position_0_in_source_is_not_compatible_with_type_at_position_1_in_target
1906
+ var Type_at_positions_0_through_1_in_source_is_not_compatible_with_type_at_position_2_in_target = diagnostics.Type_at_positions_0_through_1_in_source_is_not_compatible_with_type_at_position_2_in_target
1907
+ var Type_containing_private_name_0_can_t_be_used_with_isolatedDeclarations = diagnostics.Type_containing_private_name_0_can_t_be_used_with_isolatedDeclarations
1908
+ var Type_declaration_files_to_be_included_in_compilation = diagnostics.Type_declaration_files_to_be_included_in_compilation
1909
+ var Type_expected = diagnostics.Type_expected
1910
+ var Type_import_assertions_should_have_exactly_one_key_resolution_mode_with_value_import_or_require = diagnostics.Type_import_assertions_should_have_exactly_one_key_resolution_mode_with_value_import_or_require
1911
+ var Type_import_attributes_should_have_exactly_one_key_resolution_mode_with_value_import_or_require = diagnostics.Type_import_attributes_should_have_exactly_one_key_resolution_mode_with_value_import_or_require
1912
+ var Type_import_of_an_ECMAScript_module_from_a_CommonJS_module_must_have_a_resolution_mode_attribute = diagnostics.Type_import_of_an_ECMAScript_module_from_a_CommonJS_module_must_have_a_resolution_mode_attribute
1913
+ var Type_instantiation_is_excessively_deep_and_possibly_infinite = diagnostics.Type_instantiation_is_excessively_deep_and_possibly_infinite
1914
+ var Type_is_referenced_directly_or_indirectly_in_the_fulfillment_callback_of_its_own_then_method = diagnostics.Type_is_referenced_directly_or_indirectly_in_the_fulfillment_callback_of_its_own_then_method
1915
+ var Type_library_referenced_via_0_from_file_1 = diagnostics.Type_library_referenced_via_0_from_file_1
1916
+ var Type_library_referenced_via_0_from_file_1_with_packageId_2 = diagnostics.Type_library_referenced_via_0_from_file_1_with_packageId_2
1917
+ var Type_of_await_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member = diagnostics.Type_of_await_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member
1918
+ var Type_of_computed_property_s_value_is_0_which_is_not_assignable_to_type_1 = diagnostics.Type_of_computed_property_s_value_is_0_which_is_not_assignable_to_type_1
1919
+ var Type_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor = diagnostics.Type_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor
1920
+ var Type_of_iterated_elements_of_a_yield_Asterisk_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member = diagnostics.Type_of_iterated_elements_of_a_yield_Asterisk_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member
1921
+ var Type_of_property_0_circularly_references_itself_in_mapped_type_1 = diagnostics.Type_of_property_0_circularly_references_itself_in_mapped_type_1
1922
+ var Type_of_yield_operand_in_an_async_generator_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member = diagnostics.Type_of_yield_operand_in_an_async_generator_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member
1923
+ var Type_only_import_of_an_ECMAScript_module_from_a_CommonJS_module_must_have_a_resolution_mode_attribute = diagnostics.Type_only_import_of_an_ECMAScript_module_from_a_CommonJS_module_must_have_a_resolution_mode_attribute
1924
+ var Type_originates_at_this_import_A_namespace_style_import_cannot_be_called_or_constructed_and_will_cause_a_failure_at_runtime_Consider_using_a_default_import_or_import_require_here_instead = diagnostics.Type_originates_at_this_import_A_namespace_style_import_cannot_be_called_or_constructed_and_will_cause_a_failure_at_runtime_Consider_using_a_default_import_or_import_require_here_instead
1925
+ var Type_parameter_0_has_a_circular_constraint = diagnostics.Type_parameter_0_has_a_circular_constraint
1926
+ var Type_parameter_0_has_a_circular_default = diagnostics.Type_parameter_0_has_a_circular_default
1927
+ var Type_parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1 = diagnostics.Type_parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1
1928
+ var Type_parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1 = diagnostics.Type_parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1
1929
+ var Type_parameter_0_of_exported_class_has_or_is_using_private_name_1 = diagnostics.Type_parameter_0_of_exported_class_has_or_is_using_private_name_1
1930
+ var Type_parameter_0_of_exported_function_has_or_is_using_private_name_1 = diagnostics.Type_parameter_0_of_exported_function_has_or_is_using_private_name_1
1931
+ var Type_parameter_0_of_exported_interface_has_or_is_using_private_name_1 = diagnostics.Type_parameter_0_of_exported_interface_has_or_is_using_private_name_1
1932
+ var Type_parameter_0_of_exported_mapped_object_type_is_using_private_name_1 = diagnostics.Type_parameter_0_of_exported_mapped_object_type_is_using_private_name_1
1933
+ var Type_parameter_0_of_exported_type_alias_has_or_is_using_private_name_1 = diagnostics.Type_parameter_0_of_exported_type_alias_has_or_is_using_private_name_1
1934
+ var Type_parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1 = diagnostics.Type_parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1
1935
+ var Type_parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1 = diagnostics.Type_parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1
1936
+ var Type_parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1 = diagnostics.Type_parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1
1937
+ var Type_parameter_declaration_expected = diagnostics.Type_parameter_declaration_expected
1938
+ var Type_parameter_declarations_can_only_be_used_in_TypeScript_files = diagnostics.Type_parameter_declarations_can_only_be_used_in_TypeScript_files
1939
+ var Type_parameter_defaults_can_only_reference_previously_declared_type_parameters = diagnostics.Type_parameter_defaults_can_only_reference_previously_declared_type_parameters
1940
+ var Type_parameter_list_cannot_be_empty = diagnostics.Type_parameter_list_cannot_be_empty
1941
+ var Type_parameter_name_cannot_be_0 = diagnostics.Type_parameter_name_cannot_be_0
1942
+ var Type_parameters_cannot_appear_on_a_constructor_declaration = diagnostics.Type_parameters_cannot_appear_on_a_constructor_declaration
1943
+ var Type_predicate_0_is_not_assignable_to_1 = diagnostics.Type_predicate_0_is_not_assignable_to_1
1944
+ var Type_produces_a_tuple_type_that_is_too_large_to_represent = diagnostics.Type_produces_a_tuple_type_that_is_too_large_to_represent
1945
+ var Type_reference_directive_0_was_not_resolved = diagnostics.Type_reference_directive_0_was_not_resolved
1946
+ var Type_reference_directive_0_was_successfully_resolved_to_1_primary_Colon_2 = diagnostics.Type_reference_directive_0_was_successfully_resolved_to_1_primary_Colon_2
1947
+ var Type_reference_directive_0_was_successfully_resolved_to_1_with_Package_ID_2_primary_Colon_3 = diagnostics.Type_reference_directive_0_was_successfully_resolved_to_1_with_Package_ID_2_primary_Colon_3
1948
+ var Type_satisfaction_expressions_can_only_be_used_in_TypeScript_files = diagnostics.Type_satisfaction_expressions_can_only_be_used_in_TypeScript_files
1949
+ var Types_cannot_appear_in_export_declarations_in_JavaScript_files = diagnostics.Types_cannot_appear_in_export_declarations_in_JavaScript_files
1950
+ var Types_have_separate_declarations_of_a_private_property_0 = diagnostics.Types_have_separate_declarations_of_a_private_property_0
1951
+ var Types_of_construct_signatures_are_incompatible = diagnostics.Types_of_construct_signatures_are_incompatible
1952
+ var Types_of_parameters_0_and_1_are_incompatible = diagnostics.Types_of_parameters_0_and_1_are_incompatible
1953
+ var Types_of_property_0_are_incompatible = diagnostics.Types_of_property_0_are_incompatible
1954
+ var Unable_to_open_file_0 = diagnostics.Unable_to_open_file_0
1955
+ var Unable_to_resolve_signature_of_class_decorator_when_called_as_an_expression = diagnostics.Unable_to_resolve_signature_of_class_decorator_when_called_as_an_expression
1956
+ var Unable_to_resolve_signature_of_method_decorator_when_called_as_an_expression = diagnostics.Unable_to_resolve_signature_of_method_decorator_when_called_as_an_expression
1957
+ var Unable_to_resolve_signature_of_parameter_decorator_when_called_as_an_expression = diagnostics.Unable_to_resolve_signature_of_parameter_decorator_when_called_as_an_expression
1958
+ var Unable_to_resolve_signature_of_property_decorator_when_called_as_an_expression = diagnostics.Unable_to_resolve_signature_of_property_decorator_when_called_as_an_expression
1959
+ var Undetermined_character_escape = diagnostics.Undetermined_character_escape
1960
+ var Unexpected_0_Did_you_mean_to_escape_it_with_backslash = diagnostics.Unexpected_0_Did_you_mean_to_escape_it_with_backslash
1961
+ var Unexpected_0_type_in_condition_expected_strictly_a_boolean_instead_effect_strictBooleanExpressions = diagnostics.Unexpected_0_type_in_condition_expected_strictly_a_boolean_instead_effect_strictBooleanExpressions
1962
+ var Unexpected_end_of_text = diagnostics.Unexpected_end_of_text
1963
+ var Unexpected_keyword_or_identifier = diagnostics.Unexpected_keyword_or_identifier
1964
+ var Unexpected_token = diagnostics.Unexpected_token
1965
+ var Unexpected_token_A_constructor_method_accessor_or_property_was_expected = diagnostics.Unexpected_token_A_constructor_method_accessor_or_property_was_expected
1966
+ var Unexpected_token_A_type_parameter_name_was_expected_without_curly_braces = diagnostics.Unexpected_token_A_type_parameter_name_was_expected_without_curly_braces
1967
+ var Unexpected_token_Did_you_mean_or_gt = diagnostics.Unexpected_token_Did_you_mean_or_gt
1968
+ var Unexpected_token_Did_you_mean_or_rbrace = diagnostics.Unexpected_token_Did_you_mean_or_rbrace
1969
+ var Unexpected_token_expected = diagnostics.Unexpected_token_expected
1970
+ var Unicode_escape_sequence_cannot_appear_here = diagnostics.Unicode_escape_sequence_cannot_appear_here
1971
+ var Unicode_escape_sequences_are_only_available_when_the_Unicode_u_flag_or_the_Unicode_Sets_v_flag_is_set = diagnostics.Unicode_escape_sequences_are_only_available_when_the_Unicode_u_flag_or_the_Unicode_Sets_v_flag_is_set
1972
+ var Unicode_property_value_expressions_are_only_available_when_the_Unicode_u_flag_or_the_Unicode_Sets_v_flag_is_set = diagnostics.Unicode_property_value_expressions_are_only_available_when_the_Unicode_u_flag_or_the_Unicode_Sets_v_flag_is_set
1973
+ var Unknown_Unicode_property_name = diagnostics.Unknown_Unicode_property_name
1974
+ var Unknown_Unicode_property_name_or_value = diagnostics.Unknown_Unicode_property_name_or_value
1975
+ var Unknown_Unicode_property_value = diagnostics.Unknown_Unicode_property_value
1976
+ var Unknown_build_option_0 = diagnostics.Unknown_build_option_0
1977
+ var Unknown_build_option_0_Did_you_mean_1 = diagnostics.Unknown_build_option_0_Did_you_mean_1
1978
+ var Unknown_compiler_option_0 = diagnostics.Unknown_compiler_option_0
1979
+ var Unknown_compiler_option_0_Did_you_mean_1 = diagnostics.Unknown_compiler_option_0_Did_you_mean_1
1980
+ var Unknown_keyword_or_identifier_Did_you_mean_0 = diagnostics.Unknown_keyword_or_identifier_Did_you_mean_0
1981
+ var Unknown_option_excludes_Did_you_mean_exclude = diagnostics.Unknown_option_excludes_Did_you_mean_exclude
1982
+ var Unknown_regular_expression_flag = diagnostics.Unknown_regular_expression_flag
1983
+ var Unknown_type_acquisition_option_0 = diagnostics.Unknown_type_acquisition_option_0
1984
+ var Unknown_type_acquisition_option_0_Did_you_mean_1 = diagnostics.Unknown_type_acquisition_option_0_Did_you_mean_1
1985
+ var Unknown_watch_option_0 = diagnostics.Unknown_watch_option_0
1986
+ var Unknown_watch_option_0_Did_you_mean_1 = diagnostics.Unknown_watch_option_0_Did_you_mean_1
1987
+ var Unreachable_code_detected = diagnostics.Unreachable_code_detected
1988
+ var Unterminated_Unicode_escape_sequence = diagnostics.Unterminated_Unicode_escape_sequence
1989
+ var Unterminated_quoted_string_in_response_file_0 = diagnostics.Unterminated_quoted_string_in_response_file_0
1990
+ var Unterminated_regular_expression_literal = diagnostics.Unterminated_regular_expression_literal
1991
+ var Unterminated_string_literal = diagnostics.Unterminated_string_literal
1992
+ var Unterminated_template_literal = diagnostics.Unterminated_template_literal
1993
+ var Untyped_function_calls_may_not_accept_type_arguments = diagnostics.Untyped_function_calls_may_not_accept_type_arguments
1994
+ var Unused_label = diagnostics.Unused_label
1995
+ var Unused_ts_expect_error_directive = diagnostics.Unused_ts_expect_error_directive
1996
+ var Update_import_from_0 = diagnostics.Update_import_from_0
1997
+ var Update_modifiers_of_0 = diagnostics.Update_modifiers_of_0
1998
+ var Updating_output_timestamps_of_project_0 = diagnostics.Updating_output_timestamps_of_project_0
1999
+ var Updating_unchanged_output_timestamps_of_project_0 = diagnostics.Updating_unchanged_output_timestamps_of_project_0
2000
+ var Use_0 = diagnostics.Use_0
2001
+ var Use_0_instead = diagnostics.Use_0_instead
2002
+ var Use_Number_isNaN_in_all_conditions = diagnostics.Use_Number_isNaN_in_all_conditions
2003
+ var Use_element_access_for_0 = diagnostics.Use_element_access_for_0
2004
+ var Use_element_access_for_all_undeclared_properties = diagnostics.Use_element_access_for_all_undeclared_properties
2005
+ var Use_import_type = diagnostics.Use_import_type
2006
+ var Use_synthetic_default_member = diagnostics.Use_synthetic_default_member
2007
+ var Use_the_package_json_exports_field_when_resolving_package_imports = diagnostics.Use_the_package_json_exports_field_when_resolving_package_imports
2008
+ var Use_the_package_json_imports_field_when_resolving_imports = diagnostics.Use_the_package_json_imports_field_when_resolving_imports
2009
+ var Use_type_0 = diagnostics.Use_type_0
2010
+ var Using_0_subpath_1_with_target_2 = diagnostics.Using_0_subpath_1_with_target_2
2011
+ var Using_JSX_fragments_requires_fragment_factory_0_to_be_in_scope_but_it_could_not_be_found = diagnostics.Using_JSX_fragments_requires_fragment_factory_0_to_be_in_scope_but_it_could_not_be_found
2012
+ var Using_a_string_in_a_for_of_statement_is_only_supported_in_ECMAScript_5_and_higher = diagnostics.Using_a_string_in_a_for_of_statement_is_only_supported_in_ECMAScript_5_and_higher
2013
+ var Using_build_b_will_make_tsc_behave_more_like_a_build_orchestrator_than_a_compiler_This_is_used_to_trigger_building_composite_projects_which_you_can_learn_more_about_at_0 = diagnostics.Using_build_b_will_make_tsc_behave_more_like_a_build_orchestrator_than_a_compiler_This_is_used_to_trigger_building_composite_projects_which_you_can_learn_more_about_at_0
2014
+ var Using_compiler_options_of_project_reference_redirect_0 = diagnostics.Using_compiler_options_of_project_reference_redirect_0
2015
+ var VERSION = diagnostics.VERSION
2016
+ var Value_of_type_0_has_no_properties_in_common_with_type_1_Did_you_mean_to_call_it = diagnostics.Value_of_type_0_has_no_properties_in_common_with_type_1_Did_you_mean_to_call_it
2017
+ var Value_of_type_0_is_not_callable_Did_you_mean_to_include_new = diagnostics.Value_of_type_0_is_not_callable_Did_you_mean_to_include_new
2018
+ var Variable_0_implicitly_has_an_1_type = diagnostics.Variable_0_implicitly_has_an_1_type
2019
+ var Variable_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage = diagnostics.Variable_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage
2020
+ var Variable_0_implicitly_has_type_1_in_some_locations_but_a_better_type_may_be_inferred_from_usage = diagnostics.Variable_0_implicitly_has_type_1_in_some_locations_but_a_better_type_may_be_inferred_from_usage
2021
+ var Variable_0_implicitly_has_type_1_in_some_locations_where_its_type_cannot_be_determined = diagnostics.Variable_0_implicitly_has_type_1_in_some_locations_where_its_type_cannot_be_determined
2022
+ var Variable_0_is_used_before_being_assigned = diagnostics.Variable_0_is_used_before_being_assigned
2023
+ var Variable_declaration_expected = diagnostics.Variable_declaration_expected
2024
+ var Variable_declaration_list_cannot_be_empty = diagnostics.Variable_declaration_list_cannot_be_empty
2025
+ var Variable_declaration_not_allowed_at_this_location = diagnostics.Variable_declaration_not_allowed_at_this_location
2026
+ var Variable_must_have_an_explicit_type_annotation_with_isolatedDeclarations = diagnostics.Variable_must_have_an_explicit_type_annotation_with_isolatedDeclarations
2027
+ var Variables_with_multiple_declarations_cannot_be_inlined = diagnostics.Variables_with_multiple_declarations_cannot_be_inlined
2028
+ var Variadic_element_at_position_0_in_source_does_not_match_element_at_position_1_in_target = diagnostics.Variadic_element_at_position_0_in_source_does_not_match_element_at_position_1_in_target
2029
+ var Variance_annotations_are_only_supported_in_type_aliases_for_object_function_constructor_and_mapped_types = diagnostics.Variance_annotations_are_only_supported_in_type_aliases_for_object_function_constructor_and_mapped_types
2030
+ var Version_0 = diagnostics.Version_0
2031
+ var Visit_https_Colon_Slash_Slashaka_ms_Slashts6_for_migration_information = diagnostics.Visit_https_Colon_Slash_Slashaka_ms_Slashts6_for_migration_information
2032
+ var Visit_https_Colon_Slash_Slashaka_ms_Slashtsconfig_to_read_more_about_this_file = diagnostics.Visit_https_Colon_Slash_Slashaka_ms_Slashtsconfig_to_read_more_about_this_file
2033
+ var WATCH_OPTIONS = diagnostics.WATCH_OPTIONS
2034
+ var Watch_and_Build_Modes = diagnostics.Watch_and_Build_Modes
2035
+ var Watch_input_files = diagnostics.Watch_input_files
2036
+ var Watch_option_0_requires_a_value_of_type_1 = diagnostics.Watch_option_0_requires_a_value_of_type_1
2037
+ var We_can_only_write_a_type_for_0_by_adding_a_type_for_the_entire_parameter_here = diagnostics.We_can_only_write_a_type_for_0_by_adding_a_type_for_the_entire_parameter_here
2038
+ var When_assigning_functions_check_to_ensure_parameters_and_the_return_values_are_subtype_compatible = diagnostics.When_assigning_functions_check_to_ensure_parameters_and_the_return_values_are_subtype_compatible
2039
+ var When_type_checking_take_into_account_null_and_undefined = diagnostics.When_type_checking_take_into_account_null_and_undefined
2040
+ var Whether_to_keep_outdated_console_output_in_watch_mode_instead_of_clearing_the_screen = diagnostics.Whether_to_keep_outdated_console_output_in_watch_mode_instead_of_clearing_the_screen
2041
+ var Wrap_all_invalid_characters_in_an_expression_container = diagnostics.Wrap_all_invalid_characters_in_an_expression_container
2042
+ var Wrap_all_invalid_decorator_expressions_in_parentheses = diagnostics.Wrap_all_invalid_decorator_expressions_in_parentheses
2043
+ var Wrap_all_object_literal_with_parentheses = diagnostics.Wrap_all_object_literal_with_parentheses
2044
+ var Wrap_all_unparented_JSX_in_JSX_fragment = diagnostics.Wrap_all_unparented_JSX_in_JSX_fragment
2045
+ var Wrap_in_JSX_fragment = diagnostics.Wrap_in_JSX_fragment
2046
+ var Wrap_in_parentheses = diagnostics.Wrap_in_parentheses
2047
+ var Wrap_invalid_character_in_an_expression_container = diagnostics.Wrap_invalid_character_in_an_expression_container
2048
+ var Wrap_the_following_body_with_parentheses_which_should_be_an_object_literal = diagnostics.Wrap_the_following_body_with_parentheses_which_should_be_an_object_literal
2049
+ var X_0_1_returns_a_reusable_function_that_can_take_arguments_but_it_is_invoked_immediately_here_Effect_gen_represents_the_immediate_use_form_for_this_pattern_2_effect_effectFnIife = diagnostics.X_0_1_returns_a_reusable_function_that_can_take_arguments_but_it_is_invoked_immediately_here_Effect_gen_represents_the_immediate_use_form_for_this_pattern_2_effect_effectFnIife
2050
+ var X_0_accepts_too_few_arguments_to_be_used_as_a_decorator_here_Did_you_mean_to_call_it_first_and_write_0 = diagnostics.X_0_accepts_too_few_arguments_to_be_used_as_a_decorator_here_Did_you_mean_to_call_it_first_and_write_0
2051
+ var X_0_and_1_index_signatures_are_incompatible = diagnostics.X_0_and_1_index_signatures_are_incompatible
2052
+ var X_0_and_1_operations_cannot_be_mixed_without_parentheses = diagnostics.X_0_and_1_operations_cannot_be_mixed_without_parentheses
2053
+ var X_0_are_specified_twice_The_attribute_named_0_will_be_overwritten = diagnostics.X_0_are_specified_twice_The_attribute_named_0_will_be_overwritten
2054
+ var X_0_at_the_end_of_a_type_is_not_valid_TypeScript_syntax_Did_you_mean_to_write_1 = diagnostics.X_0_at_the_end_of_a_type_is_not_valid_TypeScript_syntax_Did_you_mean_to_write_1
2055
+ var X_0_at_the_start_of_a_type_is_not_valid_TypeScript_syntax_Did_you_mean_to_write_1 = diagnostics.X_0_at_the_start_of_a_type_is_not_valid_TypeScript_syntax_Did_you_mean_to_write_1
2056
+ var X_0_can_only_be_imported_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import = diagnostics.X_0_can_only_be_imported_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import
2057
+ var X_0_can_only_be_imported_by_using_a_default_import = diagnostics.X_0_can_only_be_imported_by_using_a_default_import
2058
+ var X_0_can_only_be_imported_by_using_a_require_call_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import = diagnostics.X_0_can_only_be_imported_by_using_a_require_call_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import
2059
+ var X_0_can_only_be_imported_by_using_a_require_call_or_by_using_a_default_import = diagnostics.X_0_can_only_be_imported_by_using_a_require_call_or_by_using_a_default_import
2060
+ var X_0_can_only_be_imported_by_using_import_1_require_2_or_a_default_import = diagnostics.X_0_can_only_be_imported_by_using_import_1_require_2_or_a_default_import
2061
+ var X_0_can_only_be_imported_by_using_import_1_require_2_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import = diagnostics.X_0_can_only_be_imported_by_using_import_1_require_2_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import
2062
+ var X_0_cannot_be_used_as_a_JSX_component = diagnostics.X_0_cannot_be_used_as_a_JSX_component
2063
+ var X_0_cannot_be_used_as_a_value_because_it_was_exported_using_export_type = diagnostics.X_0_cannot_be_used_as_a_value_because_it_was_exported_using_export_type
2064
+ var X_0_cannot_be_used_as_a_value_because_it_was_imported_using_import_type = diagnostics.X_0_cannot_be_used_as_a_value_because_it_was_imported_using_import_type
2065
+ var X_0_components_don_t_accept_text_as_child_elements_Text_in_JSX_has_the_type_string_but_the_expected_type_of_1_is_2 = diagnostics.X_0_components_don_t_accept_text_as_child_elements_Text_in_JSX_has_the_type_string_but_the_expected_type_of_1_is_2
2066
+ var X_0_could_be_instantiated_with_an_arbitrary_type_which_could_be_unrelated_to_1 = diagnostics.X_0_could_be_instantiated_with_an_arbitrary_type_which_could_be_unrelated_to_1
2067
+ var X_0_declarations_can_only_be_declared_inside_a_block = diagnostics.X_0_declarations_can_only_be_declared_inside_a_block
2068
+ var X_0_declarations_can_only_be_used_in_TypeScript_files = diagnostics.X_0_declarations_can_only_be_used_in_TypeScript_files
2069
+ var X_0_declarations_may_not_have_binding_patterns = diagnostics.X_0_declarations_may_not_have_binding_patterns
2070
+ var X_0_declarations_must_be_initialized = diagnostics.X_0_declarations_must_be_initialized
2071
+ var X_0_effect_anyUnknownInErrorContext = diagnostics.X_0_effect_anyUnknownInErrorContext
2072
+ var X_0_expected = diagnostics.X_0_expected
2073
+ var X_0_has_a_string_type_but_must_have_syntactically_recognizable_string_syntax_when_isolatedModules_is_enabled = diagnostics.X_0_has_a_string_type_but_must_have_syntactically_recognizable_string_syntax_when_isolatedModules_is_enabled
2074
+ var X_0_has_no_exported_member_named_1_Did_you_mean_2 = diagnostics.X_0_has_no_exported_member_named_1_Did_you_mean_2
2075
+ var X_0_implementations = diagnostics.X_0_implementations
2076
+ var X_0_implicitly_has_an_1_return_type_but_a_better_type_may_be_inferred_from_usage = diagnostics.X_0_implicitly_has_an_1_return_type_but_a_better_type_may_be_inferred_from_usage
2077
+ var X_0_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions = diagnostics.X_0_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions
2078
+ var X_0_implicitly_has_type_any_because_it_does_not_have_a_type_annotation_and_is_referenced_directly_or_indirectly_in_its_own_initializer = diagnostics.X_0_implicitly_has_type_any_because_it_does_not_have_a_type_annotation_and_is_referenced_directly_or_indirectly_in_its_own_initializer
2079
+ var X_0_index_signatures_are_incompatible = diagnostics.X_0_index_signatures_are_incompatible
2080
+ var X_0_index_type_1_is_not_assignable_to_2_index_type_3 = diagnostics.X_0_index_type_1_is_not_assignable_to_2_index_type_3
2081
+ var X_0_is_a_primitive_but_1_is_a_wrapper_object_Prefer_using_0_when_possible = diagnostics.X_0_is_a_primitive_but_1_is_a_wrapper_object_Prefer_using_0_when_possible
2082
+ var X_0_is_a_type_and_cannot_be_imported_in_JavaScript_files_Use_1_in_a_JSDoc_type_annotation = diagnostics.X_0_is_a_type_and_cannot_be_imported_in_JavaScript_files_Use_1_in_a_JSDoc_type_annotation
2083
+ var X_0_is_a_type_and_must_be_imported_using_a_type_only_import_when_verbatimModuleSyntax_is_enabled = diagnostics.X_0_is_a_type_and_must_be_imported_using_a_type_only_import_when_verbatimModuleSyntax_is_enabled
2084
+ var X_0_is_an_unused_renaming_of_1_Did_you_intend_to_use_it_as_a_type_annotation = diagnostics.X_0_is_an_unused_renaming_of_1_Did_you_intend_to_use_it_as_a_type_annotation
2085
+ var X_0_is_assignable_to_the_constraint_of_type_1_but_1_could_be_instantiated_with_a_different_subtype_of_constraint_2 = diagnostics.X_0_is_assignable_to_the_constraint_of_type_1_but_1_could_be_instantiated_with_a_different_subtype_of_constraint_2
2086
+ var X_0_is_automatically_exported_here = diagnostics.X_0_is_automatically_exported_here
2087
+ var X_0_is_called_inside_an_Effect_with_a_separate_runtime_invocation_In_this_context_run_child_Effects_with_the_surrounding_runtime_which_can_be_accessed_through_Effect_runtime_and_Runtime_1_effect_runEffectInsideEffect = diagnostics.X_0_is_called_inside_an_Effect_with_a_separate_runtime_invocation_In_this_context_run_child_Effects_with_the_surrounding_runtime_which_can_be_accessed_through_Effect_runtime_and_Runtime_1_effect_runEffectInsideEffect
2088
+ var X_0_is_called_inside_an_Effect_with_a_separate_services_invocation_In_this_context_child_Effects_run_with_the_surrounding_services_which_can_be_accessed_through_Effect_context_and_Effect_1_With_effect_runEffectInsideEffect = diagnostics.X_0_is_called_inside_an_Effect_with_a_separate_services_invocation_In_this_context_child_Effects_run_with_the_surrounding_services_which_can_be_accessed_through_Effect_context_and_Effect_1_With_effect_runEffectInsideEffect
2089
+ var X_0_is_called_inside_an_existing_Effect_context_Here_the_inner_Effect_can_be_used_directly_effect_runEffectInsideEffect = diagnostics.X_0_is_called_inside_an_existing_Effect_context_Here_the_inner_Effect_can_be_used_directly_effect_runEffectInsideEffect
2090
+ var X_0_is_declared_but_its_value_is_never_read = diagnostics.X_0_is_declared_but_its_value_is_never_read
2091
+ var X_0_is_declared_but_never_used = diagnostics.X_0_is_declared_but_never_used
2092
+ var X_0_is_declared_here = diagnostics.X_0_is_declared_here
2093
+ var X_0_is_defined_as_a_property_in_class_1_but_is_overridden_here_in_2_as_an_accessor = diagnostics.X_0_is_defined_as_a_property_in_class_1_but_is_overridden_here_in_2_as_an_accessor
2094
+ var X_0_is_defined_as_an_accessor_in_class_1_but_is_overridden_here_in_2_as_an_instance_property = diagnostics.X_0_is_defined_as_an_accessor_in_class_1_but_is_overridden_here_in_2_as_an_instance_property
2095
+ var X_0_is_deprecated = diagnostics.X_0_is_deprecated
2096
+ var X_0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2 = diagnostics.X_0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2
2097
+ var X_0_is_not_a_valid_meta_property_for_keyword_import_Did_you_mean_meta_or_defer = diagnostics.X_0_is_not_a_valid_meta_property_for_keyword_import_Did_you_mean_meta_or_defer
2098
+ var X_0_is_not_allowed_as_a_parameter_name = diagnostics.X_0_is_not_allowed_as_a_parameter_name
2099
+ var X_0_is_not_allowed_as_a_variable_declaration_name = diagnostics.X_0_is_not_allowed_as_a_variable_declaration_name
2100
+ var X_0_is_of_type_unknown = diagnostics.X_0_is_of_type_unknown
2101
+ var X_0_is_possibly_null = diagnostics.X_0_is_possibly_null
2102
+ var X_0_is_possibly_null_or_undefined = diagnostics.X_0_is_possibly_null_or_undefined
2103
+ var X_0_is_possibly_undefined = diagnostics.X_0_is_possibly_undefined
2104
+ var X_0_is_referenced_directly_or_indirectly_in_its_own_base_expression = diagnostics.X_0_is_referenced_directly_or_indirectly_in_its_own_base_expression
2105
+ var X_0_is_referenced_directly_or_indirectly_in_its_own_type_annotation = diagnostics.X_0_is_referenced_directly_or_indirectly_in_its_own_type_annotation
2106
+ var X_0_is_specified_more_than_once_so_this_usage_will_be_overwritten = diagnostics.X_0_is_specified_more_than_once_so_this_usage_will_be_overwritten
2107
+ var X_0_is_used_inside_an_Effect_generator_Schema_1_preserves_the_typed_Effect_error_channel_for_this_operation_without_throwing_effect_schemaSyncInEffect = diagnostics.X_0_is_used_inside_an_Effect_generator_Schema_1_preserves_the_typed_Effect_error_channel_for_this_operation_without_throwing_effect_schemaSyncInEffect
2108
+ var X_0_list_cannot_be_empty = diagnostics.X_0_list_cannot_be_empty
2109
+ var X_0_modifier_already_seen = diagnostics.X_0_modifier_already_seen
2110
+ var X_0_modifier_can_only_appear_on_a_type_parameter_of_a_class_interface_or_type_alias = diagnostics.X_0_modifier_can_only_appear_on_a_type_parameter_of_a_class_interface_or_type_alias
2111
+ var X_0_modifier_can_only_appear_on_a_type_parameter_of_a_function_method_or_class = diagnostics.X_0_modifier_can_only_appear_on_a_type_parameter_of_a_function_method_or_class
2112
+ var X_0_modifier_cannot_appear_on_a_constructor_declaration = diagnostics.X_0_modifier_cannot_appear_on_a_constructor_declaration
2113
+ var X_0_modifier_cannot_appear_on_a_module_or_namespace_element = diagnostics.X_0_modifier_cannot_appear_on_a_module_or_namespace_element
2114
+ var X_0_modifier_cannot_appear_on_a_parameter = diagnostics.X_0_modifier_cannot_appear_on_a_parameter
2115
+ var X_0_modifier_cannot_appear_on_a_type_member = diagnostics.X_0_modifier_cannot_appear_on_a_type_member
2116
+ var X_0_modifier_cannot_appear_on_a_type_parameter = diagnostics.X_0_modifier_cannot_appear_on_a_type_parameter
2117
+ var X_0_modifier_cannot_appear_on_a_using_declaration = diagnostics.X_0_modifier_cannot_appear_on_a_using_declaration
2118
+ var X_0_modifier_cannot_appear_on_an_await_using_declaration = diagnostics.X_0_modifier_cannot_appear_on_an_await_using_declaration
2119
+ var X_0_modifier_cannot_appear_on_an_index_signature = diagnostics.X_0_modifier_cannot_appear_on_an_index_signature
2120
+ var X_0_modifier_cannot_appear_on_class_elements_of_this_kind = diagnostics.X_0_modifier_cannot_appear_on_class_elements_of_this_kind
2121
+ var X_0_modifier_cannot_be_used_here = diagnostics.X_0_modifier_cannot_be_used_here
2122
+ var X_0_modifier_cannot_be_used_in_an_ambient_context = diagnostics.X_0_modifier_cannot_be_used_in_an_ambient_context
2123
+ var X_0_modifier_cannot_be_used_with_1_modifier = diagnostics.X_0_modifier_cannot_be_used_with_1_modifier
2124
+ var X_0_modifier_cannot_be_used_with_a_private_identifier = diagnostics.X_0_modifier_cannot_be_used_with_a_private_identifier
2125
+ var X_0_modifier_must_precede_1_modifier = diagnostics.X_0_modifier_must_precede_1_modifier
2126
+ var X_0_must_be_followed_by_a_Unicode_property_value_expression_enclosed_in_braces = diagnostics.X_0_must_be_followed_by_a_Unicode_property_value_expression_enclosed_in_braces
2127
+ var X_0_needs_an_explicit_type_annotation = diagnostics.X_0_needs_an_explicit_type_annotation
2128
+ var X_0_only_refers_to_a_type_but_is_being_used_as_a_namespace_here = diagnostics.X_0_only_refers_to_a_type_but_is_being_used_as_a_namespace_here
2129
+ var X_0_only_refers_to_a_type_but_is_being_used_as_a_value_here = diagnostics.X_0_only_refers_to_a_type_but_is_being_used_as_a_value_here
2130
+ var X_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Did_you_mean_to_use_1_in_0 = diagnostics.X_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Did_you_mean_to_use_1_in_0
2131
+ var X_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_es2015_or_later = diagnostics.X_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_es2015_or_later
2132
+ var X_0_references = diagnostics.X_0_references
2133
+ var X_0_refers_to_a_UMD_global_but_the_current_file_is_a_module_Consider_adding_an_import_instead = diagnostics.X_0_refers_to_a_UMD_global_but_the_current_file_is_a_module_Consider_adding_an_import_instead
2134
+ var X_0_refers_to_a_value_but_is_being_used_as_a_type_here_Did_you_mean_typeof_0 = diagnostics.X_0_refers_to_a_value_but_is_being_used_as_a_type_here_Did_you_mean_typeof_0
2135
+ var X_0_resolves_to_a_type_and_must_be_marked_type_only_in_this_file_before_re_exporting_when_1_is_enabled_Consider_using_export_type_0_as_default = diagnostics.X_0_resolves_to_a_type_and_must_be_marked_type_only_in_this_file_before_re_exporting_when_1_is_enabled_Consider_using_export_type_0_as_default
2136
+ var X_0_resolves_to_a_type_and_must_be_marked_type_only_in_this_file_before_re_exporting_when_1_is_enabled_Consider_using_import_type_where_0_is_imported = diagnostics.X_0_resolves_to_a_type_and_must_be_marked_type_only_in_this_file_before_re_exporting_when_1_is_enabled_Consider_using_import_type_where_0_is_imported
2137
+ var X_0_resolves_to_a_type_only_declaration_and_must_be_imported_using_a_type_only_import_when_verbatimModuleSyntax_is_enabled = diagnostics.X_0_resolves_to_a_type_only_declaration_and_must_be_imported_using_a_type_only_import_when_verbatimModuleSyntax_is_enabled
2138
+ var X_0_resolves_to_a_type_only_declaration_and_must_be_marked_type_only_in_this_file_before_re_exporting_when_1_is_enabled_Consider_using_export_type_0_as_default = diagnostics.X_0_resolves_to_a_type_only_declaration_and_must_be_marked_type_only_in_this_file_before_re_exporting_when_1_is_enabled_Consider_using_export_type_0_as_default
2139
+ var X_0_resolves_to_a_type_only_declaration_and_must_be_marked_type_only_in_this_file_before_re_exporting_when_1_is_enabled_Consider_using_import_type_where_0_is_imported = diagnostics.X_0_resolves_to_a_type_only_declaration_and_must_be_marked_type_only_in_this_file_before_re_exporting_when_1_is_enabled_Consider_using_import_type_where_0_is_imported
2140
+ var X_0_resolves_to_a_type_only_declaration_and_must_be_re_exported_using_a_type_only_re_export_when_1_is_enabled = diagnostics.X_0_resolves_to_a_type_only_declaration_and_must_be_re_exported_using_a_type_only_re_export_when_1_is_enabled
2141
+ var X_0_returns_a_lazy_1_1_is_already_lazy_so_wrapping_it_in_a_zero_argument_function_adds_unnecessary_indirection_effect_lazyEffect = diagnostics.X_0_returns_a_lazy_1_1_is_already_lazy_so_wrapping_it_in_a_zero_argument_function_adds_unnecessary_indirection_effect_lazyEffect
2142
+ var X_0_should_be_set_inside_the_compilerOptions_object_of_the_config_json_file = diagnostics.X_0_should_be_set_inside_the_compilerOptions_object_of_the_config_json_file
2143
+ var X_0_tag_already_specified = diagnostics.X_0_tag_already_specified
2144
+ var X_0_was_also_declared_here = diagnostics.X_0_was_also_declared_here
2145
+ var X_0_was_exported_here = diagnostics.X_0_was_exported_here
2146
+ var X_0_was_imported_here = diagnostics.X_0_was_imported_here
2147
+ var X_0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type = diagnostics.X_0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type
2148
+ var X_0_which_lacks_return_type_annotation_implicitly_has_an_1_yield_type = diagnostics.X_0_which_lacks_return_type_annotation_implicitly_has_an_1_yield_type
2149
+ var X_1_implementation = diagnostics.X_1_implementation
2150
+ var X_1_reference = diagnostics.X_1_reference
2151
+ var X_4_unless_singleThreaded_is_passed = diagnostics.X_4_unless_singleThreaded_is_passed
2152
+ var X_abstract_modifier_can_only_appear_on_a_class_method_or_property_declaration = diagnostics.X_abstract_modifier_can_only_appear_on_a_class_method_or_property_declaration
2153
+ var X_accessor_modifier_can_only_appear_on_a_property_declaration = diagnostics.X_accessor_modifier_can_only_appear_on_a_property_declaration
2154
+ var X_and_here = diagnostics.X_and_here
2155
+ var X_and_npm_install_D_types_Slashnode = diagnostics.X_and_npm_install_D_types_Slashnode
2156
+ var X_arguments_cannot_be_referenced_in_property_initializers_or_class_static_initialization_blocks = diagnostics.X_arguments_cannot_be_referenced_in_property_initializers_or_class_static_initialization_blocks
2157
+ var X_auto_Colon_Treat_files_with_imports_exports_import_meta_jsx_with_jsx_Colon_react_jsx_or_esm_format_with_module_Colon_node16_as_modules = diagnostics.X_auto_Colon_Treat_files_with_imports_exports_import_meta_jsx_with_jsx_Colon_react_jsx_or_esm_format_with_module_Colon_node16_as_modules
2158
+ var X_await_expression_cannot_be_used_inside_a_class_static_block = diagnostics.X_await_expression_cannot_be_used_inside_a_class_static_block
2159
+ var X_await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module = diagnostics.X_await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module
2160
+ var X_await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules = diagnostics.X_await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules
2161
+ var X_await_expressions_cannot_be_used_in_a_parameter_initializer = diagnostics.X_await_expressions_cannot_be_used_in_a_parameter_initializer
2162
+ var X_await_has_no_effect_on_the_type_of_this_expression = diagnostics.X_await_has_no_effect_on_the_type_of_this_expression
2163
+ var X_await_using_declarations_are_not_allowed_in_ambient_contexts = diagnostics.X_await_using_declarations_are_not_allowed_in_ambient_contexts
2164
+ var X_await_using_declarations_are_not_allowed_in_case_or_default_clauses_unless_contained_within_a_block = diagnostics.X_await_using_declarations_are_not_allowed_in_case_or_default_clauses_unless_contained_within_a_block
2165
+ var X_await_using_statements_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module = diagnostics.X_await_using_statements_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module
2166
+ var X_await_using_statements_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules = diagnostics.X_await_using_statements_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules
2167
+ var X_await_using_statements_cannot_be_used_inside_a_class_static_block = diagnostics.X_await_using_statements_cannot_be_used_inside_a_class_static_block
2168
+ var X_baseUrl_option_is_set_to_0_using_this_value_to_resolve_non_relative_module_name_1 = diagnostics.X_baseUrl_option_is_set_to_0_using_this_value_to_resolve_non_relative_module_name_1
2169
+ var X_c_must_be_followed_by_an_ASCII_letter = diagnostics.X_c_must_be_followed_by_an_ASCII_letter
2170
+ var X_can_only_be_used_at_the_start_of_a_file = diagnostics.X_can_only_be_used_at_the_start_of_a_file
2171
+ var X_case_or_default_expected = diagnostics.X_case_or_default_expected
2172
+ var X_catch_or_finally_expected = diagnostics.X_catch_or_finally_expected
2173
+ var X_const_enum_member_initializer_was_evaluated_to_a_non_finite_value = diagnostics.X_const_enum_member_initializer_was_evaluated_to_a_non_finite_value
2174
+ var X_const_enum_member_initializer_was_evaluated_to_disallowed_value_NaN = diagnostics.X_const_enum_member_initializer_was_evaluated_to_disallowed_value_NaN
2175
+ var X_const_enum_member_initializers_must_be_constant_expressions = diagnostics.X_const_enum_member_initializers_must_be_constant_expressions
2176
+ var X_const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_import_declaration_or_export_assignment_or_type_query = diagnostics.X_const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_import_declaration_or_export_assignment_or_type_query
2177
+ var X_constructor_cannot_be_used_as_a_parameter_property_name = diagnostics.X_constructor_cannot_be_used_as_a_parameter_property_name
2178
+ var X_constructor_is_a_reserved_word = diagnostics.X_constructor_is_a_reserved_word
2179
+ var X_default_Colon = diagnostics.X_default_Colon
2180
+ var X_delete_cannot_be_called_on_an_identifier_in_strict_mode = diagnostics.X_delete_cannot_be_called_on_an_identifier_in_strict_mode
2181
+ var X_effect_diagnostics_directive_has_no_effect = diagnostics.X_effect_diagnostics_directive_has_no_effect
2182
+ var X_export_Asterisk_does_not_re_export_a_default = diagnostics.X_export_Asterisk_does_not_re_export_a_default
2183
+ var X_export_can_only_be_used_in_TypeScript_files = diagnostics.X_export_can_only_be_used_in_TypeScript_files
2184
+ var X_export_modifier_cannot_be_applied_to_ambient_modules_and_module_augmentations_since_they_are_always_visible = diagnostics.X_export_modifier_cannot_be_applied_to_ambient_modules_and_module_augmentations_since_they_are_always_visible
2185
+ var X_extends_clause_already_seen = diagnostics.X_extends_clause_already_seen
2186
+ var X_extends_clause_must_precede_implements_clause = diagnostics.X_extends_clause_must_precede_implements_clause
2187
+ var X_extends_clause_of_exported_class_0_has_or_is_using_private_name_1 = diagnostics.X_extends_clause_of_exported_class_0_has_or_is_using_private_name_1
2188
+ var X_extends_clause_of_exported_class_has_or_is_using_private_name_0 = diagnostics.X_extends_clause_of_exported_class_has_or_is_using_private_name_0
2189
+ var X_extends_clause_of_exported_interface_0_has_or_is_using_private_name_1 = diagnostics.X_extends_clause_of_exported_interface_0_has_or_is_using_private_name_1
2190
+ var X_false_unless_checkJs_is_set = diagnostics.X_false_unless_checkJs_is_set
2191
+ var X_false_unless_composite_is_set = diagnostics.X_false_unless_composite_is_set
2192
+ var X_file = diagnostics.X_file
2193
+ var X_for_await_loops_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module = diagnostics.X_for_await_loops_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module
2194
+ var X_for_await_loops_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules = diagnostics.X_for_await_loops_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules
2195
+ var X_for_await_loops_cannot_be_used_inside_a_class_static_block = diagnostics.X_for_await_loops_cannot_be_used_inside_a_class_static_block
2196
+ var X_get_and_set_accessors_cannot_declare_this_parameters = diagnostics.X_get_and_set_accessors_cannot_declare_this_parameters
2197
+ var X_if_files_is_specified_otherwise_Asterisk_Asterisk_Slash_Asterisk = diagnostics.X_if_files_is_specified_otherwise_Asterisk_Asterisk_Slash_Asterisk
2198
+ var X_implements_clause_already_seen = diagnostics.X_implements_clause_already_seen
2199
+ var X_implements_clauses_can_only_be_used_in_TypeScript_files = diagnostics.X_implements_clauses_can_only_be_used_in_TypeScript_files
2200
+ var X_import_can_only_be_used_in_TypeScript_files = diagnostics.X_import_can_only_be_used_in_TypeScript_files
2201
+ var X_infer_declarations_are_only_permitted_in_the_extends_clause_of_a_conditional_type = diagnostics.X_infer_declarations_are_only_permitted_in_the_extends_clause_of_a_conditional_type
2202
+ var X_k_must_be_followed_by_a_capturing_group_name_enclosed_in_angle_brackets = diagnostics.X_k_must_be_followed_by_a_capturing_group_name_enclosed_in_angle_brackets
2203
+ var X_let_is_not_allowed_to_be_used_as_a_name_in_let_or_const_declarations = diagnostics.X_let_is_not_allowed_to_be_used_as_a_name_in_let_or_const_declarations
2204
+ var X_new_expression_whose_target_lacks_a_construct_signature_implicitly_has_an_any_type = diagnostics.X_new_expression_whose_target_lacks_a_construct_signature_implicitly_has_an_any_type
2205
+ var X_node_modules_bower_components_jspm_packages_plus_the_value_of_outDir_if_one_is_specified = diagnostics.X_node_modules_bower_components_jspm_packages_plus_the_value_of_outDir_if_one_is_specified
2206
+ var X_nodenext_if_module_is_nodenext_node16_if_module_is_node16_or_node18_otherwise_bundler = diagnostics.X_nodenext_if_module_is_nodenext_node16_if_module_is_node16_or_node18_otherwise_bundler
2207
+ var X_one_of_Colon = diagnostics.X_one_of_Colon
2208
+ var X_one_or_more_Colon = diagnostics.X_one_or_more_Colon
2209
+ var X_options = diagnostics.X_options
2210
+ var X_or_JSX_element_expected = diagnostics.X_or_JSX_element_expected
2211
+ var X_or_expected = diagnostics.X_or_expected
2212
+ var X_package_json_does_not_have_a_0_field = diagnostics.X_package_json_does_not_have_a_0_field
2213
+ var X_package_json_does_not_have_a_typesVersions_entry_that_matches_version_0 = diagnostics.X_package_json_does_not_have_a_typesVersions_entry_that_matches_version_0
2214
+ var X_package_json_had_a_falsy_0_field = diagnostics.X_package_json_had_a_falsy_0_field
2215
+ var X_package_json_has_0_field_1_that_references_2 = diagnostics.X_package_json_has_0_field_1_that_references_2
2216
+ var X_package_json_has_a_peerDependencies_field = diagnostics.X_package_json_has_a_peerDependencies_field
2217
+ var X_package_json_has_a_typesVersions_entry_0_that_is_not_a_valid_semver_range = diagnostics.X_package_json_has_a_typesVersions_entry_0_that_is_not_a_valid_semver_range
2218
+ var X_package_json_has_a_typesVersions_entry_0_that_matches_compiler_version_1_looking_for_a_pattern_to_match_module_name_2 = diagnostics.X_package_json_has_a_typesVersions_entry_0_that_matches_compiler_version_1_looking_for_a_pattern_to_match_module_name_2
2219
+ var X_package_json_has_a_typesVersions_field_with_version_specific_path_mappings = diagnostics.X_package_json_has_a_typesVersions_field_with_version_specific_path_mappings
2220
+ var X_package_json_scope_0_explicitly_maps_specifier_1_to_null = diagnostics.X_package_json_scope_0_explicitly_maps_specifier_1_to_null
2221
+ var X_package_json_scope_0_has_invalid_type_for_target_of_specifier_1 = diagnostics.X_package_json_scope_0_has_invalid_type_for_target_of_specifier_1
2222
+ var X_package_json_scope_0_has_no_imports_defined = diagnostics.X_package_json_scope_0_has_no_imports_defined
2223
+ var X_paths_option_is_specified_looking_for_a_pattern_to_match_module_name_0 = diagnostics.X_paths_option_is_specified_looking_for_a_pattern_to_match_module_name_0
2224
+ var X_q_is_only_available_inside_character_class = diagnostics.X_q_is_only_available_inside_character_class
2225
+ var X_q_must_be_followed_by_string_alternatives_enclosed_in_braces = diagnostics.X_q_must_be_followed_by_string_alternatives_enclosed_in_braces
2226
+ var X_readonly_modifier_can_only_appear_on_a_property_declaration_or_index_signature = diagnostics.X_readonly_modifier_can_only_appear_on_a_property_declaration_or_index_signature
2227
+ var X_readonly_type_modifier_is_only_permitted_on_array_and_tuple_literal_types = diagnostics.X_readonly_type_modifier_is_only_permitted_on_array_and_tuple_literal_types
2228
+ var X_require_call_may_be_converted_to_an_import = diagnostics.X_require_call_may_be_converted_to_an_import
2229
+ var X_resolution_mode_can_only_be_set_for_type_only_imports = diagnostics.X_resolution_mode_can_only_be_set_for_type_only_imports
2230
+ var X_resolution_mode_is_the_only_valid_key_for_type_import_assertions = diagnostics.X_resolution_mode_is_the_only_valid_key_for_type_import_assertions
2231
+ var X_resolution_mode_is_the_only_valid_key_for_type_import_attributes = diagnostics.X_resolution_mode_is_the_only_valid_key_for_type_import_attributes
2232
+ var X_resolution_mode_should_be_either_require_or_import = diagnostics.X_resolution_mode_should_be_either_require_or_import
2233
+ var X_rootDirs_option_is_set_using_it_to_resolve_relative_module_name_0 = diagnostics.X_rootDirs_option_is_set_using_it_to_resolve_relative_module_name_0
2234
+ var X_super_can_only_be_referenced_in_a_derived_class = diagnostics.X_super_can_only_be_referenced_in_a_derived_class
2235
+ var X_super_can_only_be_referenced_in_members_of_derived_classes_or_object_literal_expressions = diagnostics.X_super_can_only_be_referenced_in_members_of_derived_classes_or_object_literal_expressions
2236
+ var X_super_cannot_be_referenced_in_a_computed_property_name = diagnostics.X_super_cannot_be_referenced_in_a_computed_property_name
2237
+ var X_super_cannot_be_referenced_in_constructor_arguments = diagnostics.X_super_cannot_be_referenced_in_constructor_arguments
2238
+ var X_super_is_only_allowed_in_members_of_object_literal_expressions_when_option_target_is_ES2015_or_higher = diagnostics.X_super_is_only_allowed_in_members_of_object_literal_expressions_when_option_target_is_ES2015_or_higher
2239
+ var X_super_may_not_use_type_arguments = diagnostics.X_super_may_not_use_type_arguments
2240
+ var X_super_must_be_called_before_accessing_a_property_of_super_in_the_constructor_of_a_derived_class = diagnostics.X_super_must_be_called_before_accessing_a_property_of_super_in_the_constructor_of_a_derived_class
2241
+ var X_super_must_be_called_before_accessing_this_in_the_constructor_of_a_derived_class = diagnostics.X_super_must_be_called_before_accessing_this_in_the_constructor_of_a_derived_class
2242
+ var X_super_must_be_followed_by_an_argument_list_or_member_access = diagnostics.X_super_must_be_followed_by_an_argument_list_or_member_access
2243
+ var X_super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_derived_class = diagnostics.X_super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_derived_class
2244
+ var X_this_cannot_be_referenced_in_a_computed_property_name = diagnostics.X_this_cannot_be_referenced_in_a_computed_property_name
2245
+ var X_this_cannot_be_referenced_in_a_module_or_namespace_body = diagnostics.X_this_cannot_be_referenced_in_a_module_or_namespace_body
2246
+ var X_this_cannot_be_referenced_in_a_static_property_initializer = diagnostics.X_this_cannot_be_referenced_in_a_static_property_initializer
2247
+ var X_this_cannot_be_referenced_in_current_location = diagnostics.X_this_cannot_be_referenced_in_current_location
2248
+ var X_this_implicitly_has_type_any_because_it_does_not_have_a_type_annotation = diagnostics.X_this_implicitly_has_type_any_because_it_does_not_have_a_type_annotation
2249
+ var X_true_for_ES2022_and_above_including_ESNext = diagnostics.X_true_for_ES2022_and_above_including_ESNext
2250
+ var X_true_if_composite_false_otherwise = diagnostics.X_true_if_composite_false_otherwise
2251
+ var X_true_unless_strict_is_false = diagnostics.X_true_unless_strict_is_false
2252
+ var X_true_when_moduleResolution_is_node16_nodenext_or_bundler_otherwise_false = diagnostics.X_true_when_moduleResolution_is_node16_nodenext_or_bundler_otherwise_false
2253
+ var X_tsc_Colon_The_TypeScript_Compiler = diagnostics.X_tsc_Colon_The_TypeScript_Compiler
2254
+ var X_tsconfig_json_is_present_but_will_not_be_loaded_if_files_are_specified_on_commandline_Use_ignoreConfig_to_skip_this_error = diagnostics.X_tsconfig_json_is_present_but_will_not_be_loaded_if_files_are_specified_on_commandline_Use_ignoreConfig_to_skip_this_error
2255
+ var X_type_Colon = diagnostics.X_type_Colon
2256
+ var X_unique_symbol_types_are_not_allowed_here = diagnostics.X_unique_symbol_types_are_not_allowed_here
2257
+ var X_unique_symbol_types_are_only_allowed_on_variables_in_a_variable_statement = diagnostics.X_unique_symbol_types_are_only_allowed_on_variables_in_a_variable_statement
2258
+ var X_unique_symbol_types_may_not_be_used_on_a_variable_declaration_with_a_binding_name = diagnostics.X_unique_symbol_types_may_not_be_used_on_a_variable_declaration_with_a_binding_name
2259
+ var X_use_strict_directive_cannot_be_used_with_non_simple_parameter_list = diagnostics.X_use_strict_directive_cannot_be_used_with_non_simple_parameter_list
2260
+ var X_use_strict_directive_used_here = diagnostics.X_use_strict_directive_used_here
2261
+ var X_using_declarations_are_not_allowed_in_ambient_contexts = diagnostics.X_using_declarations_are_not_allowed_in_ambient_contexts
2262
+ var X_using_declarations_are_not_allowed_in_case_or_default_clauses_unless_contained_within_a_block = diagnostics.X_using_declarations_are_not_allowed_in_case_or_default_clauses_unless_contained_within_a_block
2263
+ var X_with_statements_are_not_allowed_in_an_async_function_block = diagnostics.X_with_statements_are_not_allowed_in_an_async_function_block
2264
+ var X_with_statements_are_not_allowed_in_strict_mode = diagnostics.X_with_statements_are_not_allowed_in_strict_mode
2265
+ var X_yield_expression_implicitly_results_in_an_any_type_because_its_containing_generator_lacks_a_return_type_annotation = diagnostics.X_yield_expression_implicitly_results_in_an_any_type_because_its_containing_generator_lacks_a_return_type_annotation
2266
+ var X_yield_expressions_cannot_be_used_in_a_parameter_initializer = diagnostics.X_yield_expressions_cannot_be_used_in_a_parameter_initializer
2267
+ var You_can_learn_about_all_of_the_compiler_options_at_0 = diagnostics.You_can_learn_about_all_of_the_compiler_options_at_0
2268
+ var You_cannot_rename_a_module_via_a_global_import = diagnostics.You_cannot_rename_a_module_via_a_global_import
2269
+ var You_cannot_rename_elements_that_are_defined_in_a_node_modules_folder = diagnostics.You_cannot_rename_elements_that_are_defined_in_a_node_modules_folder
2270
+ var You_cannot_rename_elements_that_are_defined_in_another_node_modules_folder = diagnostics.You_cannot_rename_elements_that_are_defined_in_another_node_modules_folder
2271
+ var You_cannot_rename_elements_that_are_defined_in_the_standard_TypeScript_library = diagnostics.You_cannot_rename_elements_that_are_defined_in_the_standard_TypeScript_library
2272
+ var You_cannot_rename_this_element = diagnostics.You_cannot_rename_this_element