{
	"version": "0.2.0",
	"configurations": [
		{
			"name": "Server",
			"type": "node",
			"request": "launch",
			"program": "${workspaceRoot}/server.js",
			"stopOnEntry": false,
			"args": [],
			"cwd": "${workspaceRoot}",
			"runtimeExecutable": null,
			"runtimeArgs": [
				"--nolazy"
			],
			"env": {
				"NODE_ENV": "development",
                "HTTP_PROXY":"http://localhost:8080",
			},
			"externalConsole": false,
			"sourceMaps": true,
			"outDir": null
		},
		{
	       "name": "Client",
            "type": "chrome",
            "request": "launch",
            "url": "http://localhost:7777",
            "webRoot": "./",
            "sourceMaps": true,
            "diagnosticLogging": false
		}
	]
}