I am working on a typescript project in Visual Studio code and would like to hide the .js.map (and maybe even the .js) files from appearing in the
.js.map
.js
Please add the following lines in "User Settings" panel in order to override "Default Settings". You can hide files {basename}.js and {basename}.js.map when you create file as {basename}.ts.
"files.exclude": { "**/*.js": { "when": "$(basename).ts" }, "**/*.js.map": { "when": "$(basename)" } }