diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2018-11-21 14:22:32 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2018-11-21 14:22:32 +0800 |
commit | 18e1ada299918327eba5920a6c7c28393ffe7804 (patch) | |
tree | 230d6bc0ed8fb31caadf507387c04d495c8b96a0 /.vscode/tasks.json | |
parent | c5393d339bc5a67840158f5ab1c659de632278d3 (diff) | |
download | lua-language-server-18e1ada299918327eba5920a6c7c28393ffe7804.zip |
更新演示图
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 60 |
1 files changed, 3 insertions, 57 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d089ffb3..5efd8048 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,22 +2,8 @@ "version": "2.0.0", "tasks": [ { - "label": "compile", - "dependsOn": [ - { - "type": "npm", - "script": "compile:client" - }, - { - "type": "npm", - "script": "compile:server" - } - ], - "problemMatcher": [] - }, - { "type": "npm", - "script": "compile:client", + "script": "compile", "group": "build", "presentation": { "panel": "dedicated", @@ -29,52 +15,12 @@ }, { "type": "npm", - "script": "compile:server", - "group": "build", - "presentation": { - "panel": "dedicated", - "reveal": "never" - }, - "problemMatcher": [ - "$tsc" - ] - }, - { - "label": "watch", - "dependsOn": [ - { - "type": "npm", - "script": "watch:client" - }, - { - "type": "npm", - "script": "watch:server" - } - ], + "script": "watch", + "isBackground": true, "group": { "kind": "build", "isDefault": true }, - "problemMatcher": [] - }, - { - "type": "npm", - "script": "watch:client", - "isBackground": true, - "group": "build", - "presentation": { - "panel": "dedicated", - "reveal": "never" - }, - "problemMatcher": [ - "$tsc-watch" - ] - }, - { - "type": "npm", - "script": "watch:server", - "isBackground": true, - "group": "build", "presentation": { "panel": "dedicated", "reveal": "never" |