-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrollup.config.js
More file actions
39 lines (38 loc) · 972 Bytes
/
rollup.config.js
File metadata and controls
39 lines (38 loc) · 972 Bytes
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
import pkg from './package.json';
import ts from '@rollup/plugin-typescript';
import { dts } from 'rollup-plugin-dts';
import tsConfigPaths from 'rollup-plugin-tsconfig-paths';
import terser from '@rollup/plugin-terser';
export default [
{
plugins: [
ts(),
terser({
output: {
comments: false
}
})
],
input: 'src/index.ts',
output: [
{
file: 'web/colortranslator.js',
format: 'iife',
name: 'colortranslator'
},
{ file: pkg.main, format: 'cjs' },
{ file: pkg.module, format: 'es' }
]
},
{
plugins: [
tsConfigPaths(),
dts()
],
input: 'src/index.ts',
output: [
{ file: 'index.d.ts', format: 'cjs' },
{ file: 'esm/index.d.ts', format: 'es' }
]
}
];