Skip to content

Instantly share code, notes, and snippets.

@javidrashid
Created September 16, 2017 11:06
Show Gist options
  • Save javidrashid/88368bc85b0d02c002e1cbd69d4c02fe to your computer and use it in GitHub Desktop.
Save javidrashid/88368bc85b0d02c002e1cbd69d4c02fe to your computer and use it in GitHub Desktop.
Vscode settings to hide .js and .js map files that are generated due to typescript
{
"editor.fontFamily": "Roboto Mono,monospace",
"editor.fontSize": "16px",
"files.autoSave": "afterDelay",
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.js.map": true,
"**/*.js": {"when": "$(basename).ts"}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment