Files
shockbot/esbuild.config.js
T
Colin McDonnell ad2680524d Switch to esbuild
2025-08-27 18:05:17 -07:00

15 lines
270 B
JavaScript

import { build } from 'esbuild';
await build({
entryPoints: ['./index.ts'],
bundle: true,
outfile: './index.cjs',
format: 'cjs',
platform: 'node',
target: 'node20',
minify: false,
sourcemap: false,
});
console.log('✅ Build completed successfully!');