From 19f81c8749958b30737c3786d1c8a39133e74916 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Wed, 31 Dec 2025 02:03:30 +0100 Subject: [PATCH] chore: add VS Code launch configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update .gitignore to track .vscode/launch.json while ignoring other VS Code settings. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitignore | 3 ++- .vscode/launch.json | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 6ce245c..9897bb4 100644 --- a/.gitignore +++ b/.gitignore @@ -25,7 +25,8 @@ lib/**/*.g.dart *.iml *.ipr *.iws -.vscode/ +.vscode/* +!.vscode/launch.json *.swp *.swo *~ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a822a05 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,40 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Flutter Web (Chrome)", + "type": "dart", + "request": "launch", + "program": "lib/main.dart", + "args": [ + "-d", + "chrome", + "--web-port=8080" + ] + }, + { + "name": "Flutter Web (Chrome) - Profile", + "type": "dart", + "request": "launch", + "program": "lib/main.dart", + "flutterMode": "profile", + "args": [ + "-d", + "chrome", + "--web-port=8080" + ] + }, + { + "name": "Flutter Web (Chrome) - Release", + "type": "dart", + "request": "launch", + "program": "lib/main.dart", + "flutterMode": "release", + "args": [ + "-d", + "chrome", + "--web-port=8080" + ] + } + ] +}