I am trying to run the follwowing npm script in Visual Studio code's launch.json file:
nodemon src/shim-host/index.js --exec babel-node --babel-preset-es2015
My attempt so far in my launch.json file:
"program": "nodemon src/shim-host/index.js --exec babel-node --babel-preset-es2015",
However, I am getting the error "Attribute 'program' is not absolute'"
Can someone help?
Thanks in advance!