mirror of
https://github.com/formbricks/formbricks.git
synced 2026-03-17 09:51:14 -05:00
Move repository into a monorepo with turborepo and pnpm. This is a big change in the way the code is organized, used and deployed.
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,
|
|
});
|