57 lines
1.8 KiB
JSON
57 lines
1.8 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
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch development/debug",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"program": "lib/main_development.dart",
|
|
"args": [
|
|
"--dart-define-from-file=config.dev.json",
|
|
"--target",
|
|
"lib/main_development.dart"
|
|
],
|
|
"flutterMode": "debug"
|
|
},
|
|
{
|
|
"name": "Launch staging/debug",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"program": "lib/main_staging.dart",
|
|
"args": [
|
|
"--dart-define-from-file=config.staging.json",
|
|
"--target",
|
|
"lib/main_staging.dart"
|
|
],
|
|
"flutterMode": "debug"
|
|
},
|
|
{
|
|
"name": "Launch production/debug",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"program": "lib/main_produdction.dart",
|
|
"args": [
|
|
"--dart-define-from-file=config.prod.json",
|
|
"--target",
|
|
"lib/main_production.dart"
|
|
],
|
|
"flutterMode": "debug"
|
|
},
|
|
{
|
|
"name": "Launch production/release",
|
|
"request": "launch",
|
|
"type": "dart",
|
|
"program": "lib/main_produdction.dart",
|
|
"args": [
|
|
"--dart-define-from-file=config.prod.json",
|
|
"--target",
|
|
"lib/main_production.dart"
|
|
],
|
|
"flutterMode": "release"
|
|
},
|
|
]
|
|
}
|