Skip to content

Instantly share code, notes, and snippets.

@peter
Last active October 30, 2017 09:18
Show Gist options
  • Save peter/736bb17fb48e0adbad95aaaea5e60423 to your computer and use it in GitHub Desktop.
Save peter/736bb17fb48e0adbad95aaaea5e60423 to your computer and use it in GitHub Desktop.
Visual Studio Code User Settings JSON
{
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.js": {"when": "$(basename).ts"},
"**/*.js.map": true
},
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib",
"workbench.editor.enablePreview": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment