-
Notifications
You must be signed in to change notification settings - Fork 76
/
rollup.config.js
85 lines (79 loc) · 1.71 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
import babel from 'rollup-plugin-babel';
import ts from 'rollup-plugin-typescript2';
import pkg from './package.json';
const ownKeys = Object.getOwnPropertyNames;
const externalDependencies = [
...new Set([...ownKeys(pkg.peerDependencies), ...ownKeys(pkg.dependencies)]),
];
export default [
{
input: './src/index.ts',
external: externalDependencies,
output: [
{
file: pkg.esnext,
format: 'es',
exports: 'named',
},
],
plugins: [
ts({
clean: true,
useTsconfigDeclarationDir: true,
tsconfigOverride: {
compilerOptions: {
module: 'esnext',
// ToDo: FIXME! sadly rollup do not handle optional chaining yet
target: 'es2019',
declaration: true,
declarationDir: `${__dirname}/dist/types`,
},
},
}),
],
},
{
input: './src/index.ts',
external: externalDependencies,
output: [
{
file: pkg.main,
format: 'cjs',
sourcemap: true,
exports: 'named',
},
{
file: pkg.module,
format: 'esm',
exports: 'named',
},
],
plugins: [
ts({
clean: true,
tsconfigOverride: {
compilerOptions: {
module: 'esnext',
target: 'es5',
declaration: false,
},
},
}),
babel({
babelrc: false,
exclude: 'node_modules/**',
extensions: ['.ts', '.tsx', '.js', '.jsx'],
presets: [
[
'@babel/preset-env',
{
targets: {
ie: '9',
},
},
],
],
}),
],
},
];