vscode-vsce/.vscode/tasks.json
Jimi (Dimitris) Charalampidis 4b15f82be7
Fix compile task
2019-05-09 14:25:58 +03:00

25 lines
No EOL
414 B
JSON

{
// 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
},
"command": "npm",
"presentation": {
"reveal": "silent"
},
"args": [
"run",
"compile",
"--loglevel",
"silent"
],
"problemMatcher": [],
}
]
}