Skip to content

Commit

Permalink
feat(tool): add vscode launch config
Browse files Browse the repository at this point in the history
  • Loading branch information
Leptopoda committed Jul 31, 2023
1 parent 23290b7 commit af055ba
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
// 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": "app",
"cwd": "packages/app",
"request": "launch",
"type": "dart"
},
{
"name": "app (profile mode)",
"cwd": "packages/app",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "app (release mode)",
"cwd": "packages/app",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}

0 comments on commit af055ba

Please sign in to comment.