Closed kevana closed 8 years ago
Tried enabling source maps, ran into this
{ "version": 3, "sources": ["unknown"], "names": [], .... }
Chrome and Firefox didn't like the unknown source. Giving Babel the filename to generate sourceMaps with works for inline maps:
unknown
{ "version":3, "sources": ["foo.js"], "names": [], ... }
Don't merge yet, only works if moduleIds is set
moduleIds
Ok, should be good to go now.
thanks! released with 2.4.5
Tried enabling source maps, ran into this
Chrome and Firefox didn't like the
unknown
source. Giving Babel the filename to generate sourceMaps with works for inline maps: