diff options
Diffstat (limited to '.vscode/tasks.json')
| -rw-r--r-- | .vscode/tasks.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..df5f984 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,24 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "command": "./run_server.sh", + "label": "./run_server.sh", + "detail": "webpack --mode=production", + "problemMatcher": [] + }, + { + "type": "npm", + "script": "build_release", + "group": "build", + "problemMatcher": [], + "label": "npm: build_release", + "detail": "webpack --mode=production" + } + ] +}
\ No newline at end of file |
