aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-04-29 11:10:42 +0100
committervsrs <[email protected]>2020-04-29 11:10:42 +0100
commit042917e6e3bc3cb05e08e487ee8a7d0d4ae3af6b (patch)
treea6decd4bf82f575d39e13fccdbae626f70850e9e /editors/code/package.json
parent48d6e828f1878436bb8633a1e7df02a6383d991a (diff)
Configuration settings and source maps support
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 },