You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.3 KiB
77 lines
2.3 KiB
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Extension - Watch all",
|
|
"group": "build",
|
|
"dependsOrder": "sequence",
|
|
"dependsOn": [
|
|
"Extension Common - Watch",
|
|
"Extension - Watch non-Common"
|
|
],
|
|
"problemMatcher": [],
|
|
"isBackground": true,
|
|
"runOptions": {
|
|
"runOn": "folderOpen"
|
|
}
|
|
},
|
|
{
|
|
"label": "Extension - Watch non-Common",
|
|
"group": "build",
|
|
"dependsOrder": "parallel",
|
|
"dependsOn": [
|
|
"Extension - Watch",
|
|
"Extension WebView - Watch"
|
|
],
|
|
"problemMatcher": [],
|
|
"isBackground": true,
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "Extension Common - Watch",
|
|
"command": "yarn watch",
|
|
"options": {
|
|
"cwd": "./common"
|
|
},
|
|
"group": "build",
|
|
"problemMatcher": {
|
|
"base": "$tsc-watch",
|
|
"source": "tsc-watch",
|
|
"owner": "tsc-watch",
|
|
"applyTo": "allDocuments"
|
|
},
|
|
"isBackground": true
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"label": "Extension - Watch",
|
|
"script": "watch",
|
|
"group": "build",
|
|
"problemMatcher": {
|
|
"base": "$ts-webpack-watch",
|
|
"source": "webpack-ts-loader",
|
|
"owner": "webpack-ts-loader",
|
|
"applyTo": "allDocuments"
|
|
},
|
|
"isBackground": true
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "Extension WebView - Watch",
|
|
"command": "yarn start",
|
|
"options": {
|
|
"cwd": "./webview"
|
|
},
|
|
"group": "build",
|
|
"problemMatcher": {
|
|
"base": "$ts-webpack-watch",
|
|
"source": "webpack-ts-loader",
|
|
"owner": "webpack-ts-loader",
|
|
"applyTo": "allDocuments"
|
|
},
|
|
"isBackground": true
|
|
}
|
|
]
|
|
} |