Files
app/bun.config.ts

22 lines
522 B
TypeScript

import { resolvePath } from '@kevisual/use-config';
import { execSync } from 'node:child_process';
const entry = 'src/index.ts';
const naming = 'app';
const external: string[] = [];
/**
* @type {import('bun').BuildConfig}
*/
await Bun.build({
target: 'browser',
format: 'esm',
entrypoints: [resolvePath(entry, { meta: import.meta })],
outdir: resolvePath('./dist', { meta: import.meta }),
naming: {
entry: `${naming}.js`,
},
external,
});
const dts = 'dts -i src/index.ts -o app.d.ts';
execSync(dts);