platform/.vscode/launch.json
2016-12-21 14:06:09 -05:00

15 lines
No EOL
398 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Start Server",
"type": "dart-cli",
"request": "launch",
"cwd": "${workspaceRoot}",
"debugSettings": "${command.debugSettings}",
"program": "${workspaceRoot}/bin/server.dart",
"args": [],
"preLaunchTask": "pub:serve"
}
]
}