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",
"configurations": [
{
"name": "Development Server",
"type": "dart",
"request": "launch",
"program": "${workspaceRoot}/bin/dev.dart",
"checkedMode": true
},
{
"name": "Production Server",
"type": "dart",
"request": "launch",
"program": "${workspaceRoot}/bin/prod.dart",
"checkedMode": true
}
]
}
"version": "0.2.0",
"configurations": [
{
"name": "Development Server",
"type": "dart",
"request": "launch",
"program": "${workspaceRoot}/bin/dev.dart",
"vmAdditionalArgs": ["--observe"]
},
{
"name": "Production Server",
"type": "dart",
"request": "launch",
"program": "${workspaceRoot}/bin/prod.dart"
}
]
}