I'm currently editing my launch.json
file in vscode
to make some basic configurations, but I keep encountering an error that says Property args is not allowed. Here is the configuration I have:
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "index",
"args": [
"src/index.ts"
],
"cwd": "${workspaceFolder}"
}
],
"compounds": []
}