morsegen
Version:
Morse Code Translator
23 lines (21 loc) • 401 B
JavaScript
import terser from "@rollup/plugin-terser";
export default {
input: "src/index.js",
output: [
{
file: "dist/index.esm.js",
format: "esm",
},
{
file: "dist/index.cjs.js",
format: "cjs",
name: "morsegen",
},
{
file: "dist/index.umd.js",
format: "umd",
name: "morsegen",
},
],
plugins: [terser()],
};