3163: vscode: fix the default value for withSysroot r=matklad a=Veetaha

See [zulip](https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0/topic/withSysroot.20is.20false.20.3F)
cc @edwin0cheng 

Co-authored-by: Veetaha <gerzoh1@gmail.com>
This commit is contained in:
bors[bot] 2020-02-16 10:40:56 +00:00 committed by GitHub
commit 35dd04555d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,5 +153,5 @@ export class Config {
}
// for internal use
get withSysroot() { return this.cfg.get("withSysroot", false); }
get withSysroot() { return this.cfg.get("withSysroot", true) as boolean; }
}