-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.json
65 lines (65 loc) · 1.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// 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": "Release Frege LSP",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceRoot}",
"${workspaceFolder}/examples"
],
"outFiles": [
"${workspaceRoot}/out/**/*.js"
],
"preLaunchTask": {
"type": "npm",
"script": "esbuild"
}
},
{
"type": "extensionHost",
"request": "launch",
"name": "Local Frege LSP with Java Debugging",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}",
"${workspaceFolder}/examples"
],
"env": {
"LOCAL_FREGE_SERVER_PATH": "${workspaceFolder}/../frege-lsp-server/build/install/frege-lsp-server/bin/frege-lsp-server",
"JAVA_OPTS": "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=localhost:6008,quiet=y"
},
"outFiles": [
"${workspaceRoot}/out/**/*.js"
],
"preLaunchTask": {
"type": "npm",
"script": "esbuild"
}
},
{
"type": "extensionHost",
"request": "launch",
"name": "Local Frege LSP",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}",
"${workspaceFolder}/examples"
],
"env": {
"LOCAL_FREGE_SERVER_PATH": "${workspaceFolder}/../frege-lsp-server/build/install/frege-lsp-server/bin/frege-lsp-server",
},
"outFiles": [
"${workspaceRoot}/out/**/*.js"
],
"preLaunchTask": {
"type": "npm",
"script": "esbuild"
}
}
]
}