-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrollup.config.ts
57 lines (53 loc) · 1.3 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
import type { ModuleFormat, OutputOptions, RollupOptions } from 'rollup'
import { nodeResolve } from '@rollup/plugin-node-resolve'
import { getBabelOutputPlugin } from '@rollup/plugin-babel'
import ts from '@rollup/plugin-typescript'
import json from '@rollup/plugin-json'
import pkg from './package.json' assert { type: 'json' }
const formats: Array<ModuleFormat> = [
'commonjs',
'esm'
]
const output: Array<OutputOptions> = formats.map((format) => {
const suffix = {
value: 'js'
}
if (format === 'commonjs') {
suffix.value = 'cjs'
}
const fileName = `bundle.${ format }.${ suffix.value }`
const result: OutputOptions = {
file: `dist/${ fileName }`,
format,
banner: `
/**
* @license
* author: ${ pkg.author }
* ${ fileName } v${ pkg.version }
* Released under the ${ pkg.license } license.
*/
`,
sourcemap: false
}
return result
})
const rollupConfig: RollupOptions = {
input: 'src/main.ts',
output,
external: [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
...['path', 'url', 'os', 'stream']
],
plugins: [
getBabelOutputPlugin(),
nodeResolve(),
json(),
ts({
compilerOptions: {
module: 'esnext'
}
})
]
}
export default rollupConfig