-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
92 lines (89 loc) · 2.57 KB
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// Install:
// npm install -D @rollup/plugin-terser @rollup/plugin-commonjs
// import typescript from '@rollup/plugin-typescript'
// import terser from '@rollup/plugin-terser'
// import commonjs from '@rollup/plugin-commonjs'
import esbuild from 'rollup-plugin-esbuild'
import dts from 'rollup-plugin-dts'
// import {RollupOptions} from 'rollup'
const isProduction = process.env.NODE_ENV === 'production'
// See: https://rollupjs.org/guide/en/#outputformat
export default [
{
input: 'src/index.ts',
// plugins: [typescript(), isProduction && terser()],
plugins: [
esbuild({
sourceMap: !isProduction,
minify: isProduction,
}),
],
output: [
{
file: `${isProduction ? 'dist' : 'lib'}/index.mjs`,
format: 'esm',
// sourcemap: isProduction,
},
{
name: 'isApng',
file: `${isProduction ? 'dist' : 'lib'}/index.cjs`,
format: 'cjs',
// interop: 'auto',
// sourcemap: isProduction,
},
{
name: 'isApng',
file: `${isProduction ? 'dist' : 'lib'}/index.js`,
format: 'umd',
// sourcemap: isProduction,
},
],
},
// {
// input: 'src/index.ts',
// plugins: [
// esbuild({
// // All options are optional
// include: /\.[jt]sx?$/, // default, inferred from `loaders` option
// exclude: /node_modules/, // default
// sourceMap: true, // default
// // minify: true,
// target: 'es2017', // default, or 'es20XX', 'esnext'
// // jsx: 'transform', // default, or 'preserve'
// // jsxFactory: 'React.createElement',
// // jsxFragment: 'React.Fragment',
// // Like @rollup/plugin-replace
// // define: {
// // __VERSION__: '"x.y.z"',
// // },
// // tsconfig: 'tsconfig.json', // default
// // Add extra loaders
// // loaders: {
// // // Add .json files support
// // // require @rollup/plugin-commonjs
// // '.json': 'json',
// // // Enable JSX in .js files too
// // '.js': 'jsx',
// // },
// }),
// // typescript(),
// // commonjs(),
// // isProduction && terser()
// ],
// output: {
// name: 'isApng',
// file: `${isProduction ? 'dist' : 'lib'}/index.cjs`,
// format: 'cjs',
// // interop: 'default',
// interop: 'auto',
// },
// },
{
input: `src/index.ts`,
plugins: [dts()],
output: {
file: `${isProduction ? 'dist' : 'lib'}/index.d.ts`,
format: 'es',
},
},
]