grok-api/build.mjs

10 lines
210 B
JavaScript

import { build } from "esbuild";
await build({
entryPoints: ["src/index.ts"],
bundle: true,
platform: "node",
outfile: "dist/index.js",
minify: true,
treeShaking: true // shake it off shake it offff
});