23 lines
545 B
JSON
23 lines
545 B
JSON
{
|
|
// Unter https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// finden Sie Informationen zum Format von "tasks.json"
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"script": "build-ts",
|
|
"group": "build",
|
|
"problemMatcher": ["$tsc"],
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "never",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": true,
|
|
"clear": false
|
|
},
|
|
"label": "build"
|
|
}
|
|
]
|
|
}
|