VSCode - Launch.json指定参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VSCode - Launch.json指定参数相关的知识,希望对你有一定的参考价值。
我正在使用dotenv包将环境变量注入我的操作系统,我可以通过调用以下内容来指定:
node -r dotenv/config dist/app.js
如何从launch.json运行相同的命令?目前我有以下,但它没有加载dotenv包
"program": "${workspaceFolder}\dist\app.js",
"args": [
"-r dotenv/config"
],
答案
尝试使用它作为键之一而不是args
:
"runtimeArgs": [
"-r",
"dotenv/config"
]
以上是关于VSCode - Launch.json指定参数的主要内容,如果未能解决你的问题,请参考以下文章
将 Spring 参数添加到 VSCode Debug launch.json
vscode 中的 launch.json 中不允许使用属性 args