-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathrollup.config.js
47 lines (43 loc) · 1.19 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
import path from 'node:path'
import ts from '@rollup/plugin-typescript'
import dts from 'rollup-plugin-dts'
import pkg from './package.json' with { type: 'json' }
export default (async () => {
const outDir = path.dirname(pkg.main)
const outDirTypes = `${outDir}/types`
return [
{
input: './source/index.ts',
output: {
dir: outDir, // TODO: `file: pkg.main` - workaround via https://github.com/rollup/plugins/issues/1772#issuecomment-2519066903
format: 'es',
banner: "'use client';",
},
external: isExternal,
plugins: [ts({
tsconfig: './tsconfig.json',
compilerOptions: { declarationDir: outDirTypes },
})],
},
{
input: `${outDirTypes}/index.d.ts`,
output: { file: pkg.types, format: 'es' },
plugins: [dts(), rmOnWrite(outDirTypes)],
},
]
})()
function isExternal(id) {
return !id.startsWith('.') && !id.startsWith('/')
}
function rmOnWrite(dir) {
return {
name: 'rollup-plugin-rm-on-write',
writeBundle: {
sequential: true,
order: 'post',
async handler() {
return (await import('node:fs/promises')).rm(dir, { force: true, recursive: true })
},
},
}
}