blob: 851f95f6b0901ce35174458f80fcaf4629262005 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import typescript from "@rollup/plugin-typescript";
export default {
input: "index.tsx",
output: {
file: "dist/index.js",
format: "cjs",
},
plugins: [typescript()],
};
|