vscode-notebook-renderers/.vscode/tasks.json

34 строки
851 B
JSON
Исходник Постоянная ссылка Обычный вид История

2020-06-05 00:47:23 +03:00
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
2020-06-09 20:35:39 +03:00
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"label": "Build (dev)",
"script": "dev",
2020-06-09 20:35:39 +03:00
"isBackground": true,
"problemMatcher": [
"$tsc-watch",
"$ts-checker-webpack-watch"
],
2020-06-09 20:35:39 +03:00
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
2020-06-09 20:35:39 +03:00
},
{
"type": "npm",
"label": "Build (release)",
"script": "vscode:prepublish",
"problemMatcher": [
"$ts-checker-webpack"
],
"group": "build"
2020-06-09 20:35:39 +03:00
}
]
2020-06-05 00:47:23 +03:00
}