Files
zitadel/packages/zitadel-next/tsup.config.ts
2023-07-18 13:58:33 +02:00

15 lines
289 B
TypeScript

import { defineConfig, Options } from "tsup";
export default defineConfig((options: Options) => ({
treeshake: true,
splitting: true,
publicDir: true,
entry: ["src/**/*.tsx"],
format: ["esm"],
dts: true,
minify: true,
clean: true,
external: ["react"],
...options,
}));