ismism/ismism.ts/.vscode/tasks.json

19 lines
253 B
JSON
Raw Normal View History

2023-04-18 11:20:03 +08:00
{
"version": "2.0.0",
"tasks": [
{
"type": "deno",
"command": "test",
2023-05-22 14:55:06 +08:00
"args": ["--allow-net"],
2023-04-18 11:20:03 +08:00
"problemMatcher": [
"$deno-test"
],
"group": "test",
2023-04-18 12:33:41 +08:00
"label": "deno: test",
"presentation": {
"clear": true
}
2023-04-18 11:20:03 +08:00
}
]
}