vscode/extensions/html-language-features/.vscode/tasks.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
287 B
JSON
Raw Normal View History

2016-08-17 09:37:22 +00:00
{
2018-02-23 22:11:19 +00:00
"version": "2.0.0",
"tasks": [
{
"label": "yarn",
"command": "yarn",
"args": ["compile"],
2018-02-23 22:11:19 +00:00
"type": "shell",
"presentation": {
"reveal": "silent",
"focus": false,
"panel": "shared"
},
"isBackground": true,
"problemMatcher": "$tsc-watch"
}
],
}