TypeScript/.vscode/tasks.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 строки
1.7 KiB
JSON
Исходник Постоянная ссылка Обычный вид История

{
2017-11-22 06:47:13 +03:00
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
2015-05-19 20:56:46 +03:00
"tasks": [
{
// Kept for backwards compat for old launch.json files so it's
// less annoying if moving up to the new build or going back to
// the old build.
//
// This is first because the acutal "npm: build:tests" task
// below has the same script value, and VS Code ignores labels
// and deduplicates them.
// https://github.com/microsoft/vscode/issues/93001
"label": "gulp: tests",
"type": "npm",
"script": "build:tests:notypecheck",
"group": "build",
"hide": true,
"problemMatcher": [
"$tsc"
]
2017-08-05 02:10:33 +03:00
},
{
"label": "tsc: watch ./src",
"type": "shell",
"command": "node",
"args": ["${workspaceFolder}/node_modules/typescript/lib/tsc.js", "--build", "${workspaceFolder}/src", "--watch"],
2017-11-22 06:47:13 +03:00
"group": "build",
"isBackground": true,
"problemMatcher": [
"$tsc-watch"
]
2017-11-22 06:47:13 +03:00
},
{
"label": "npm: build:compiler",
"type": "npm",
"script": "build:compiler",
2017-11-22 06:47:13 +03:00
"group": "build",
"problemMatcher": [
"$tsc"
]
},
{
"label": "npm: build:tests",
"type": "npm",
"script": "build:tests:notypecheck",
"group": "build",
"problemMatcher": [
"$tsc"
]
2023-09-02 01:26:01 +03:00
}
2015-05-19 20:56:46 +03:00
]
}