Files
zitadel/packages/zitadel-react/tsup.config.ts
2023-04-14 17:22:59 +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,
}));