Files
excel-exporter/.vscode/launch.json
2020-11-02 21:48:01 +08:00

18 lines
331 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "启动程序",
"skipFiles": [
"<node_internals>/**"
],
"cwd": "D:/work/repositories/zombie/config/新配表",
"program": "${workspaceFolder}/dist/binary.js",
"args": [
"./excel-exporter.json"
]
}
]
}