Update launch.json

This commit is contained in:
Tobe Osakwe 2018-12-31 12:27:04 -05:00 committed by GitHub
parent 8f491dd63c
commit 075ab0a322
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
.vscode/launch.json vendored
View file

@ -6,14 +6,13 @@
"type": "dart", "type": "dart",
"request": "launch", "request": "launch",
"program": "${workspaceRoot}/bin/dev.dart", "program": "${workspaceRoot}/bin/dev.dart",
"checkedMode": true "vmAdditionalArgs": ["--observe"]
}, },
{ {
"name": "Production Server", "name": "Production Server",
"type": "dart", "type": "dart",
"request": "launch", "request": "launch",
"program": "${workspaceRoot}/bin/prod.dart", "program": "${workspaceRoot}/bin/prod.dart"
"checkedMode": true
} }
] ]
} }