mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-06 02:59:28 +00:00
37 lines
948 B
JSON
37 lines
948 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"icon": { "id": "eye-watch", "color": "terminal.ansiYellow" },
|
|
"label": "build_runner watch",
|
|
"type": "shell",
|
|
"command": "dart run build_runner watch --delete-conflicting-outputs",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"detail": "Running build_runner watch for code generation",
|
|
"presentation": {
|
|
"revealProblems": "onProblem",
|
|
"reveal": "silent",
|
|
"panel": "dedicated"
|
|
},
|
|
"runOptions": {
|
|
"instanceLimit": 1,
|
|
"runOn": "folderOpen",
|
|
"reevaluateOnRerun": true
|
|
},
|
|
"problemMatcher": {
|
|
"owner": "dart",
|
|
"fileLocation": ["relative", "${workspaceFolder}"],
|
|
"pattern": {
|
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(.*)$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"message": 4
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|