summaryrefslogtreecommitdiffstats
path: root/.vscode/tasks.json
blob: 7138b934ba2c23be342c83b174ddab3debcf3d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "Run with node",
      "type": "shell",
      "command": "node ${file}",
      "group": {
        "kind": "build",
        "isDefault": true
      },
      "presentation": {
        "reveal": "always",
        "clear": true,
        "echo": false,
        "showReuseMessage": false
      },
      "problemMatcher": []
    }
  ]
}