UNPKG

@imagentleman/reactjs-time-picker

Version:

Unstyled, customizable and lightweight reactjs time picker.

17 lines (14 loc) 282 B
import { babel } from "@rollup/plugin-babel"; const config = { input: "index.js", output: { dir: "dist", format: "umd", globals: { react: "React", }, name: "TimePicker", }, plugins: [babel({ babelHelpers: "bundled" })], }; export default config;