16 lines
290 B
JSON
16 lines
290 B
JSON
{
|
|
// launch.json
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Util Example",
|
|
"type": "dart",
|
|
"request": "launch",
|
|
"program": "lib/example/lib/main.dart",
|
|
"args": [
|
|
"-d",
|
|
"chrome"
|
|
]
|
|
}
|
|
]
|
|
} |