launch.json 545 字节
Newer Older
1 2 3 4 5 6 7 8 9
// A launch configuration that compiles the extension and then opens it inside a new window
{
	"version": "0.1.0",
	"configurations": [
		{
			"name": "Launch Tests",
			"type": "extensionHost",
			"request": "launch",
			"runtimeExecutable": "${execPath}",
I
isidor 已提交
10
			"args": ["${workspaceFolder}/../../", "${workspaceFolder}/test", "--extensionDevelopmentPath=${workspaceFolder}", "--extensionTestsPath=${workspaceFolder}/out" ],
11 12
			"stopOnEntry": false,
			"sourceMaps": true,
I
isidor 已提交
13
			"outDir": "${workspaceFolder}/out",
14 15 16 17
			"preLaunchTask": "npm"
		}
	]
}