summaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: 58709bc925b5b2620b1df3082d9035743ed1c18a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  "version": "2.0.0",
  "tasks": [
    {
      "type": "npm",
      "script": "build",
      "group": {
        "kind": "build",
        "isDefault": true
      },
      "problemMatcher": [],
      "label": "npm: build",
      "detail": "scripts/build.sh"
    },
    {
      "type": "npm",
      "script": "build",
      "path": "packages/vscode-ide-companion",
      "group": "build",
      "problemMatcher": [],
      "label": "npm: build: vscode-ide-companion",
      "detail": "npm run build -w packages/vscode-ide-companion"
    }
  ]
}