mirror of
https://github.com/pushbits/server.git
synced 2025-04-29 02:07:38 +02:00
35 lines
550 B
JSON
35 lines
550 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "make build",
|
|
"presentation": {
|
|
"panel": "shared",
|
|
"reveal": "always",
|
|
"focus": true
|
|
},
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "test",
|
|
"type": "shell",
|
|
"command": "make test",
|
|
"presentation": {
|
|
"panel": "shared",
|
|
"reveal": "always",
|
|
"focus": true
|
|
},
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
}
|