mucke/.vscode/launch.json
2023-08-30 22:47:10 -04:00

63 lines
No EOL
1.5 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": "Debug",
"request": "launch",
"type": "dart",
"cwd": "./src/",
"args": [
"--flavor",
"dev",
],
},
{
"name": "Test",
"type": "dart",
"request": "launch",
"cwd": "./src/",
"program": "./test/",
"args": [
"--flavor",
"dev",
"--coverage",
],
},
{
"name": "Profile",
"type": "dart",
"request": "launch",
"cwd": "./src/",
"flutterMode": "profile",
"args": [
"--flavor",
"dev",
],
},
{
"name": "Release",
"type": "dart",
"request": "launch",
"cwd": "./src/",
"flutterMode": "release",
"args": [
"--flavor",
"dev",
],
},
{
"name": "PRODUCTION",
"type": "dart",
"request": "launch",
"cwd": "./src/",
"flutterMode": "release",
"args": [
"--flavor",
"prod",
],
},
]
}