launch.json 704 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
{
	"version": "0.1.0",
	// List of configurations. Add new configurations or edit existing ones.
	"configurations": [
		{
			"name": "Attach",
			"type": "node",
			"request": "attach",
			"port": 6004,
			"sourceMaps": true,
I
isidor 已提交
11
			"outDir": "${workspaceFolder}/out"
12 13 14 15 16
		},
		{
			"name": "Unit Tests",
			"type": "node",
			"request": "launch",
I
isidor 已提交
17
			"program": "${workspaceFolder}/../../../node_modules/mocha/bin/_mocha",
18 19 20 21 22 23
			"stopOnEntry": false,
			"args": [
				"--timeout",
				"999999",
				"--colors"
			],
I
isidor 已提交
24
			"cwd": "${workspaceFolder}",
25 26 27 28
			"runtimeExecutable": null,
			"runtimeArgs": [],
			"env": {},
			"sourceMaps": true,
I
isidor 已提交
29
			"outDir": "${workspaceFolder}/out"
30 31 32
		}
	]
}