UNPKG
vue-plugin-event-bus
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
vue2.x eventbus plugin
github.com/shooterRao/vue-plugin-event-bus
shooterRao/vue-plugin-event-bus
vue-plugin-event-bus
/
rollup.config.js
17 lines
(15 loc)
•
290 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
typescript
from
'rollup-plugin-typescript2'
; export default {
input
:
'src/index.ts'
, output: [ { file:
'dist/index.js'
,
format
:
'umd'
, name:
'VueEventBus'
, }, { file:
'dist/index.esm.js'
,
format
:
'esm'
}, ], plugins: [ typescript() ], };