2017-12-05 14:48:28 +01:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "compile",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
2019-05-09 14:25:58 +03:00
|
|
|
},
|
|
|
|
"command": "npm",
|
|
|
|
"presentation": {
|
|
|
|
"reveal": "silent"
|
|
|
|
},
|
|
|
|
"args": [
|
|
|
|
"run",
|
|
|
|
"compile",
|
|
|
|
"--loglevel",
|
|
|
|
"silent"
|
|
|
|
],
|
|
|
|
"problemMatcher": [],
|
2017-12-05 14:48:28 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|