mirror of
https://github.com/mendableai/firecrawl.git
synced 2025-08-12 02:39:01 +00:00
9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
entryPoints: ["src/index.ts"],
|
|
format: ["cjs", "esm"],
|
|
dts: true,
|
|
outDir: "dist",
|
|
clean: true,
|
|
}); |