mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
80 lines
1.4 KiB
JSON
80 lines
1.4 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"taskName": "Compile",
|
|
"dependsOn": [
|
|
"Client Compile",
|
|
"Server Compile"
|
|
],
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"taskName": "Client Compile",
|
|
"type": "shell",
|
|
"command": "npm run client-compile",
|
|
"group": "build",
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "Server Compile",
|
|
"type": "shell",
|
|
"command": "npm run server-compile",
|
|
"group": "build",
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "Watch",
|
|
"dependsOn": [
|
|
"Client Watch",
|
|
"Server Watch"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"taskName": "Client Watch",
|
|
"type": "shell",
|
|
"command": "npm run client-watch",
|
|
"isBackground": true,
|
|
"group": "build",
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc-watch"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "Server Watch",
|
|
"type": "shell",
|
|
"command": "npm run server-watch",
|
|
"isBackground": true,
|
|
"group": "build",
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc-watch"
|
|
]
|
|
}
|
|
]
|
|
} |