I am using babel-cli to compile my local NPM dependency source code.
package.json:
"main": "lib/index.js",
"scripts": {
"dev": "babel src --watch -d lib --source-maps inline",
},
The local NPM dependency was referenced by my other application. Now I need npm link to debug local NPM dependency. How can I debug with source-maps?