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

17 lines
318 B
JSON
Raw Normal View History

2020-03-18 03:19:05 +01:00
{
2020-03-20 07:52:49 +01:00
// See https://go.microsoft.com/fwlink/?LinkId=733558
2020-03-18 03:19:05 +01:00
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
2020-08-04 23:47:58 +02: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
}
]
2020-03-20 07:52:49 +01:00
}