1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 16:17:37 +00:00

Bump tasks.json version from 0.10 to 2.00. Add default build task.

This commit is contained in:
Fernando Poumián
2017-07-23 16:58:05 -06:00
parent 05892f8572
commit 9c7c9631cb

15
.vscode/tasks.json vendored
View File

@@ -1,15 +1,16 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"version": "2.0.0",
"tasks": [
{
"taskName": "build",
"args": ["run", "build"]
"taskName": "Run Build",
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}