Vaani/.vscode/launch.json
2025-03-25 22:01:16 +05:30

32 lines
791 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": "vaani",
"request": "launch",
"program": "lib/main.dart",
"type": "dart"
},
{
"name": "vaani (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "vaani (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
},
{
"name": "debug debug.dart",
"request": "launch",
"type": "dart",
"program": "${workspaceFolder}/shelfsdk/playground/debug.dart"
}
]
}