vscode/extensions/php/.vscode/tasks.json

12 lines
190 B
JSON
Raw Normal View History

2016-03-16 11:29:29 +00:00
{
2018-10-26 15:14:47 +00:00
"version": "2.0.0",
2016-03-16 11:29:29 +00:00
"command": "npm",
2018-10-26 15:14:47 +00:00
"type": "shell",
"presentation": {
"reveal": "silent"
},
2016-03-16 11:29:29 +00:00
"args": ["run", "compile"],
2018-10-26 15:14:47 +00:00
"isBackground": true,
2016-03-16 11:29:29 +00:00
"problemMatcher": "$tsc-watch"
2018-10-26 15:14:47 +00:00
}