platform/.vscode/launch.json

19 lines
480 B
JSON
Raw Normal View History

2016-12-21 19:06:09 +00:00
{
"version": "0.2.0",
"configurations": [
{
2017-10-19 21:54:19 +00:00
"name": "Development Server",
2018-06-05 23:51:20 +00:00
"type": "dart",
2016-12-21 19:06:09 +00:00
"request": "launch",
2017-10-19 21:54:19 +00:00
"program": "${workspaceRoot}/bin/dev.dart",
2017-06-10 15:35:36 +00:00
"checkedMode": true
2016-12-24 18:17:32 +00:00
},
{
2017-10-19 21:54:19 +00:00
"name": "Production Server",
2018-06-05 23:51:20 +00:00
"type": "dart",
2017-06-10 15:35:36 +00:00
"request": "launch",
2017-10-19 21:54:19 +00:00
"program": "${workspaceRoot}/bin/prod.dart",
2017-06-10 15:35:36 +00:00
"checkedMode": true
2016-12-21 19:06:09 +00:00
}
]
}