forked from pknn/emojtcha-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
41 lines (40 loc) · 1002 Bytes
/
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
import RollupPluginDelete from 'rollup-plugin-delete'
import RollupPluginTypescript from '@rollup/plugin-typescript'
import RollupPluginStyles from 'rollup-plugin-styles'
import RollupPluginJson from '@rollup/plugin-json'
import RollupPluginExternal from 'rollup-plugin-peer-deps-external'
import packageJson from './package.json'
export default [
{
input: 'src/index.ts',
output: [
{
file: 'dist/index.cjs.js',
format: 'cjs',
exports: 'auto',
},
{
file: 'dist/index.esm.js',
format: 'esm',
exports: 'auto',
},
{
dir: 'dist',
format: 'esm',
exports: 'auto'
}
],
plugins: [
RollupPluginDelete({
targets: 'dist/*'
}),
RollupPluginTypescript(),
RollupPluginStyles(),
RollupPluginJson()
],
external: (() => {
console.log(packageJson.peerDependencies)
return Object.keys(packageJson.peerDependencies || {})
})()
}
];