From 9cbf705ee58ff5dfe84a6f220bc5a94a075ad286 Mon Sep 17 00:00:00 2001 From: Andrew nuark G Date: Wed, 17 Jun 2026 03:25:20 +0700 Subject: [PATCH] chore: add VS Code launch configurations --- .vscode/launch.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d09fe32 --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] +}