You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if you have a file named input.jsx and you compile it to output.js and enable the source-map option, you'll get a source map file named output.js.mapping.
The defacto industry standard naming convention for source maps is [output filename].[output extension].map. In this example, the source map should be output.js.map.
Please move to that naming convention, as it matches what literally every other language does. Sass, CoffeeScript, Less, Stylus and Uglify.js just off the top of my head.
The text was updated successfully, but these errors were encountered:
Currently, if you have a file named
input.jsx
and you compile it tooutput.js
and enable the source-map option, you'll get a source map file namedoutput.js.mapping
.The defacto industry standard naming convention for source maps is
[output filename].[output extension].map
. In this example, the source map should beoutput.js.map
.Please move to that naming convention, as it matches what literally every other language does. Sass, CoffeeScript, Less, Stylus and Uglify.js just off the top of my head.
The text was updated successfully, but these errors were encountered: