2016-08-25 18:15:28 -07:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
2021-05-06 11:53:48 -07:00
|
|
|
"version": "2.0.0",
|
2016-08-25 18:15:28 -07:00
|
|
|
"command": "grunt",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2021-05-06 11:53:48 -07:00
|
|
|
"label": "build",
|
|
|
|
"type": "grunt",
|
|
|
|
"task": "build",
|
2016-08-25 18:15:28 -07:00
|
|
|
"problemMatcher": [
|
|
|
|
"$lessCompile",
|
|
|
|
"$tsc",
|
|
|
|
"$jshint"
|
2021-05-06 11:53:48 -07:00
|
|
|
],
|
|
|
|
"group": "build"
|
2016-08-25 18:15:28 -07:00
|
|
|
},
|
|
|
|
{
|
2021-05-06 11:53:48 -07:00
|
|
|
"label": "test",
|
|
|
|
"type": "grunt",
|
|
|
|
"task": "test",
|
|
|
|
"problemMatcher": [],
|
|
|
|
"group": "test"
|
2016-08-25 18:15:28 -07:00
|
|
|
}
|
|
|
|
]
|
2016-08-27 11:27:04 -07:00
|
|
|
}
|