chore: add VS Code launch configuration

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 <noreply@anthropic.com>
This commit is contained in:
Jeroen Schweitzer
2025-12-31 02:03:30 +01:00
co-authored by Claude Opus 4.5
parent 3b89ed8c18
commit 19f81c8749
2 changed files with 42 additions and 1 deletions
+2 -1
View File
@@ -25,7 +25,8 @@ lib/**/*.g.dart
*.iml
*.ipr
*.iws
.vscode/
.vscode/*
!.vscode/launch.json
*.swp
*.swo
*~
+40
View File
@@ -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"
]
}
]
}