generated from wharfkit/transact-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
53 lines (48 loc) · 1.2 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
import fs from 'fs'
import dts from 'rollup-plugin-dts'
import typescript from '@rollup/plugin-typescript'
import json from '@rollup/plugin-json'
import pkg from './package.json'
const name = pkg.name
const license = fs.readFileSync('LICENSE').toString('utf-8').trim()
const banner = `
/**
* ${name} v${pkg.version}
* ${pkg.homepage}
*
* @license
* ${license.replace(/\n/g, '\n * ')}
*/
`.trim()
const external = [...Object.keys(pkg.dependencies), ...Object.keys(pkg.peerDependencies)]
/** @type {import('rollup').RollupOptions} */
export default [
{
input: 'src/index.ts',
output: {
banner,
file: pkg.main,
format: 'cjs',
sourcemap: true,
exports: 'named',
},
plugins: [typescript({target: 'es6'}), json()],
external,
},
{
input: 'src/index.ts',
output: {
banner,
file: pkg.module,
format: 'esm',
sourcemap: true,
},
plugins: [typescript({target: 'es2020'}), json()],
external,
},
{
input: 'src/index.ts',
output: {banner, file: pkg.types, format: 'esm'},
plugins: [dts()],
},
]