-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
34 lines (33 loc) · 919 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
import commonjs from '@rollup/plugin-commonjs';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import typescript from '@rollup/plugin-typescript';
import json from '@rollup/plugin-json';
export default [{
input: 'src/index.ts',
output: [{
sourcemap: true,
file: './dist/index.js',
format: 'cjs',
}],
onwarn: function (warning, warn) {
// Ignoring usage of eval in depd
const file = warning?.loc?.file;
if (/node_modules\/depd/.test(file)) return;
return warn(warning);
},
plugins: [nodeResolve(), commonjs(), json(), typescript()],
}, {
input: 'src/test.ts',
output: [{
sourcemap: true,
file: './dist/test.js',
format: 'cjs',
}],
onwarn: function (warning, warn) {
// Ignoring usage of eval in depd
const file = warning?.loc?.file;
if (/node_modules\/depd/.test(file)) return;
return warn(warning);
},
plugins: [nodeResolve(), commonjs(), json(), typescript()],
}];