mirror of
https://github.com/lensapp/lens.git
synced 2024-12-01 10:37:09 +03:00
18 lines
468 B
JSON
18 lines
468 B
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"type": "shell",
|
||
|
"group": "build",
|
||
|
"command": "yarn",
|
||
|
"args": [
|
||
|
"debug-build"
|
||
|
],
|
||
|
"problemMatcher": [],
|
||
|
"label": "compile-dev",
|
||
|
"detail": "Compiles main and extension types"
|
||
|
}
|
||
|
]
|
||
|
}
|