Skip to content

Instantly share code, notes, and snippets.

@dannypule
Last active October 22, 2016 19:04
Show Gist options
  • Save dannypule/0d7b9083e6624c2bb3282220fb9e630e to your computer and use it in GitHub Desktop.
Save dannypule/0d7b9083e6624c2bb3282220fb9e630e to your computer and use it in GitHub Desktop.
Conditionally hide files “.js” and “.js.map” files in Visual Studio Code
{
"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