@valaxyjs/utils
Version:
A utility library for Valaxy
29 lines (25 loc) • 795 B
text/typescript
import { defineConfig } from 'tsup'
export default defineConfig((options) => {
return {
entry: [
'src/index.ts',
],
// https://tsup.egoist.dev/#code-splitting
// Code splitting currently only works with the esm output format, and it's enabled by default. If you want code splitting for cjs output format as well, try using --splitting flag which is an experimental feature to get rid of the limitation in esbuild.
// splitting: true,
clean: true,
dts: true,
format: ['cjs', 'esm'],
minify: !options.watch,
outExtension({ format }) {
return {
js: `.${format === 'esm' ? 'mjs' : 'cjs'}`,
}
},
/**
* @see https://tsup.egoist.dev/#inject-cjs-and-esm-shims
* shim for __filename
*/
shims: true,
}
})