forked from tweag/nickel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.json
42 lines (40 loc) · 1.12 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// 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}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}/lsp/client-extension"],
"outFiles": ["${workspaceRoot}/lsp/client-extension/out/**/*.js"],
"preLaunchTask": "make server",
"localRoot": "${workspaceFolder}/lsp/client-extension"
},
{
"name": "Language Server E2E Test",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}",
"--extensionTestsPath=${workspaceRoot}/client/out/test/index",
"${workspaceRoot}/client/testFixture"
],
"outFiles": ["${workspaceRoot}/client/out/test/**/*.js"]
},
{
"type": "lldb",
"request": "attach",
"name": "Attach to Server",
"program": "${workspaceFolder}/target/debug/nls"
}
],
"compounds": [
{
"name": "Client + Server",
"configurations": ["Launch Client", "Attach to Server"]
}
]
}