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

35
.vscode/launch.json vendored
View file

@ -1,19 +1,18 @@
{ {
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "Development Server", "name": "Development Server",
"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 }
} ]
] }
}