mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 21:03:26 +00:00
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
format: ["esm"],
|
|
dts: true,
|
|
sourcemap: true,
|
|
clean: true,
|
|
target: "es2022",
|
|
external: ["better-sqlite3"],
|
|
});
|