14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
import type { InlineConfig } from 'tsdown';
|
|
|
|
const BANNER = '/*! @robonen/tools | (c) 2026 Robonen Andrew | Apache-2.0 */';
|
|
|
|
export const sharedConfig = {
|
|
format: ['esm', 'cjs'],
|
|
dts: true,
|
|
clean: true,
|
|
hash: false,
|
|
outputOptions: {
|
|
banner: BANNER,
|
|
},
|
|
} satisfies InlineConfig;
|