-
Notifications
You must be signed in to change notification settings - Fork 3
/
rollup.config.js
42 lines (39 loc) · 931 Bytes
/
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
import { defineConfig } from 'rollup'
import pkg from './package.json' assert { type: 'json' }
import typescript from '@rollup/plugin-typescript'
const config = defineConfig({
input: 'src/index.ts',
output: [
{
file: pkg.main,
format: 'cjs',
sourcemap: true,
plugins: [preserveEsmImports('pkg-dir')],
},
{
file: pkg.module,
format: 'esm',
sourcemap: true,
},
],
external: [...Object.keys(pkg.dependencies), 'node:url', 'node:path'],
plugins: [
typescript({
tsconfig: './tsconfig.json',
}),
],
})
export default config
/**
* @param {string[]} targets
* @returns {import("rollup").Plugin}
*/
function preserveEsmImports(...targets) {
const ids = new Set(targets)
return {
name: 'preserve-esm-imports',
renderDynamicImport({ targetModuleId }) {
if (ids.has(targetModuleId)) return { left: 'import(', right: ')' }
},
}
}