From 56904c268ddde3d5b100939f56b54718a18eb4ec Mon Sep 17 00:00:00 2001 From: Andy Hanson Date: Sun, 26 Feb 2017 13:49:20 -0800 Subject: [PATCH] Update vscode settings --- .vscode/settings.json | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index aa07ee373b5..5e603e317dc 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,18 +6,19 @@ "editor.insertSpaces": true, // Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping - "editor.wrappingColumn": 140, + "editor.wordWrap": "bounded", + "editor.wordWrapColumn": 140, // The folders to exclude when doing a full text search in the workspace. - "search.excludeFolders": [ - ".git", - ".tscache", - "bower_components", - "bin", - "build", - "lib", - "node_modules" - ], + "files.exclude": { + ".git": true, + ".tscache": true, + "bower_components": true, + "bin": true, + "build": true, + "lib": true, + "node_modules": true + }, // Always use project's provided typescript compiler version "typescript.tsdk": "node_modules/typescript/lib"