File size: 269 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import copy from "rollup-plugin-copy"

export default {
  input: "index.js",
  output: {
    file: "dist/index.cjs",
    format: "cjs",
    exports: "default"
  },
  plugins: [
    copy({targets: [{src: "index.d.ts", dest: "dist", rename: () => "index.d.cts"}]})
  ]
}