From ecd216409d0b2eba6ad0f5f7390a8770687ac0a7 Mon Sep 17 00:00:00 2001 From: Mike Kell Date: Mon, 28 Jul 2025 09:14:24 -0400 Subject: [PATCH] updated debug --- .vscode/launch.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..3fc72cd --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + // 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": "complycore_flutter", + "cwd": "frontend\\complycore_flutter", + "request": "launch", + "type": "dart" + }, + { + "name": "complycore_flutter (profile mode)", + "cwd": "frontend\\complycore_flutter", + "request": "launch", + "type": "dart", + "flutterMode": "profile" + }, + { + "name": "complycore_flutter (release mode)", + "cwd": "frontend\\complycore_flutter", + "request": "launch", + "type": "dart", + "flutterMode": "release" + } + ] +} \ No newline at end of file