remove js suffix

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