traccar-web/.vscode/launch.json
2024-05-25 15:21:43 -07:00

20 lines
370 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "npm start",
"request": "launch",
"runtimeArgs": ["start"],
"runtimeExecutable": "npm",
"type": "node"
},
{
"name": "npm run build",
"request": "launch",
"runtimeArgs": ["run", "build"],
"runtimeExecutable": "npm",
"type": "node"
}
]
}