我只是想在我的launch.json
文件中添加一些基本配置,但由于不允许使用 Property argsvscode
,所以出现错误。下面是我的配置。
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "index",
"args": [
"src/index.ts"
],
"cwd": "${workspaceFolder}"
}
],
"compounds": []
}