UNPKG

create-eth

Version:
14 lines (12 loc) 370 B
import typescript from "@rollup/plugin-typescript"; import autoExternal from "rollup-plugin-auto-external"; import json from "@rollup/plugin-json"; export default { input: "src/cli.ts", output: { dir: "dist", format: "es", sourcemap: true, }, plugins: [autoExternal(), typescript({ exclude: ["templates/**", "externalExtensions/**"] }), json()], };