vscode调试npm命令
2022-01-28 本文已影响0人
小俊的世界
起因
项目的开发中需要使用到大量的npm的命令,希望是能够进行方便的调试。
命令
{
"scripts": {
"create": "node ./createFile.js",
},
...
}
设置方式
// 利用runtimeExcutable
{
"name":"npm run create",
"type":"node",
"request":"launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "create"]
}
// 利用command
{
"command": "npm run create",
"name": "Run npm create",
"request": "launch",
"type": "node-terminal"
}