TypeScript is awesome, but what if I don’t want to see extra .js and .js.map files everywhere that are polluting your file explorer in Visual Studio Code?
Here is an easy solution:
- Open user settings:
- Add "files.exclude" property to the user settings or to the workspace settings:"files.exclude": { "**/*.js*": {"when": "$(basename).ts"}, "**/*.js.map": true }
Done:
No comments:
Post a Comment