platform/sample-project/.vscode/launch.json

19 lines
480 B
JSON
Raw Normal View History

2018-12-31 16:14:18 +00:00
{
"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
}
]
}