Rollup plugin for loading files with existing source maps. Inspired by webpack/source-map-loader.
Works with rollup 0.31.2 or later.
If you use rollup-plugin-babel, you might be able to use the inputSourceMap
option instead of this plugin.
import sourcemaps from 'rollup-plugin-sourcemaps'; export default { input: 'src/index.js', plugins: [sourcemaps()], output: { sourcemap: true, file: 'dist/my-awesome-package.js', }, };