From 13490c2e56e663a2d5d830e427f65004cb363a95 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 25 May 2024 15:21:43 -0700 Subject: [PATCH] Add build configuration --- .vscode/launch.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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" } ] }