aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.vscode/launch.json9
1 files changed, 8 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 78080f33..a334a1da 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -2,11 +2,18 @@
"version": "0.2.0",
"configurations": [
{
- "name": "Launch via NPM",
+ "name": "npm start",
"request": "launch",
"runtimeArgs": ["start"],
"runtimeExecutable": "npm",
"type": "node"
+ },
+ {
+ "name": "npm run build",
+ "request": "launch",
+ "runtimeArgs": ["run", "build"],
+ "runtimeExecutable": "npm",
+ "type": "node"
}
]
}