ismism/.vscode/tasks.json

22 lines
346 B
JSON
Raw Normal View History

2022-11-20 19:01:01 +08:00
{
"version": "2.0.0",
"tasks": [
{
"label": "test",
"type": "shell",
2022-12-05 14:59:02 +08:00
"command": "deno test --allow-all ismism.ts/tst",
2022-11-20 19:01:01 +08:00
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
}
}
]
}