blflash/.vscode/tasks.json

21 lines
424 B
JSON
Raw Normal View History

2021-01-08 08:58:20 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "cargo watch -x check",
"problemMatcher": "$rustc-watch",
"group": "build",
"label": "watch native",
"isBackground": true
},
{
"type": "shell",
"command": "cargo watch -x 'check --target wasm32-unknown-unknown'",
"problemMatcher": "$rustc-watch",
"group": "build",
"label": "watch wasm",
"isBackground": true
}
]
}