1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-13 19:28:34 +00:00
Files
TypeScript-Node-Starter/.vscode/tasks.json
2018-01-03 17:25:31 -08:00

20 lines
457 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "npm",
"script": "start",
"problemMatcher": []
}
]
}