traccar-web/.vscode/launch.json

20 lines
370 B
JSON
Raw Permalink Normal View History

2018-09-03 17:17:58 +08:00
{
"version": "0.2.0",
"configurations": [
{
2024-05-26 06:21:43 +08:00
"name": "npm start",
2018-09-03 17:17:58 +08:00
"request": "launch",
2024-05-26 06:17:51 +08:00
"runtimeArgs": ["start"],
"runtimeExecutable": "npm",
"type": "node"
2024-05-26 06:21:43 +08:00
},
{
"name": "npm run build",
"request": "launch",
"runtimeArgs": ["run", "build"],
"runtimeExecutable": "npm",
"type": "node"
2018-09-03 17:17:58 +08:00
}
]
2020-03-19 14:03:31 +08:00
}