Skip to content

Instantly share code, notes, and snippets.

View dannypule's full-sized avatar
🎯
Focusing

Danny Pule dannypule

🎯
Focusing
View GitHub Profile
@dannypule
dannypule / settings.json
Last active October 22, 2016 19:04
Conditionally hide files “.js” and “.js.map” files in Visual Studio Code
{
"files.exclude": {
"**/*.js": {"when": "$(basename).ts"},
"**/*.map": {"when": "$(basename).map"}
}
}