-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
54 lines (48 loc) · 1.35 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
import typescript from '@rollup/plugin-typescript';
import commonjs from '@rollup/plugin-commonjs';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import dts from 'rollup-plugin-dts';
import del from 'rollup-plugin-delete';
import command from 'rollup-plugin-command';
const inputDir = './src';
const outputDir = './dist';
const declarationDir = `${outputDir}/_declaration`;
const plugins = [
command(
`yarn tsc --emitDeclarationOnly --declaration --declarationDir ${declarationDir}`,
{ wait: true, once: true }
),
typescript({ tsconfig: './tsconfig.json' }),
commonjs(),
nodeResolve(),
command('yarn minify'), // <- if you want to minify code (with terser)
del({
targets: outputDir,
}),
];
const external = ['/node_modules/']; // external packages
const emitTypes = {
// emitting types (bundled)
input: `${declarationDir}/index.d.ts`,
output: [{ file: `${outputDir}/index.d.ts`, format: 'es' }],
plugins: [
dts(),
del({
targets: `${declarationDir}`,
hook: 'buildEnd',
}),
],
};
export default [
{
input: `${inputDir}/index.ts`,
output: {
file: `${outputDir}/index.js`,
format: 'commonjs',
},
plugins,
external,
},
/* {... more inputs / outputs} */
emitTypes,
];