12 lines
232 B
JavaScript
12 lines
232 B
JavaScript
import { build } from 'esbuild';
|
|
|
|
build({
|
|
entryPoints: ['src/index.ts'],
|
|
bundle: true,
|
|
outfile: 'dist/index.js',
|
|
platform: 'browser',
|
|
target: 'esnext',
|
|
sourcemap: false,
|
|
format: 'esm',
|
|
}).catch(() => process.exit(1));
|