Files
zitadel/packages/zitadel-react/tsup.config.ts
peintnermax 8a8afa22a0 tsup
2023-08-02 10:12:07 +02:00

15 lines
290 B
TypeScript

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