rollup.config.js 185 B

1234567891011
  1. export default [
  2. {
  3. input: "index.js",
  4. output: [
  5. {
  6. file: "dist/index.cjs",
  7. format: "cjs"
  8. }
  9. ]
  10. }
  11. ];