26 lines
480 B
JSON
26 lines
480 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Development",
|
|
"type": "shell",
|
|
"command": "yarn dev:example",
|
|
"isBackground": true,
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
},
|
|
},
|
|
{
|
|
"label": "Build",
|
|
"type": "shell",
|
|
"command": "yarn build:example",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
}
|