aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2024-05-25 15:21:43 -0700
committerAnton Tananaev <anton@traccar.org>2024-05-25 15:21:43 -0700
commit13490c2e56e663a2d5d830e427f65004cb363a95 (patch)
treeb0e5b7f4842f0f7e8c33dcc165cd723df812030b /.vscode
parente6e4bc5d135fbdfcb071c533e4ac31574b8f8ce8 (diff)
downloadtrackermap-web-13490c2e56e663a2d5d830e427f65004cb363a95.tar.gz
trackermap-web-13490c2e56e663a2d5d830e427f65004cb363a95.tar.bz2
trackermap-web-13490c2e56e663a2d5d830e427f65004cb363a95.zip
Add build configuration
Diffstat (limited to '.vscode')
-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"
}
]
}