21 lines
444 B
JSON
21 lines
444 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Development Server",
|
|
"type": "dart",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/bin/dev.dart",
|
|
"vmAdditionalArgs": ["--observe"]
|
|
},
|
|
{
|
|
"name": "Production Server",
|
|
"type": "dart",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/bin/prod.dart",
|
|
"env": {
|
|
"ANGEL_ENV": "production"
|
|
}
|
|
}
|
|
]
|
|
}
|