Files
fl-query/.vscode/launch.json
T
Kingkor Roy Tirtho 64c852fddc Initial Support
2022-05-27 12:51:13 +06:00

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