Files
iptvc/.vscode/tasks.json
T
2026-08-03 17:57:21 +08:00

33 lines
883 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Запуск тестов",
"type": "shell",
"command": "make test"
},
{
"label": "Собрать для linux",
"type": "shell",
"command": "make linux"
},
{
"label": "Собрать для win",
"type": "shell",
"command": "make win"
},
{
"label": "Собрать для darwin",
"type": "shell",
"command": "make darwin"
},
{
"label": "Запустить serve --check",
"type": "shell",
"command": "go run ${workspaceFolder} serve --check"
},
]
}