Files
tatlock-ui/.vscode/launch.json
T
Jeroen SchweitzerandClaude Opus 4.5 19f81c8749 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>
2025-12-31 02:03:30 +01:00

41 lines
783 B
JSON

{
"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"
]
}
]
}