Files
goTorrent/.vscode/tasks.json

23 lines
702 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"taskName": "Run Program",
"type": "shell",
"command": "go run main.go storage.go settings.go",
"problemMatcher": [
"$go"
]
},
{
"taskName": "Build GopherJS",
"type": "shell",
"command": "C:/Users/deranjer/go/bin/gopherjs.exe build C:/Users/deranjer/GoglandProjects/torrent-project/public/static/js/frontend-websocket.go",
"problemMatcher": [
"$go"
]
}
]
}