vscode-basex/.vscode/tasks.json

21 lines
415 B
JSON
Raw Normal View History

2015-11-22 06:48:40 +00:00
{
2016-01-13 23:01:51 +00:00
"version": "0.1.0",
"command": "gulp",
"isShellCommand": true,
"args": [
"--no-color"
],
"tasks": [
{
"taskName": "build",
"args": [],
"isBuildCommand": true,
"isWatching": false,
"problemMatcher": [
"$lessCompile",
"$tsc",
"$jshint"
]
}
]
2015-11-22 06:48:40 +00:00
}