@effect/language-service 0.71.1 → 0.72.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 +1 -0
- package/cli.js +345 -369
- package/cli.js.map +1 -1
- package/effect-lsp-patch-utils.js +19 -19
- package/effect-lsp-patch-utils.js.map +1 -1
- package/index.js +42 -42
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/transform.js +19 -19
- package/transform.js.map +1 -1
package/README.md
CHANGED
|
@@ -156,6 +156,7 @@ Few options can be provided alongside the initialization of the Language Service
|
|
|
156
156
|
"importAliases": { "Array": "Arr" }, // allows to chose some different names for import name aliases (only when not chosing to import the whole module) (default: {})
|
|
157
157
|
"noExternal": false, // disables features that provides links to external websites (such as links to mermaidchart.com) (default: false)
|
|
158
158
|
"keyPatterns": [{ "target": "service", "pattern": "default", "skipLeadingPath": ["src/"] }], // configure the key patterns; recommended reading more on the section "Configuring Key Patterns"
|
|
159
|
+
"effectFn": ["span"], // what types of Effect.fn you want to get suggested, zero or multiple between "untraced" for fnUntraced, "span" for Effect.fn with span, "inferred-span" for Effect.fn with the inferred span name, "no-span" for Effect.fn with no span (default: ["span"])
|
|
159
160
|
"layerGraphFollowDepth": 0, // controls the depth level that the layer graph will follow when resolving layer dependencies, depth is counted only when exiting the currently hovered/analyzed layer definition (default: 0)
|
|
160
161
|
"mermaidProvider": "mermaid.live" // which provider to use for mermaid, can also be a uri like http://localhost:8080 if running mermaid-live-editor locally.
|
|
161
162
|
}
|