From 4556c261caf8136d284d81a1109241a955c172e8 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Tue, 27 Mar 2018 16:08:55 +0200 Subject: [PATCH] Add rust.target_dir config option --- package.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/package.json b/package.json index ba75ce97..fa20cbc3 100644 --- a/package.json +++ b/package.json @@ -289,6 +289,14 @@ "type": "boolean", "default": false, "description": "Checks the project as if you were running cargo check --all-targets (I.e., check all targets and integration tests too)." + }, + "rust.target_dir": { + "type": [ + "string", + "null" + ], + "default": null, + "description": "When specified, it places the generated analysis files at the specified target directory. By default it is placed target/rls directory." } } }