Skip to content

Commit

Permalink
add missing rollup.config.js from template
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Jun 20, 2024
1 parent 09bc2aa commit bec3e99
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import json from "rollup-plugin-json";
import cleanup from "rollup-plugin-cleanup";
import executable from "rollup-plugin-executable";
import resolve from "rollup-plugin-node-resolve";
import commonjs from "rollup-plugin-commonjs";
import pkg from "./package.json";

export default {
plugins: [resolve(), commonjs()],
input: pkg.module,
output: {
file: pkg.main,
format: "cjs",
interop: false
}
};

0 comments on commit bec3e99

Please sign in to comment.