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

15 lines
289 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-04-14 17:22:59 +02:00
entry: ["src/**/*.tsx"],
2023-04-14 13:35:27 +02:00
format: ["esm"],
dts: true,
minify: true,
clean: true,
external: ["react"],
...options,
}));