AdBlock Detected

We provide high-quality source code for free. Please consider disabling your AdBlocker to support our work.

Buy me a Coffee

Saved Tutorials

No saved posts yet.

Press Enter to see all results

How : to hide generated javascript file in visual studio code

By pushpam abhishek
Listen to this article
How : to hide generated javascript file in visual studio code
google



How to hide generated javascript file in visual studio code

In this post, I am going to show you a cool trick in visual studio code to hide the auto-generated code. Let's suppose you are writing javascript code in visual studio code and you want to hide generated javascript code.

Create .vscode folder in your folder and then create settings.json file and paste following code

{
    "files.exclude": {
        "node_modules":true,
        "**/.git": true,
        "**/.DS_Store": true,
        "**/*.js.map": true,
        "**/*.js": {"when": "$(basename).ts"}
    }
}

Do you know:-



If you like the tutorial, then please share this tutorial with your friends on social media.

Share this post

pushpam abhishek

About pushpam abhishek

Pushpam Abhishek is a Software & web developer and designer who specializes in back-end as well as front-end development. If you'd like to connect with him, follow him on Twitter as @pushpambhshk

Comments