BinghamtonBetterBus-v2/.vscode/launch.json
Levi Lesches cd5491e6ec
Global docker flag (#9)
* Added DISABLE_DOCKER to index.ts

* Added debug mode check to client

* GET_STOPS.json file and server.bat
2025-05-01 21:52:33 -04:00

23 lines
No EOL
620 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",
"args": ["-d", "chrome", "--dart-define-from-file=.env"],
"program": "lib/main.dart",
},
]
}