mirror of
https://github.com/makeplane/plane.git
synced 2025-12-18 12:57:52 +01:00
14 lines
248 B
TypeScript
14 lines
248 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
outDir: "dist",
|
|
format: ["esm", "cjs"],
|
|
dts: true,
|
|
clean: true,
|
|
minify: true,
|
|
splitting: true,
|
|
treeshake: true,
|
|
external: ["react"],
|
|
});
|