{
	"version": "0.2.0",
	"configurations": [
		{
			"name": "jenkins",
			"type": "node",
			"request": "launch",
			"program": "${workspaceRoot}/src/jenkins.ts",
			"stopOnEntry": false,
			"args": [],
			"cwd": "${workspaceRoot}",
			"runtimeExecutable": null,
			"runtimeArgs": [
				"--nolazy"
			],
			"env": {
				"NODE_ENV": "development",
                "DEBUG": "jenkins:*"
			},
            "preLaunchTask": "tsc",
			"externalConsole": false,
			"sourceMaps": true,
			"outDir": "${workspaceRoot}/lib"
		}
	]
}