silverbullet/.vscode/tasks.json

17 lines
284 B
JSON
Raw Normal View History

2022-10-06 21:14:21 +08:00
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "test",
"problemMatcher": [],
"label": "npm: test",
"detail": "jest packages/*/{dist,build}/test",
"group": {
"kind": "test",
"isDefault": true
}
}
]
}