47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
//
|
|
// El entorno se elige al compilar con --dart-define-from-file. Cada
|
|
// configuración apunta a config/dev.json o config/prod.json. Si falta el
|
|
// archivo, la app corta el arranque (AppEnv.assertConfigured).
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "SOMA (dev)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"args": [
|
|
"--dart-define-from-file=config/dev.json"
|
|
]
|
|
},
|
|
{
|
|
"name": "SOMA (prod)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"args": [
|
|
"--dart-define-from-file=config/prod.json"
|
|
]
|
|
},
|
|
{
|
|
"name": "SOMA (dev · profile)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"flutterMode": "profile",
|
|
"args": [
|
|
"--dart-define-from-file=config/dev.json"
|
|
]
|
|
},
|
|
{
|
|
"name": "SOMA (dev · release)",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"flutterMode": "release",
|
|
"args": [
|
|
"--dart-define-from-file=config/dev.json"
|
|
]
|
|
}
|
|
]
|
|
}
|