platform/.vscode/launch.json
2018-06-05 19:51:20 -04:00

19 lines
No EOL
480 B
JSON

{
"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
}
]
}