17 lines
365 B
JSON
Raw Permalink Normal View History

2024-03-09 14:29:48 +01:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "make",
"type": "shell",
"command": "dart run build_runner build --delete-conflicting-outputs",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}