UNPKG
@code-zhf/export-json-2-excel
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
export arrayJson to excel
github.com/codezhanghefei/ExportJson2Excel
codezhanghefei/ExportJson2Excel
@code-zhf/export-json-2-excel
/
rollup.config.js
12 lines
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
default
{
// 入口文件
input: '
src/main.js', output
: {
// 打包名称
name
:
'index'
,
// 打包的文件
file
:
'dist/index.js'
,
// 打包的格式,umd 支持 commonjs/amd/life 三种方式
format
:
'umd'
, }, }