-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrollup.config.ts
91 lines (81 loc) · 1.81 KB
/
rollup.config.ts
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
86
87
88
89
90
91
import { nodeResolve } from '@rollup/plugin-node-resolve';
import terserPlugin from '@rollup/plugin-terser';
import typescriptPlugin from '@rollup/plugin-typescript';
import type { InputOptions, OutputOptions, RollupOptions } from 'rollup';
import dtsPlugin from 'rollup-plugin-dts';
import { packageName } from './src/util/packageName';
const outputPath = `dist/index`;
const commonInputOptions: InputOptions = {
input: 'src/index.ts',
plugins: [nodeResolve(), typescriptPlugin()],
};
const iifeCommonOutputOptions: OutputOptions = {
name: packageName ?? 'index',
};
const config: RollupOptions[] = [
// ESM output.
{
...commonInputOptions,
output: [
{
extend: true,
file: `${outputPath}.mjs`,
format: 'esm',
},
],
},
// IIFE output.
{
...commonInputOptions,
output: [
{
...iifeCommonOutputOptions,
extend: true,
file: `${outputPath}.iife.js`,
format: 'iife',
},
// Minified IIFE output.
{
...iifeCommonOutputOptions,
extend: true,
file: `${outputPath}.iife.min.js`,
format: 'iife',
plugins: [terserPlugin()],
},
],
},
// CommonJS output.
{
...commonInputOptions,
output: [
{
extend: true,
file: `${outputPath}.cjs`,
format: 'cjs',
},
],
},
// Type definitions output.
{
...commonInputOptions,
plugins: [commonInputOptions.plugins, dtsPlugin()],
output: [
{
extend: true,
file: `${outputPath}.d.ts`,
format: 'esm',
},
{
extend: true,
file: `${outputPath}.d.mts`,
format: 'esm',
},
{
extend: true,
file: `${outputPath}.d.cts`,
format: 'cjs',
},
],
},
];
export default config;