Files
MrbWebLibre/.vscode/launch.json
T
2025-05-05 14:35:07 +02:00

60 lines
1.6 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": "app",
"cwd": "app",
"request": "launch",
"type": "dart",
"args": [
"--device-user",
"0"
]
},
{
"name": "app (profile mode)",
"cwd": "app",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"args": [
"--device-user",
"0"
]
},
{
"name": "app (release mode)",
"cwd": "app",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"args": [
"--device-user",
"0"
]
},
{
"name": "flutter_mozilla_components",
"cwd": "packages/flutter_mozilla_components/example",
"request": "launch",
"type": "dart",
"args": [
"--device-user",
"0"
]
},
{
"name": "simple_intent_receiver",
"cwd": "packages/simple_intent_receiver/example",
"request": "launch",
"type": "dart",
"args": [
"--device-user",
"0"
]
},
]
}