forked from actboy168/lua-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
41 lines (41 loc) · 1.21 KB
/
launch.json
File metadata and controls
41 lines (41 loc) · 1.21 KB
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
{
"version": "0.2.0",
"configurations": [
{
"type": "lua",
"request": "launch",
"name": "Test Client",
"console": "integratedTerminal",
"luaVersion": "lua-latest",
"windows": {
"luaexe": "${extensionInstallFolder:actboy168.lua-debug}/bin/lua-debug.exe"
},
"linux": {
"luaexe": "${extensionInstallFolder:actboy168.lua-debug}/bin/lua-debug",
},
"osx": {
"luaexe": "${extensionInstallFolder:actboy168.lua-debug}/bin/lua-debug",
},
"outputCapture": [
],
"program": "",
"path": null,
"cpath": null,
"arg": [
"4711"
]
},
{
"type": "extensionHost",
"request": "launch",
"name": "Test Extension",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/extension/"
],
"env": {
"VSCODE_EXTENSION_PATH" : "${extensionInstallFolder:actboy168.lua-debug}"
}
}
]
}