Skip to content

Commit

Permalink
Add launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
petr-jilek-deploy committed Jan 12, 2024
1 parent 95bcb1e commit 7a4006f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
melos_my_project.iml
.vscode/*
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/settings.json

.packages
Expand Down
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
// 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": "storybook",
"cwd": "storybook",
"request": "launch",
"type": "dart",
"program": "lib/main.dart"
},
{
"name": "storybook (profile)",
"cwd": "storybook",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
}
]
}

0 comments on commit 7a4006f

Please sign in to comment.