-
Notifications
You must be signed in to change notification settings - Fork 8
/
rollup.config.ts
90 lines (88 loc) · 2.46 KB
/
rollup.config.ts
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
import babel from '@rollup/plugin-babel';
import resolve from '@rollup/plugin-node-resolve';
import typescript from '@rollup/plugin-typescript';
const pkg = require('./package.json');
const basePlugins = [resolve(), typescript({ declaration: true, declarationDir: 'dist' })];
const pluginsWithTranspile = [...basePlugins, babel()];
const workerPlugins = [resolve(), typescript({ declaration: true, declarationDir: './' })];
const workerPluginsWithTranspile = [...workerPlugins, babel()];
const baseOutputOptions = {
compact: true,
interop: false,
};
export default [
{
input: 'src/index.ts',
output: [
{
...baseOutputOptions,
entryFileNames: pkg.es2015,
dir: './',
format: 'es',
},
],
plugins: basePlugins,
},
{
input: 'src/index.ts',
output: [
{
...baseOutputOptions,
entryFileNames: pkg.module,
dir: './',
format: 'es',
},
{
...baseOutputOptions,
entryFileNames: pkg.main,
dir: './',
format: 'cjs',
},
{
...baseOutputOptions,
entryFileNames: pkg.browser,
dir: './',
format: 'umd',
name: 'mp3MediaRecorder',
},
],
plugins: pluginsWithTranspile,
},
{
input: 'src/worker/index.ts',
output: [
{
...baseOutputOptions,
entryFileNames: 'dist/worker/index.es.js',
dir: './',
format: 'es',
},
],
plugins: workerPlugins,
},
{
input: 'src/worker/index.ts',
output: [
{
...baseOutputOptions,
entryFileNames: 'dist/worker/index.es5.js',
dir: './',
format: 'es',
},
{
...baseOutputOptions,
entryFileNames: 'dist/worker/index.js',
dir: './',
format: 'cjs',
},
{
...baseOutputOptions,
entryFileNames: 'dist/worker/index.umd.js',
dir: './',
format: 'umd',
name: 'mp3EncoderWorker',
},
],
plugins: workerPluginsWithTranspile,
},
];