lemmur-app-android/.vscode/tasks.json

22 lines
321 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"type": "flutter",
"command": "flutter",
"args": [
"pub",
"run",
"build_runner",
"build",
"--delete-conflicting-outputs"
],
"problemMatcher": [
"$dart-build_runner"
],
"group": "build",
"label": "flutter: build_runner build"
}
]
}