22 lines
596 B
JSON
22 lines
596 B
JSON
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [{
|
||
|
"name": "Launch Go",
|
||
|
"type": "go",
|
||
|
"request": "launch",
|
||
|
"mode": "remote",
|
||
|
"remotePath": "",
|
||
|
"port": 2345,
|
||
|
"host": "127.0.0.1",
|
||
|
"program": "${workspaceFolder}/server",
|
||
|
"showLog": true
|
||
|
},
|
||
|
{
|
||
|
"name": "Launch index.html",
|
||
|
"type": "firefox",
|
||
|
"request": "launch",
|
||
|
"reAttach": true,
|
||
|
"file": "${workspaceFolder}/client/index.html"
|
||
|
},
|
||
|
]
|
||
|
}
|