{
	"version": "0.1.0",
	// List of configurations. Add new configurations or edit existing ones.
	// ONLY "node" and "mono" are supported, change "type" to switch.
	"configurations": [
		{
			// Name of configuration; appears in the launch configuration drop down menu.
			"name": "Launch Server/server.js",
			// Type of configuration. Possible values: "node", "mono".
			"request": "launch",
			"type": "node",
			// Workspace relative or absolute path to the program.
			"program": "${workspaceRoot}/Server/server.js",
			// Automatically stop program after launch.
			"stopOnEntry": false,
			// Command line arguments passed to the program.
			"args": [],
			// Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace.
			"cwd": "${workspaceRoot}",
			// Workspace relative or absolute path to the runtime executable to be used. Default is the runtime executable on the PATH.
			"runtimeExecutable": null,
			// Optional arguments passed to the runtime executable.
			"runtimeArgs": [
				"--nolazy"
			],
			// Environment variables passed to the program.
			"env": {},
			// Use JavaScript source maps (if they exist).
			"sourceMaps": false,
			// If JavaScript source maps are enabled, the generated code is expected in this directory.
			"outDir": null
		},
		{
			// not working since latest vs code and electron versions :-(
			"name": "Launch desktop App",
			"type": "node",
			"request": "launch",
			"program": "${workspaceRoot}/desktop/app/background.js",
			"stopOnEntry": false,
			"args": [
				"--dev"
			],
			"cwd": "${workspaceRoot}",
			"runtimeExecutable": "${workspaceRoot}/desktop/node_modules/electron-prebuilt/dist/electron.exe",
			"env": {}
		},
        {
			"name": "Launch node.js sample",
			"type": "node",
			"request": "launch",
			"program": "${workspaceRoot}/client samples/nodejs/app.js",
			"stopOnEntry": false,
			"args": [
				"--nolazy"
			],
			"cwd": "${workspaceRoot}/client samples/nodejs",
			"runtimeExecutable": null,
			"env": {}
		},
		{
			"name": "Launch botbuilder sample",
			"type": "node",
			"request": "launch",
			"program": "${workspaceRoot}/client samples/botbuilder/index.js",
			"stopOnEntry": false,
			"args": [
				"--nolazy"
			],
			"cwd": "${workspaceRoot}/client samples/botbuilder",
			"runtimeExecutable": null,
			"env": {}
		},
		{
			"name": "Launch ContosoFlowers sample",
			"type": "node",
			"request": "launch",
			"program": "${workspaceRoot}/client samples/contosoflowers/app.js",
			"stopOnEntry": false,
			"args": [
				"--nolazy"
			],
			"cwd": "${workspaceRoot}/client samples/contosoflowers",
			"runtimeExecutable": null,
			"env": {
				"BING_MAPS_KEY":"K8LDhHtIMTPZO2lkv0RQ~obPXA8ITMZ2m8JanyFpxqg~Aix9KcaOiNfYAEfw3wIjvWXfmK6zMF9anDvj5u44vvPbgow2Ns_EsIsUz4pcmrSa"
			}
		},
		{
			// Name of configuration; appears in the launch configuration drop down menu.
			"name": "Launch w/TypeScript",
			// Type of configuration. Possible values: "node", "mono".
			"type": "node",
			// Workspace relative or absolute path to the program.
			"program": "${workspaceRoot}/Server/server.ts",
			// Automatically stop program after launch.
			"stopOnEntry": false,
			// Command line arguments passed to the program.
			"args": [],
			// Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace.
			"cwd": "${workspaceRoot}",
			// Workspace relative or absolute path to the runtime executable to be used. Default is the runtime executable on the PATH.
			"runtimeExecutable": null,
			// Optional arguments passed to the runtime executable.
			"runtimeArgs": [
				"--nolazy"
			],
			// Environment variables passed to the program.
			"env": {},
			// Use JavaScript source maps (if they exist).
			"sourceMaps": true,
			// If JavaScript source maps are enabled, the generated code is expected in this directory.
			"outDir": null
		}
	]
}