在Visual Studio Code中,如何在launch.json中传递参数

时间:2019-09-11 12:55:45

标签: node.js visual-studio-code command-line-arguments

在Visual Studio代码中,启动我正在编写的应用程序的launch.json文件中,如何添加命令行参数?

1 个答案:

答案 0 :(得分:0)

documentation中所述,您需要使用args属性。 例如

{
    "type": "node",
    "request": "launch",
    "name": "Debug App",
    "program": "${workspaceFolder}/main.js",
    "args": ["arg1", "arg2", "arg3"]
}