kill-the-newsletter/.vscode/tasks.json

16 lines
318 B
JSON
Raw Normal View History

2020-03-18 03:19:05 +01:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
2020-03-18 06:01:23 +01:00
"script": "develop",
2020-03-18 03:19:05 +01:00
"group": {
"kind": "build",
"isDefault": true
2020-03-18 05:50:04 +01:00
},
"problemMatcher": []
2020-03-18 03:19:05 +01:00
}
]
}