vscode/extensions/vscode-api-tests/.vscode/launch.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
509 B
JSON
Raw Normal View History

2015-11-25 09:58:13 +00:00
// 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",
2019-11-15 14:04:29 +00:00
"args": [
"${workspaceFolder}/../../",
"${workspaceFolder}/testWorkspace",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
2015-11-25 09:58:13 +00:00
"preLaunchTask": "npm"
}
]
2019-11-15 14:04:29 +00:00
}