rollup.config.js 105 B

1234567
  1. export default {
  2. input: "index.es.js",
  3. output: {
  4. file: "dist/index.cjs",
  5. format: "cjs"
  6. }
  7. }