16 lines
366 B
TypeScript
16 lines
366 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
/**
|
|
* Build the doc-only module and CLI entry; `tsc -b` supplies declarations.
|
|
*/
|
|
export default defineConfig({
|
|
entry: ['lib/types/index.js', 'lib/types/invariant.js', 'lib/types/bin.js'],
|
|
outDir: 'lib',
|
|
format: ['esm'],
|
|
platform: 'node',
|
|
target: 'es2024',
|
|
fixedExtension: false,
|
|
dts: false,
|
|
clean: false,
|
|
})
|