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