oto/.vscode/launch.json
2023-10-29 18:46:58 +09:00

29 lines
No EOL
842 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "oto_cli_linux",
"request": "launch",
"type": "dart",
"program": "./bin/oto_cli.dart",
"args": ["stop"]
},
{
"name": "oto_cli_mac",
"request": "launch",
"type": "dart",
"program": "./bin/oto_cli.dart",
"args": ["uninstall"]
},
{
"name": "oto_cli_win",
"request": "launch",
"type": "dart",
"program": "./bin/oto_cli.dart",
"args": ["uninstall"]
}
]
}