-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
54 lines (52 loc) · 1.36 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
const { nodeResolve } = require("@rollup/plugin-node-resolve");
const commonjs = require('@rollup/plugin-commonjs');
const typescript = require('@rollup/plugin-typescript');
const pkg = require('./package.json');
module.exports = [
// ESM
{
input: 'index.ts',
external: ['lodash', '@azure/event-hubs'],
plugins: [
typescript({
tsconfig: './tsconfig.json',
}),
nodeResolve({
preferBuiltins: true
}),
commonjs({
include: /node_modules/,
})
],
output: {
file: pkg.module,
format: "esm",
exports: "named",
sourcemap: true,
banner: `/*! ${pkg.name} v${pkg.version} */`,
},
},
// CJS
{
input: 'index.ts',
external: ['lodash', '@azure/event-hubs'],
plugins: [
typescript({
tsconfig: './tsconfig.json',
}),
nodeResolve({
preferBuiltins: true,
}),
commonjs({
include: /node_modules/,
})
],
output: {
file: pkg.main,
format: "cjs",
exports: "named",
sourcemap: true,
banner: `/*! ${pkg.name} v${pkg.version} */`,
},
},
];