Files
universal_ble/.vscode/launch.json
T
Rohit Sangwan 28b0bc6b7c Add platform specific options in start scan (#65)
* Add platform specific options in start scan

* Add code level doc and ChangeLog

* Minor improvements
2024-07-21 17:05:29 +02:00

37 lines
1001 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": "example",
"cwd": "example",
"request": "launch",
"type": "dart"
},
{
"name": "example_mock",
"cwd": "example",
"request": "launch",
"type": "dart",
"args": [
"--dart-define",
"MOCK=true",
]
},
{
"name": "example_web",
"cwd": "example",
"request": "launch",
"type": "dart",
"program": "lib/main.dart",
"args": [
"-d",
"web-server",
"--web-hostname=127.0.0.1",
"--web-port=8080"
],
},
],
}