Files
universal_ble/.vscode/launch.json
T
2025-12-21 09:46:17 +01:00

51 lines
1.4 KiB
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 release",
"cwd": "example",
"request": "launch",
"type": "dart",
"flutterMode": "release"
},
{
"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"
],
},
{
"name": "device_preview",
"cwd": "example",
"request": "launch",
"type": "dart",
"program": "lib/main_device_preview.dart"
},
],
}