在Visual Studio代码中,启动我正在编写的应用程序的launch.json
文件中,如何添加命令行参数?
答案 0 :(得分:0)
如documentation中所述,您需要使用args
属性。 例如
{
"type": "node",
"request": "launch",
"name": "Debug App",
"program": "${workspaceFolder}/main.js",
"args": ["arg1", "arg2", "arg3"]
}