In my workspace settings file, the configuration for excluding certain files is as follows:
{
"files.exclude": {
"**/*.js": {
"when": "$(basename).ts"
},
"app/**/*.js.map": {
"when": "$(basename).ts"
}
}
}
I have experimented with different patterns such as app/**/*.map
and $(basename).js
but they did not yield the desired result. How can I properly exclude .map files from being displayed when using TypeScript?