protevus/.vscode/launch.json

19 lines
386 B
JSON
Raw Normal View History

2016-12-21 19:06:09 +00:00
{
2018-12-31 17:27:04 +00:00
"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"
}
]
}