mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 11:49:02 +08:00
16 lines
250 B
TypeScript
16 lines
250 B
TypeScript
|
import { defineConfig } from 'tsup'
|
||
|
|
||
|
export default defineConfig(options => {
|
||
|
return {
|
||
|
entry: options.entry,
|
||
|
outDir: options.outDir,
|
||
|
dts: true,
|
||
|
splitting: true,
|
||
|
clean: true,
|
||
|
format: [
|
||
|
'esm',
|
||
|
'cjs',
|
||
|
],
|
||
|
}
|
||
|
})
|