BinghamtonBetterBus-v2/.vscode/launch.json
2025-05-05 02:52:19 -04:00

24 lines
No EOL
632 B
JSON

{
// 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": "client (windows)",
"cwd": "src\\client",
"request": "launch",
"type": "dart",
"args": ["-d", "windows"]
},
{
"name": "client (web)",
"cwd": "src\\client",
"request": "launch",
"type": "dart",
"deviceId": "chrome",
"args": ["--dart-define-from-file=.env"],
"program": "lib/main.dart",
},
]
}