UNPKG
@mir_king/common
Version:
latest (1.1.5)
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
提供开发中常用的工具函数,提升开发效率的库
@mir_king/common
/
rollup.config.js
16 lines
(15 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{ terser }
from
'rollup-plugin-terser'
; export default {
input
:
'src/index.js'
, output: [ { file:
'dist/index.cjs.js'
,
format
:
'cjs'
}, { file:
'dist/index.esm.js'
,
format
:
'esm'
} ], plugins: [terser()] };