Checkpoint/esbuild.config.js
2025-05-29 15:48:20 -05:00

12 lines
No EOL
261 B
JavaScript

import { build } from 'esbuild';
build({
entryPoints: ['index.js'],
bundle: true,
platform: 'node',
target: 'node18',
outfile: 'dist/index.js',
minify: true,
legalComments: 'none',
drop: ['console', 'debugger'],
}).catch(() => process.exit(1));