aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json41
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