Package detail

tsup-plugin-bundleless

hemengke1997134MIT1.3.0

tsup plugin to bundleless (output as file-to-file)

tsup, plugin, bundleless

readme

tsup-plugin-bundleless

File-to-file build for tsup

Install

npm i tsup-plugin-bundleless -D

Uage

// tsup.config.ts
import { bundleless } from 'tsup-plugin-bundleless'

const { plugins, esbuildPlugins } = bundleless({
  // options
})

export const tsup = defineConfig((option) => ({
  plugins,
  esbuildPlugins,
}))