Update scripts for the use in workspace
This commit is contained in:
parent
7e2d7c0234
commit
6b62422903
|
@ -33,8 +33,15 @@
|
|||
"tasks": [
|
||||
{
|
||||
"label": "Build",
|
||||
"type": "npm",
|
||||
"script": "watch",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder:Solution Items}"
|
||||
},
|
||||
"command": "npm",
|
||||
"args": [
|
||||
"run",
|
||||
"watch"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
|
@ -63,8 +70,15 @@
|
|||
},
|
||||
{
|
||||
"label": "Rebuild",
|
||||
"type": "npm",
|
||||
"script": "rebuild",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder:Solution Items}"
|
||||
},
|
||||
"command": "npm",
|
||||
"args": [
|
||||
"run",
|
||||
"rebuild"
|
||||
],
|
||||
"problemMatcher": [],
|
||||
"presentation": {
|
||||
"reveal": "never"
|
||||
|
@ -72,8 +86,15 @@
|
|||
},
|
||||
{
|
||||
"label": "Lint",
|
||||
"type": "npm",
|
||||
"script": "lint-ide",
|
||||
"type": "shell",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder:Solution Items}"
|
||||
},
|
||||
"command": "npm",
|
||||
"args": [
|
||||
"run",
|
||||
"lint-ide"
|
||||
],
|
||||
"problemMatcher": "$eslint-stylish",
|
||||
"presentation": {
|
||||
"reveal": "never"
|
||||
|
|
Loading…
Reference in a new issue