Files
stage-and-suitcase-mih/.vscode/launch.json
2024-11-14 11:46:50 +02:00

31 lines
893 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": "Debug",
"cwd": "Frontend",
"request": "launch",
"type": "dart",
"program": "lib/main_dev.dart"
},
{
"name": "Profile",
"cwd": "Frontend",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"program": "lib/main_dev.dart"
},
{
"name": "Release",
"cwd": "Frontend",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"program": "lib/main_prod.dart"
}
]
}