{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "request": "launch",
      "name": "Mocha Tests",
      "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
      "args": [
        "-u",
        "tdd",
        "--timeout",
        "999999",
        "--colors",
        "${workspaceRoot}/dist/integrationTests"
      ],
      "internalConsoleOptions": "openOnSessionStart"
    },
    {
      "name": "Launch",
      "type": "node",
      "request": "launch",
      "program": "${workspaceRoot}/bin/type-doc",
      "stopOnEntry": false,
      "args": [
        "./src/main.js"
      ],
      "cwd": "${workspaceRoot}",
      // "preLaunchTask": "build:dev",
      "runtimeExecutable": null,
      "runtimeArgs": [],
      "env": {
        "NODE_ENV": "test"
      },
      "console": "internalConsole",
      "sourceMaps": true,
      "outDir": null
    },
    {
      "name": "Launch test thing",
      "type": "node",
      "request": "launch",
      "program": "${workspaceRoot}/test.js",
      "stopOnEntry": false,
      "args": [],
      "cwd": "${workspaceRoot}",
      "preLaunchTask": "build:dev",
      "runtimeExecutable": null,
      "runtimeArgs": [],
      "env": {
        "NODE_ENV": "test"
      },
      "console": "internalConsole",
      "sourceMaps": true,
      "outDir": null
    }
    {
      "name": "Attach",
      "type": "node",
      "request": "attach",
      "port": 5858,
      "address": "localhost",
      "restart": false,
      "sourceMaps": false,
      "outDir": null,
      "localRoot": "${workspaceRoot}",
      "remoteRoot": null
    },
    {
      "name": "Attach to Process",
      "type": "node",
      "request": "attach",
      "processId": "${command.PickProcess}",
      "port": 5858,
      "sourceMaps": false,
      "outDir": null
    },
    {
      "type": "node",
      "request": "launch",
      "name": "Run mocha",
      "cwd": "${workspaceRoot}",
      "preLaunchTask": "build:dev",
      "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
      "sourceMaps": true,
      "stopOnEntry": false,
      "args": [
        "-t",
        "10000",
        "dist/integrationTests/**/*.js"
      ],
      "runtimeExecutable": null
    },
    {
      "name": "Run Declaration Importer",
      "cwd": "${workspaceRoot}",
      "type": "node",
      "request": "launch",
      "preLaunchTask": "build:dev",
      "program": "${workspaceRoot}/dist/lib/TDDeclarationImporter.js",
      "sourceMaps": true,
      "stopOnEntry": false,
      "args": [],
      "runtimeExecutable": null
    }
  ]
}
