rollup.config.js 223 B

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