updated debug

This commit is contained in:
Mike Kell 2025-07-28 09:14:24 -04:00
parent 70a67186a1
commit ecd216409d
1 changed files with 28 additions and 0 deletions

28
.vscode/launch.json vendored Normal file
View File

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