{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Run mocha",
            "type": "node",
            "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
            "request": "launch",
            "stopOnEntry": false,
            "args": [
                "-t",
                "30000",
                "-R",
                "spec",
                "-u",
                "tdd",
                "--recursive",
                "./obj/test"
            ],
            "cwd": "${workspaceRoot}",
            "runtimeArgs": [
                "--nolazy"
            ],
            "runtimeExecutable": null,
            "env": {
                "NODE_ENV": "production"
            },
            "sourceMaps": true,
            "outDir": "${workspaceRoot}/obj"
        }
    ]
}