Files
stage-and-suitcase-mih/.vscode/launch.json

42 lines
1.1 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": "Debug",
"cwd": "mih_ui",
"request": "launch",
"type": "dart",
"program": "lib/main_dev.dart"
},
{
"name": "Debug (web)",
"cwd": "mih_ui",
"request": "launch",
"type": "dart",
"program": "lib/main_dev.dart",
"args": [
"--web-port",
"1995"
]
},
{
"name": "Profile",
"cwd": "mih_ui",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"program": "lib/main_dev.dart"
},
{
"name": "Release",
"cwd": "mih_ui",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"program": "lib/main_prod.dart"
}
]
}