Created
May 6, 2017 14:31
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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