summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
blob: 243eeb20321345f281f35e040077641a01d27f09 (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
26
27
28
{
  "version": "0.2.0",
  "configurations": [
      {
          "type": "chrome",
          "request": "launch",
          "name": "Meteor: Chrome",
          "url": "http://localhost:3000",
          "webRoot": "${workspaceFolder}"
      },
      {
          "type": "node",
          "request": "launch",
          "name": "Meteor: Node",
          "runtimeExecutable": "/home/wekan/.meteor/meteor",
          "runtimeArgs": ["run", "--inspect-brk=9229"],
          "outputCapture": "std",
          "port": 9229,
          "timeout": 60000
      }
  ],
  "compounds": [
      {
          "name": "Meteor: All",
          "configurations": ["Meteor: Node", "Meteor: Chrome"]
      }
  ]
}