haveno-app/.vscode/launch.json

25 lines
696 B
JSON
Raw Normal View History

2024-07-14 15:34:24 +00:00
{
// 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": [
{
2024-09-20 17:16:54 +00:00
"name": "haveno",
2024-07-14 15:34:24 +00:00
"request": "launch",
"type": "dart"
},
{
2024-09-20 17:16:54 +00:00
"name": "haveno (profile mode)",
2024-07-14 15:34:24 +00:00
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
2024-09-20 17:16:54 +00:00
"name": "haveno (release mode)",
2024-07-14 15:34:24 +00:00
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}