Files
zitadel/packages/zitadel-react/tsup.config.ts

15 lines
290 B
TypeScript
Raw Normal View History

2023-04-14 13:35:27 +02:00
import { defineConfig, Options } from "tsup";
export default defineConfig((options: Options) => ({
treeshake: true,
splitting: true,
2023-04-14 14:35:21 +02:00
publicDir: true,
2023-08-02 10:12:07 +02:00
entry: ["src/index.tsx"],
2023-04-14 13:35:27 +02:00
format: ["esm"],
dts: true,
minify: true,
clean: true,
external: ["react"],
...options,
}));