adaptivecards-templates/.vscode/tasks.json

43 строки
1.1 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "func",
"command": "host start",
"problemMatcher": "$func-watch",
"isBackground": true,
"dependsOn": "npm build",
"options": {
"cwd": "${workspaceFolder}/src"
}
},
{
"type": "shell",
"label": "npm build",
"command": "npm run build",
"dependsOn": "npm install",
"problemMatcher": "$tsc",
"options": {
"cwd": "${workspaceFolder}/src"
}
},
{
"type": "shell",
"label": "npm install",
"command": "npm install",
"options": {
"cwd": "${workspaceFolder}/src"
}
},
{
"type": "shell",
"label": "npm prune",
"command": "npm prune --production",
"dependsOn": "npm build",
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}/src"
}
}
]
}