@effect/language-service 0.20.1 → 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -19,9 +19,9 @@ This package implements a TypeScript language service plugin that allows additio
19
19
  }
20
20
  ```
21
21
 
22
- 3. Ensure that you set your editor to use your workspace TypeScript version.
22
+ 3. Ensure that you have installed TypeScript locally in your project and set your editor to use your workspace TypeScript version.
23
23
 
24
- - In VSCode you can do this by pressing "F1" and typing "TypeScript: Select TypeScript version". Then select "Use workspace version".
24
+ - In VSCode you can do this by pressing "F1" and typing "TypeScript: Select TypeScript version". Then select "Use workspace version". If that option does not appear, TypeScript is not installed locally in your node_modules.
25
25
  - In JetBrains you may have to disable the Vue language service, and chose the workspace version of TypeScript in the settings from the dropdown.
26
26
  - In NVim with nvim-vtsls you should refer to [how to enable TypeScript plugins in vstls](https://github.com/yioneko/vtsls?tab=readme-ov-file#typescript-plugin-not-activated)
27
27
 
@@ -43,6 +43,7 @@ And you're done! You'll now be able to use a set of refactor and diagnostics tha
43
43
  - Wrong usage of yield inside Effect.gen
44
44
  - Unnecessary usages of Effect.gen
45
45
  - Multiple versions of Effect in your project
46
+ - Warn on leaking requirements in Effect services
46
47
 
47
48
  ### Completions
48
49