If I run npx babel-node ./src/index.js --inspect=0.0.0.0:9223 I see a source maps in the Chrome dev tools.
If however I run npx babel-watch .src/index.js --inspect=0.0.0.0:9223 the files are transpired and run file however there are no source map comments in the file.
I have sourceMaps: 'both', in my babel.config.js file
If I run
npx babel-node ./src/index.js --inspect=0.0.0.0:9223
I see a source maps in the Chrome dev tools.If however I run
npx babel-watch .src/index.js --inspect=0.0.0.0:9223
the files are transpired and run file however there are no source map comments in the file.I have
sourceMaps: 'both',
in mybabel.config.js
file