mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-19 07:42:43 +00:00
15 lines
257 B
TypeScript
15 lines
257 B
TypeScript
import { defineConfig } from "tsdown"
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
format: "esm",
|
|
sourcemap: true,
|
|
target: "es2020",
|
|
tsconfig: "./tsconfig.json",
|
|
clean: true,
|
|
minify: true,
|
|
dts: {
|
|
sourcemap: true,
|
|
},
|
|
exports: true,
|
|
})
|