{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "request": "launch",
      "name": "Start App",
      "runtimeExecutable": "connect",
      "args": [
        "start"
      ],
      "cwd": "${workspaceFolder}",
      "smartStep": true,
      "skipFiles": [
        "<node_internals>/**/*.js"
      ],
      "outputCapture": "std"
    },
    {
      "type": "node",
      "request": "launch",
      "name": "Run Tests",
      "runtimeExecutable": "connect",
      "args": [
        "test"
      ],
      "cwd": "${workspaceFolder}",
      "smartStep": true,
      "skipFiles": [
        "<node_internals>/**/*.js"
      ],
      "outputCapture": "std"
    }
  ]
}