tsup-plugin-bundleless
v1.1.1
Published
tsup plugin to bundleless (output as file-to-file)
Downloads
100
Readme
tsup-plugin-bundleless
安装
npm i tsup-plugin-bundleless -D
使用
// tsup.config.ts
import { bundleless } from 'tsup-plugin-bundleless'
const { plugins, esbuildPlugins } = bundleless({
// options
})
export const tsup = defineConfig((option) => ({
plugins,
esbuildPlugins,
}))