chore: point VS Code to the examples's local version of typescript

This commit is contained in:
Ward Bell 2016-02-25 14:46:14 -08:00
parent 1261cb69f7
commit 445216369e
1 changed files with 4 additions and 2 deletions

View File

@ -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
}
"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"
}