copilot-api / tsdown.desktop.config.ts
imspsycho's picture
Initial upload from Google Colab
98c9143 verified
Raw
History Blame Contribute Delete
292 Bytes
import { defineConfig } from "tsdown"
export default defineConfig({
entry: ["src/main.ts"],
format: ["esm"],
target: "es2022",
platform: "node",
sourcemap: true,
clean: true,
removeNodeProtocol: false,
noExternal: () => true,
env: {
NODE_ENV: "production",
},
})