Files
PicList/.vscode/tasks.json
2026-06-11 02:22:23 -07:00

98 lines
2.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "yarn: install",
"type": "shell",
"command": "yarn",
"problemMatcher": [],
"presentation": {
"panel": "dedicated"
}
},
{
"label": "yarn: dev",
"type": "shell",
"command": "yarn",
"args": ["dev"],
"problemMatcher": [],
"presentation": {
"panel": "dedicated",
"reveal": "always"
}
},
{
"label": "yarn: build",
"type": "shell",
"command": "yarn",
"args": ["build"],
"group": "build",
"problemMatcher": [],
"presentation": {
"panel": "dedicated"
}
},
{
"label": "yarn: test",
"type": "shell",
"command": "yarn",
"args": ["test", "--run"],
"group": "test",
"problemMatcher": [],
"presentation": {
"panel": "dedicated"
}
},
{
"label": "yarn: lint",
"type": "shell",
"command": "yarn",
"args": ["lint"],
"problemMatcher": "$eslint-stylish",
"presentation": {
"panel": "dedicated"
}
},
{
"label": "yarn: lint:fix",
"type": "shell",
"command": "yarn",
"args": ["lint:fix"],
"problemMatcher": "$eslint-stylish",
"presentation": {
"panel": "dedicated"
}
},
{
"label": "yarn: lint:style",
"type": "shell",
"command": "yarn",
"args": ["lint:style"],
"problemMatcher": [],
"presentation": {
"panel": "dedicated"
}
},
{
"label": "yarn: lint:dpdm",
"type": "shell",
"command": "yarn",
"args": ["lint:dpdm"],
"problemMatcher": [],
"presentation": {
"panel": "dedicated"
}
},
{
"label": "yarn: lint:dpdm:renderer",
"type": "shell",
"command": "yarn",
"args": ["lint:dpdm:renderer"],
"problemMatcher": [],
"presentation": {
"panel": "dedicated"
}
}
]
}