diff options
author | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2022-01-10 12:05:47 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-10 12:05:47 +0530 |
commit | 229f45e73dc60df6522920d4e9bb1fc9e2cb728b (patch) | |
tree | 8245b024afd2dded659c9ceeed74f0c1c570346f /.vscode | |
parent | Merge branch 'main' of github.com:marcthe12/website (diff) | |
parent | Merge branch 'main' into devel (diff) | |
download | sudomsg-229f45e73dc60df6522920d4e9bb1fc9e2cb728b.tar sudomsg-229f45e73dc60df6522920d4e9bb1fc9e2cb728b.tar.gz sudomsg-229f45e73dc60df6522920d4e9bb1fc9e2cb728b.tar.bz2 sudomsg-229f45e73dc60df6522920d4e9bb1fc9e2cb728b.tar.lz sudomsg-229f45e73dc60df6522920d4e9bb1fc9e2cb728b.tar.xz sudomsg-229f45e73dc60df6522920d4e9bb1fc9e2cb728b.tar.zst sudomsg-229f45e73dc60df6522920d4e9bb1fc9e2cb728b.zip |
Merge pull request #1 from marcthe12/devel
Devel
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/tasks.json | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..4ce44cd --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "build", + "group": { + "kind": "build", + "isDefault": true + }, + "label": "Build Development", + "options": { + "env": { + "NODE_ENV": "development" + } + } + }, + { + "type": "npm", + "script": "build", + "group": "build", + "label": "Build Production", + "options": { + "env": { + "NODE_ENV": "production" + } + } + }, + { + "type": "npm", + "script": "start", + "label": "Serve", + "options": { + "env": { + "NODE_ENV": "development" + } + }, + "problemMatcher": [] + } + ] +}
\ No newline at end of file |