This repository has been archived on 2021-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
2020-coding-projects/uno/.vscode/launch.json
2020-05-05 22:35:48 +02:00

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"
},
]
}