I am trying to create a smart contract and running a code. First it was giving an error with outfiles, so I copied a new code for launch.json file as seen in the screenshot. But now, it shows this error and I have tried everything but don't know what to do. Plz help
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/app.js",
"skipFiles": [
"<node_internals>/**"
]
},
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"preLaunchTask": "npm: compile",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/src/**/*.js"
],
"stopOnEntry": false
},
{
"type": "node",
"request": "attach",
"name": "Attach to Server",
"port": 6009,
"restart": true,
"outFiles": [
"${workspaceRoot}/out/src/**/*.js"
]