How to hide .js and .map files from project explorer in Visual Studio Code

Generally, you would not want to see the compiled .js file and the corresponding .js.map files when you are using the Typescript. However you can use tsconfig.json to output the js and map files to a separate folder, it makes it easier to maintain. But if you don’t use a separate folder, you can use settings.json to hide the js and map files in the project folder explorer. Continue reading “How to hide .js and .map files from project explorer in Visual Studio Code”