mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
36 lines
616 B
JSON
36 lines
616 B
JSON
{
|
|
// 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",
|
|
"isBackground": true,
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"reveal": "never",
|
|
"panel": "dedicated"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc-watch"
|
|
]
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "compile",
|
|
"isBackground": false,
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "never",
|
|
"panel": "dedicated"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
}
|
|
]
|
|
} |