This commit is contained in:
2026-08-03 17:57:21 +08:00
parent 6c3de4b2ef
commit f8c17278a2
65 changed files with 10823 additions and 462 deletions
+32
View File
@@ -0,0 +1,32 @@
{
// 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"
},
]
}