Codebase list node-prosemirror-markdown / b8c3d921-eed0-4c34-a178-da9e022226f7/main rollup.config.js
b8c3d921-eed0-4c34-a178-da9e022226f7/main

Tree @b8c3d921-eed0-4c34-a178-da9e022226f7/main (Download .tar.gz)

rollup.config.js @b8c3d921-eed0-4c34-a178-da9e022226f7/mainraw · history · blame

module.exports = {
  input: './src/index.js',
  output: [{
    file: 'dist/index.js',
    format: 'cjs',
    sourcemap: true
  }, {
    file: 'dist/index.es.js',
    format: 'es',
    sourcemap: true
  }],
  plugins: [require('@rollup/plugin-buble')()],
  external(id) { return id[0] != "." && !require("path").isAbsolute(id) }
}