{
	"version": "0.2.0",
	"configurations": [
		
		{
			"name": "Launch",
			"type": "node",
			"request": "launch",
			"program": "${workspaceRoot}/src/index.js",
			"stopOnEntry": false,
			"args": [],
			"cwd": "${workspaceRoot}/src/",
			"preLaunchTask": "",
			"runtimeExecutable": null,
			"runtimeArgs": [
				"--nolazy"
			],
			"env": {
				"NODE_ENV": "development"
			}
		},
		{
			"name": "Launch-Test",
			"type": "node",
			"request": "launch",
			"program": "${workspaceRoot}/test/index.js",
			"stopOnEntry": false,
			"args": [],
			"cwd": "${workspaceRoot}/test/",
			"preLaunchTask": "",
			"runtimeExecutable": null,
			"runtimeArgs": [
				"--nolazy"
			],
			"env": {
				"NODE_ENV": "development"
			}
		}
	]
}