tsup.config.browser.ts 191 B

1234567
  1. import { defineConfig } from "tsup";
  2. import { getBaseConfig } from "./getBaseConfig";
  3. export default defineConfig((options) => [
  4. ...getBaseConfig("browser", ["cjs", "esm"], options),
  5. ]);