generated from wharfkit/api-client-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.mjs
60 lines (55 loc) · 1.52 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import fs from 'fs'
import path from 'path'
import {URL} from 'url'
import dts from 'rollup-plugin-dts'
import typescript from '@rollup/plugin-typescript'
// eslint-disable-next-line es-x/no-import-meta
const __dirname = path.dirname(new URL(import.meta.url).pathname)
const pkg = JSON.parse(fs.readFileSync(path.join(__dirname, 'package.json')))
const external = Object.keys(pkg.dependencies)
export default [
{
input: 'src/index.ts',
output: {
file: pkg.main,
format: 'cjs',
sourcemap: true,
},
plugins: [typescript({target: 'es6'})],
external,
onwarn,
},
{
input: 'src/index.ts',
output: {
file: pkg.module,
format: 'esm',
sourcemap: true,
},
plugins: [typescript({target: 'es2020'})],
external,
onwarn,
},
{
input: 'src/index.ts',
output: {file: pkg.types, format: 'esm'},
onwarn,
plugins: [dts()],
},
]
function onwarn(warning, rollupWarn) {
if (warning.code === 'CIRCULAR_DEPENDENCY') {
// unnecessary warning
return
}
if (
warning.code === 'UNUSED_EXTERNAL_IMPORT' &&
warning.source === 'tslib' &&
warning.names[0] === '__read'
) {
// when using ts with importHelpers: true rollup complains about this
// seems safe to ignore since __read is not actually imported or used anywhere in the resulting bundles
return
}
rollupWarn(warning)
}