mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-12 01:29:42 -06:00
* revert to last working version * add updated ui components * update formbricks-com components * apply prettier formatting * update apps/web files
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
const isProduction = process.env.NODE_ENV === "production";
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
dts: true,
|
|
entry: ["src/index.ts"],
|
|
format: ["cjs", "esm"],
|
|
minify: isProduction,
|
|
sourcemap: true,
|
|
});
|