Launch options

This commit is contained in:
Andrew 2023-04-28 20:01:34 +07:00
parent 64a435ccb2
commit e85534201b

25
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,25 @@
{
// 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": "tuuli_app",
"request": "launch",
"type": "dart"
},
{
"name": "tuuli_app (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "tuuli_app (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}