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
Maybe it's better to hide .map and .js files when they match their corresponding .ts file. You can do that by copying the following lines in VS User Settings (Preferences > User Settings):
.map
.ts
// Workspace settings "files.exclude": { "**/*.js": {"when": "$(basename).ts"}, "**/*.map": true }