aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index b8aaa07d8..aa8065171 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -388,6 +388,25 @@
388 "description": "Enable Proc macro support, cargo.loadOutDirsFromCheck must be enabled.", 388 "description": "Enable Proc macro support, cargo.loadOutDirsFromCheck must be enabled.",
389 "type": "boolean", 389 "type": "boolean",
390 "default": false 390 "default": false
391 },
392 "rust-analyzer.debug.engine": {
393 "type": [
394 "null",
395 "string"
396 ],
397 "enum": [
398 "ms-vscode.cpptools",
399 "vadimcn.vscode-lldb"
400 ],
401 "default": null,
402 "description": "Preffered debug engine."
403 },
404 "rust-analyzer.debug.sourceFileMap" : {
405 "type":"object",
406 "description": "Optional source file mappings passed to the debug engine.",
407 "default": {
408 "<source-path>": "<target-path>"
409 }
391 } 410 }
392 } 411 }
393 }, 412 },