{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "request": "launch",
      "name": "Mocha Tests",
      "program": "${workspaceFolder}/main.js",
      "args": [
        "test"
      ],
      "internalConsoleOptions": "openOnSessionStart"
    },
    {
      "type": "node",
      "request": "launch",
      "name": "Mocha Tests - Multi Server",
      "program": "${workspaceFolder}/main.js",
      "args": [
        "testmulti"
      ],
      "internalConsoleOptions": "openOnSessionStart"
    },
    {
      "type": "node",
      "request": "launch",
      "name": "Launch Server",
      "program": "${workspaceFolder}/server.js"
    },
    {
      "type": "node",
      "request": "launch",
      "name": "Launch Server - SSL",
      "program": "${workspaceFolder}/server.js",
      "env": {
        "SSL_ENABLED": "true",
        "SSL_KEY": "./server.key",
        "SSL_CERT": "./server.crt",
        "SSL_CA": "./server.chain.pem"
      }
    },
    {
      "type": "node",
      "request": "attach",
      "name": "Attach",
      "port": 9229
    }
  ]
}
