mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-06 11:54:44 -06:00
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "gulp",
|
|
"label": "gulp: local",
|
|
"task": "local",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"type": "gulp",
|
|
"label": "gulp: tsc",
|
|
"task": "tsc",
|
|
"group": "build",
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"type": "gulp",
|
|
"label": "gulp: tests",
|
|
"task": "tests",
|
|
"group": "build",
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"type": "gulp",
|
|
"task": "services",
|
|
"label": "gulp: services",
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
],
|
|
}
|
|
]
|
|
} |