1
1
mirror of https://github.com/kahole/edamagit.git synced 2024-09-11 07:15:31 +03:00
edamagit/.vscode/tasks.json

33 lines
620 B
JSON
Raw Permalink Normal View History

2019-12-04 20:23:06 +03:00
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
2020-05-06 20:37:34 +03:00
"problemMatcher": "$ts-webpack-watch",
2019-12-04 20:23:06 +03:00
"isBackground": true,
2020-05-08 22:44:44 +03:00
"presentation": {
"echo": true,
"reveal": "never",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
2019-12-04 20:23:06 +03:00
"group": {
"kind": "build",
"isDefault": true
}
2020-05-06 20:37:34 +03:00
},
{
"type": "npm",
"script": "test-compile",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"group": "build"
2019-12-04 20:23:06 +03:00
}
]
}