public-gateway-cacher/.vscode/tasks.json

35 lines
724 B
JSON
Raw Permalink Normal View History

2019-11-29 02:20:50 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"presentation": {
"focus": true,
"panel": "dedicated"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": {
"owner": "typescript",
"source": "ts",
"applyTo": "closedDocuments",
2022-03-11 07:06:35 +00:00
"fileLocation": ["relative", "${cwd}"],
2019-11-29 02:20:50 +00:00
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "Compiled |Failed to compile."
}
}
}
2022-03-11 07:06:35 +00:00
}
2019-11-29 02:20:50 +00:00
]
}