@effect/tsgo 0.11.3 → 0.11.5

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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Effect Language Service (TypeScript-Go)
2
2
 
3
- A wrapper around [TypeScript-Go](https://github.com/nicolo-ribaudo/TypeScript-Go) that builds the Effect Language Service, providing Effect-TS diagnostics and quick fixes.
3
+ A wrapper around [TypeScript-Go](https://github.com/microsoft/TypeScript-Go) that builds the Effect Language Service, providing Effect-TS diagnostics and quick fixes.
4
4
  This project targets **Effect V4** (codename: "smol") primarily and also Effect V3.
5
5
 
6
6
  ## Currently in Alpha
@@ -182,7 +182,7 @@ Some diagnostics are off by default or have a default severity of suggestion, bu
182
182
 
183
183
  ### Relationship to Official TypeScript-Go (`tsgo`)
184
184
 
185
- Effect-tsgo is a **superset** of the official [TypeScript-Go](https://github.com/nicolo-ribaudo/TypeScript-Go) — it embeds a pinned version of `tsgo` with a small patch set on top and adds the Effect language service. This means `effect-tsgo` provides all standard TypeScript-Go functionality plus Effect-specific diagnostics, quick fixes, and refactors.
185
+ Effect-tsgo is a **superset** of the official [TypeScript-Go](https://github.com/microsoft/TypeScript-Go) — it embeds a pinned version of `tsgo` with a small patch set on top and adds the Effect language service. This means `effect-tsgo` provides all standard TypeScript-Go functionality plus Effect-specific diagnostics, quick fixes, and refactors.
186
186
 
187
187
  **Use `effect-tsgo` instead of `tsgo`, not alongside it.** Running both in parallel will produce duplicate diagnostics and degrade editor performance. Configure your editor to use `effect-tsgo` as your sole TypeScript language server.
188
188
 
@@ -199259,7 +199259,7 @@ var FileReadError = class extends TaggedError("FileReadError") {
199259
199259
  //#endregion
199260
199260
  //#region package.json
199261
199261
  var name = "@effect/tsgo";
199262
- var version = "0.11.3";
199262
+ var version = "0.11.5";
199263
199263
 
199264
199264
  //#endregion
199265
199265
  //#region src/setup/consts.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect/tsgo",
3
- "version": "0.11.3",
3
+ "version": "0.11.5",
4
4
  "description": "Effect Language Service for TypeScript-Go — Effect-specific diagnostics and hover features.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -22,13 +22,13 @@
22
22
  "README.md"
23
23
  ],
24
24
  "optionalDependencies": {
25
- "@effect/tsgo-win32-x64": "0.11.3",
26
- "@effect/tsgo-win32-arm64": "0.11.3",
27
- "@effect/tsgo-linux-x64": "0.11.3",
28
- "@effect/tsgo-linux-arm64": "0.11.3",
29
- "@effect/tsgo-linux-arm": "0.11.3",
30
- "@effect/tsgo-darwin-x64": "0.11.3",
31
- "@effect/tsgo-darwin-arm64": "0.11.3"
25
+ "@effect/tsgo-win32-x64": "0.11.5",
26
+ "@effect/tsgo-win32-arm64": "0.11.5",
27
+ "@effect/tsgo-linux-x64": "0.11.5",
28
+ "@effect/tsgo-linux-arm64": "0.11.5",
29
+ "@effect/tsgo-linux-arm": "0.11.5",
30
+ "@effect/tsgo-darwin-x64": "0.11.5",
31
+ "@effect/tsgo-darwin-arm64": "0.11.5"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@effect/platform-node": "^4.0.0-beta.66",