From 445216369ec9fbc032e3f9c9ce313328e2b03139 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Thu, 25 Feb 2016 14:46:14 -0800 Subject: [PATCH] chore: point VS Code to the examples's local version of typescript --- .vscode/settings.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 7fe30fc88d..bede42df52 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,5 +5,7 @@ // Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened. "editor.insertSpaces": true, // When enabled, will trim trailing whitespace when you save a file. - "files.trimTrailingWhitespace": false -} \ No newline at end of file + "files.trimTrailingWhitespace": false, + // Specifies the folder path containing the tsserver and lib*.d.ts files to use. + "typescript.tsdk": "public/docs/_examples/node_modules/typescript/lib" +}