chore: add VS Code launch configurations

This commit is contained in:
Andrew 2026-06-17 03:25:20 +07:00
parent 53e35c7263
commit 9cbf705ee5

25
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,25 @@
{
// 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": "update_forge_companion",
"request": "launch",
"type": "dart"
},
{
"name": "update_forge_companion (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "update_forge_companion (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}