17 lines
289 B
TypeScript
17 lines
289 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig([
|
|
{
|
|
entry: [
|
|
'./src/**/*.ts',
|
|
'!./src/**/*.test.ts',
|
|
],
|
|
platform: 'node',
|
|
dts: true,
|
|
minify: false,
|
|
sourcemap: true,
|
|
unbundle: true,
|
|
external: ['bun:sqlite', 'bun'],
|
|
},
|
|
]);
|