UNPKG

reactjs-toaster

Version:

The React JS Toaster (reactjs-toaster) is lightweight JavaScript/TypeScript based Toast message library for showing Error , Success , Warning and Info message in UI End.

14 lines (12 loc) 345 B
import typescript from "@rollup/plugin-typescript"; import { defineConfig } from "rollup"; export default defineConfig({ input:"src/index.ts", output:{ dir:"dist", format:"es", name:"reactjs-toaster" }, external:["react","react-dom"], plugins:[typescript({tsconfig:"tsconfig.json"})] })