mirror of
https://github.com/SrIzan10/sern-cli.git
synced 2026-05-01 11:05:17 +00:00
13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
import type esbuild from 'esbuild';
|
|
import { resolve } from 'path';
|
|
|
|
export default (format: 'cjs' | 'esm', tsconfig: string|undefined) =>
|
|
({
|
|
platform: 'node',
|
|
format,
|
|
tsconfig: tsconfig,
|
|
logLevel: 'info',
|
|
minify: false,
|
|
outdir: resolve('dist'),
|
|
} satisfies esbuild.BuildOptions);
|