mirror of https://github.com/sbt/sbt.git
79 lines
1.3 KiB
JSON
79 lines
1.3 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"taskName": "compile",
|
|
"dependsOn": [
|
|
"compile:client",
|
|
"compile:server"
|
|
],
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "compile:client",
|
|
"type": "npm",
|
|
"script": "compile:client",
|
|
"group": "build",
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"label": "compile:server",
|
|
"type": "npm",
|
|
"script": "compile:server",
|
|
"group": "build",
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "watch",
|
|
"dependsOn": [
|
|
"watch:client",
|
|
"watch:server"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "watch:client",
|
|
"type": "npm",
|
|
"script": "watch:client",
|
|
"isBackground": true,
|
|
"group": "build",
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc-watch"
|
|
]
|
|
},
|
|
{
|
|
"label": "watch:server",
|
|
"type": "npm",
|
|
"script": "watch:server",
|
|
"isBackground": true,
|
|
"group": "build",
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc-watch"
|
|
]
|
|
}
|
|
]
|
|
} |