mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00: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"],
|
|
});
|