mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
27 lines
597 B
JSON
27 lines
597 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build Boostnote",
|
|
"group": "build",
|
|
"type": "npm",
|
|
"script": "watch",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "always",
|
|
},
|
|
"problemMatcher": {
|
|
"pattern":[
|
|
{
|
|
"regexp": "^([^\\\\s].*)\\\\((\\\\d+,\\\\d+)\\\\):\\\\s*(.*)$",
|
|
"file": 1,
|
|
"location": 2,
|
|
"message": 3
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
} |