platform/.vscode/launch.json

23 lines
667 B
JSON
Raw Normal View History

2016-12-21 19:06:09 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Start Server",
"type": "dart-cli",
"request": "launch",
"cwd": "${workspaceRoot}",
"debugSettings": "${command.debugSettings}",
"program": "${workspaceRoot}/bin/server.dart",
2016-12-21 19:40:05 +00:00
"args": []
2016-12-24 18:17:32 +00:00
},
{
"name": "Start Multiserver",
"type": "dart-cli",
"request": "launch",
"cwd": "${workspaceRoot}",
"debugSettings": "${command.debugSettings}",
"program": "${workspaceRoot}/bin/multi_server.dart",
"args": []
2016-12-21 19:06:09 +00:00
}
]
}