mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-11 22:32:17 +00:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import { defineConfig, Options } from "tsup";
|
|
|
|
export default defineConfig((options: Options) => ({
|
|
entry: ["src/index.tsx"],
|
|
format: ["esm", "cjs"],
|
|
dts: true,
|
|
external: ["react"],
|
|
...options,
|
|
}));
|