switch back to js

This commit is contained in:
David Blass
2025-11-19 16:31:13 -05:00
parent dcc257ff7a
commit 5889d20930
6 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -29,14 +29,14 @@ const sharedConfig = {
await build({
...sharedConfig,
entryPoints: ["./entry.ts"],
outfile: "./entry",
outfile: "./entry.js",
});
// Build the MCP server bundle
await build({
...sharedConfig,
entryPoints: ["./mcp/server.ts"],
outfile: "./mcp-server",
outfile: "./mcp-server.js",
});
console.log("✅ Build completed successfully!");