1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-13 13:48:24 +00:00

Added build preLaunchTask for debug configuration

This commit is contained in:
Deilan
2017-06-06 01:42:59 +03:00
parent abc36e167e
commit 61084c4650
2 changed files with 17 additions and 2 deletions

15
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
// 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,
"tasks": [
{
"taskName": "build",
"args": ["run", "build"]
}
]
}