17 lines
323 B
TypeScript
17 lines
323 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
const shared = {
|
|
outDir: 'lib',
|
|
format: ['esm'],
|
|
platform: 'node',
|
|
target: 'es2024',
|
|
fixedExtension: false,
|
|
outputOptions: { codeSplitting: false },
|
|
dts: false,
|
|
clean: false,
|
|
} as const
|
|
|
|
export default defineConfig([
|
|
{ ...shared, entry: ['lib/types/index.js'] },
|
|
])
|