forked from storycraft/node-kakao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.mjs
46 lines (42 loc) · 847 Bytes
/
rollup.config.mjs
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
/*
* Created on Fri Jan 29 2021
*
* Copyright (c) storycraft. Licensed under the MIT Licence.
*/
import nodeResolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import typescript from '@rollup/plugin-typescript';
const plugins = [
nodeResolve({
preferBuiltins: true,
browser: true
}),
commonjs(),
typescript({
module: 'ESNext',
declaration: false,
removeComments: true,
}),
];
/** @type {import('rollup').InputOptions} */
const opts = {
input: 'src/index.ts',
external: [
// Excluded
'axios',
'form-data',
'promise-socket'
],
shimMissingExports: true,
output: [
{
dir: 'dist_esm',
format: 'esm',
sourcemap: true,
preserveModules: true,
preserveModulesRoot: 'src'
},
],
plugins,
};
export default opts;