diff options
author | Anton Tananaev <anton@traccar.org> | 2024-05-25 15:21:43 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2024-05-25 15:21:43 -0700 |
commit | 13490c2e56e663a2d5d830e427f65004cb363a95 (patch) | |
tree | b0e5b7f4842f0f7e8c33dcc165cd723df812030b | |
parent | e6e4bc5d135fbdfcb071c533e4ac31574b8f8ce8 (diff) | |
download | trackermap-web-13490c2e56e663a2d5d830e427f65004cb363a95.tar.gz trackermap-web-13490c2e56e663a2d5d830e427f65004cb363a95.tar.bz2 trackermap-web-13490c2e56e663a2d5d830e427f65004cb363a95.zip |
Add build configuration
-rw-r--r-- | .vscode/launch.json | 9 |
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" } ] } |