kannon-client/.vscode/launch.json

18 lines
450 B
JSON
Raw Permalink Normal View History

2022-04-14 14:25:48 +02:00
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
2022-04-21 15:35:12 +02:00
"runtimeVersion": "18",
2022-04-14 14:25:48 +02:00
"request": "launch",
"name": "kannon-client",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/kannon-client.js",
"args": [
"${workspaceFolder}/example_config.json"
]
}
]
}