@effect/language-service 0.17.1 → 0.19.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 +3 -1
- package/index.js +883 -276
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/transform.js +761 -143
- package/transform.js.map +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,8 @@ And you're done! You'll now be able to use a set of refactor and diagnostics tha
|
|
|
33
33
|
|
|
34
34
|
- Show the extended type of the current Effect
|
|
35
35
|
- Hovering yield\* of Effect.gen will show the Effect type parameters
|
|
36
|
+
- Hovering a variable assignment of a type Layer, will show info on how each service got involve
|
|
37
|
+
- Hovering a layer, will attempt to produce a graph
|
|
36
38
|
|
|
37
39
|
### Diagnostics
|
|
38
40
|
|
|
@@ -71,7 +73,7 @@ Few options can be provided alongside the initialization of the Language Service
|
|
|
71
73
|
"diagnostics": true, // controls Effect diagnostics (default: true)
|
|
72
74
|
"quickinfo": true, // controls quickinfo over Effect (default: true)
|
|
73
75
|
"completions": true, // controls Effect completions (default: true)
|
|
74
|
-
"
|
|
76
|
+
"allowedDuplicatedPackages": [] // list of package names that has effect in peer dependencies and are allowed to be duplicated (default: [])
|
|
75
77
|
}
|
|
76
78
|
]
|
|
77
79
|
}
|