mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-13 14:30:02 -04:00
19 lines
No EOL
453 B
JavaScript
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",
|
|
}); |