Skip to content

Instantly share code, notes, and snippets.

@yuanliwei
Created February 15, 2019 07:31
Show Gist options
  • Save yuanliwei/6ad31f1a80f9c947fb446a61e4b0d1b2 to your computer and use it in GitHub Desktop.
Save yuanliwei/6ad31f1a80f9c947fb446a61e4b0d1b2 to your computer and use it in GitHub Desktop.
vscode tasks run js.md
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "run js file",
            "type": "shell",
            "command": "node ${file}",
            "problemMatcher": [],
            "presentation": {
                "echo": true,
                "reveal": "always",
                "focus": true,
                "panel": "shared",
                "showReuseMessage": true,
                "clear": false
            }
        }
    ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment