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

22 lines
596 B
JSON
Raw Normal View History

2020-05-05 20:35:48 +00:00
{
"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"
},
]
}