Files
zitadel/packages/zitadel-react/tsup.config.ts
2023-04-14 13:35:27 +02:00

14 lines
270 B
TypeScript

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