oto/.vscode/launch.json
leedongmyung[desktop] 81e7f81d9e 파일 정리
2023-11-04 13:29:24 +09:00

29 lines
No EOL
821 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_linux",
"request": "launch",
"type": "dart",
"program": "./bin/main.dart",
"args": ["stop"]
},
{
"name": "oto_mac",
"request": "launch",
"type": "dart",
"program": "./bin/main.dart",
"args": ["uninstall"]
},
{
"name": "oto_win",
"request": "launch",
"type": "dart",
"program": "./bin/main.dart",
"args": ["uninstall"]
}
]
}