28 lines
726 B
JSON
28 lines
726 B
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "Doric Build",
|
||
|
"type": "shell",
|
||
|
"command": "npm run build",
|
||
|
"group": "build",
|
||
|
"problemMatcher": []
|
||
|
},
|
||
|
{
|
||
|
"label": "Doric Clean",
|
||
|
"type": "shell",
|
||
|
"command": "npm run clean",
|
||
|
"group": "build",
|
||
|
"problemMatcher": []
|
||
|
},
|
||
|
{
|
||
|
"label": "Doric Dev",
|
||
|
"type": "shell",
|
||
|
"command": "npm run dev",
|
||
|
"group": "build",
|
||
|
"problemMatcher": []
|
||
|
}
|
||
|
]
|
||
|
}
|