Files
vscode-extension-samples/lsp-sample/.vscode/launch.json

35 lines
953 B
JSON
Raw Permalink Normal View History

// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.2.0",
"configurations": [
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
2018-06-25 02:14:44 -07:00
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"outFiles": [
"${workspaceRoot}/client/out/**/*.js",
"${workspaceRoot}/server/out/**/*.js"
],
"autoAttachChildProcesses": true,
2018-10-26 11:15:09 +02:00
"preLaunchTask": {
"type": "npm",
"script": "watch"
}
},
2018-06-25 02:14:44 -07:00
{
2018-06-26 00:25:27 -07:00
"name": "Language Server E2E Test",
2018-06-25 02:14:44 -07:00
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}",
2020-03-26 13:54:06 +01:00
"--extensionTestsPath=${workspaceRoot}/client/out/test/index",
2018-06-25 02:14:44 -07:00
"${workspaceRoot}/client/testFixture"
],
"outFiles": ["${workspaceRoot}/client/out/test/**/*.js"]
}
]
2018-06-25 02:14:44 -07:00
}