scramjet/esbuild.js
2024-05-07 13:35:18 -05:00

19 lines
No EOL
453 B
JavaScript

import { build } from "esbuild";
import time from "esbuild-plugin-time";
build({
entryPoints: {
client: "./src/client/index.ts",
bundle: "./src/bundle/index.ts",
worker: "./src/worker/index.ts",
codecs: "./src/codecs/index.ts",
config: "./src/scramjet.config.ts",
},
entryNames: "scramjet.[name]",
outdir: "./dist",
bundle: true,
plugins: [
time()
],
logLevel: "info",
});