Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Update vscode settings #2250

Merged
merged 1 commit into from
Feb 27, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down