33 lines
883 B
JSON
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"
|
|
},
|
|
]
|
|
}
|