2018-06-04 12:10:27 +02:00
|
|
|
// A launch configuration that compiles the extension and then opens it inside a new window
|
2017-09-04 17:43:23 +02:00
|
|
|
{
|
|
|
|
|
"version": "0.2.0",
|
|
|
|
|
"configurations": [
|
|
|
|
|
{
|
|
|
|
|
"type": "extensionHost",
|
|
|
|
|
"request": "launch",
|
2018-06-04 12:10:27 +02:00
|
|
|
"name": "Launch Client",
|
2017-09-04 17:43:23 +02:00
|
|
|
"runtimeExecutable": "${execPath}",
|
2018-06-25 02:14:44 -07:00
|
|
|
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
|
2023-12-18 12:56:33 +01:00
|
|
|
"outFiles": [
|
|
|
|
|
"${workspaceRoot}/client/out/**/*.js",
|
|
|
|
|
"${workspaceRoot}/server/out/**/*.js"
|
|
|
|
|
],
|
|
|
|
|
"autoAttachChildProcesses": true,
|
2018-10-26 11:15:09 +02:00
|
|
|
"preLaunchTask": {
|
|
|
|
|
"type": "npm",
|
|
|
|
|
"script": "watch"
|
|
|
|
|
}
|
2017-09-04 17:43:23 +02:00
|
|
|
},
|
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"]
|
2017-09-04 17:43:23 +02:00
|
|
|
}
|
|
|
|
|
]
|
2018-06-25 02:14:44 -07:00
|
|
|
}
|