ibm-streams
Version:
IBM Streams Support for Visual Studio Code
56 lines (55 loc) • 1.15 kB
JSON
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "webpack:dev-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "npm: compile",
"problemMatcher": [
{
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
}
]
},
{
"type": "npm",
"script": "clean",
"problemMatcher": "$tsc",
"presentation": {
"reveal": "never",
"panel": "dedicated"
}
},
{
"type": "npm",
"script": "compile",
"problemMatcher": "$tsc",
"presentation": {
"reveal": "never",
"panel": "dedicated"
}
}
]
}