@effect/language-service 0.52.1 → 0.53.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 +2 -1
- package/cli.js +4 -2
- package/cli.js.map +1 -1
- package/effect-lsp-patch-utils.js +4 -2
- package/effect-lsp-patch-utils.js.map +1 -1
- package/index.js +172 -112
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/transform.js +4 -2
- package/transform.js.map +1 -1
|
@@ -1199,7 +1199,8 @@ var defaults = {
|
|
|
1199
1199
|
skipLeadingPath: ["src/"]
|
|
1200
1200
|
}],
|
|
1201
1201
|
extendedKeyDetection: false,
|
|
1202
|
-
pipeableMinArgCount: 1
|
|
1202
|
+
pipeableMinArgCount: 1,
|
|
1203
|
+
layerGraphFollowDepth: 0
|
|
1203
1204
|
};
|
|
1204
1205
|
function parseKeyPatterns(patterns) {
|
|
1205
1206
|
const result = [];
|
|
@@ -1235,7 +1236,8 @@ function parse(config) {
|
|
|
1235
1236
|
noExternal: isObject(config) && hasProperty(config, "noExternal") && isBoolean(config.noExternal) ? config.noExternal : defaults.noExternal,
|
|
1236
1237
|
keyPatterns: isObject(config) && hasProperty(config, "keyPatterns") && isArray(config.keyPatterns) ? parseKeyPatterns(config.keyPatterns) : defaults.keyPatterns,
|
|
1237
1238
|
extendedKeyDetection: isObject(config) && hasProperty(config, "extendedKeyDetection") && isBoolean(config.extendedKeyDetection) ? config.extendedKeyDetection : defaults.extendedKeyDetection,
|
|
1238
|
-
pipeableMinArgCount: isObject(config) && hasProperty(config, "pipeableMinArgCount") && isNumber(config.pipeableMinArgCount) ? config.pipeableMinArgCount : defaults.pipeableMinArgCount
|
|
1239
|
+
pipeableMinArgCount: isObject(config) && hasProperty(config, "pipeableMinArgCount") && isNumber(config.pipeableMinArgCount) ? config.pipeableMinArgCount : defaults.pipeableMinArgCount,
|
|
1240
|
+
layerGraphFollowDepth: isObject(config) && hasProperty(config, "layerGraphFollowDepth") && isNumber(config.layerGraphFollowDepth) ? config.layerGraphFollowDepth : defaults.layerGraphFollowDepth
|
|
1239
1241
|
};
|
|
1240
1242
|
}
|
|
1241
1243
|
|