Skip to content

Instantly share code, notes, and snippets.

@aleor
Created May 6, 2017 14:31
Show Gist options
  • Save aleor/9556a266ff7022b9db3220f254c4419a to your computer and use it in GitHub Desktop.
Save aleor/9556a266ff7022b9db3220f254c4419a to your computer and use it in GitHub Desktop.
Hide .js and .map files in VS Code if there are corresponding .ts files
{
"files.exclude": {
"**/*.js": { "when": "$(basename).ts" },
"**/*.map": { "when": "$(basename).map" }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment