From 7a4006fe55e4e33cfed39ea974d9047acca5f362 Mon Sep 17 00:00:00 2001 From: Petr Jilek Date: Fri, 12 Jan 2024 13:40:23 +0100 Subject: [PATCH] Add launch.json --- .gitignore | 1 + .vscode/launch.json | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 610202d..71a6a54 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ melos_my_project.iml .vscode/* !.vscode/tasks.json +!.vscode/launch.json !.vscode/settings.json .packages diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..579d1a7 --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] +}