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