PMU-PIbd-32-Fedorenko-G-Y/.vscode/launch.json

28 lines
813 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": "flutter_app",
"cwd": "flutter_app",
"request": "launch",
"type": "dart"
},
{
"name": "flutter_app (profile mode)",
"cwd": "flutter_app",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "flutter_app (release mode)",
"cwd": "flutter_app",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}