2026-07-15 21:21:24 +08:00
|
|
|
import { defineConfig } from 'tsdown'
|
|
|
|
|
|
|
|
|
|
/** Builds the plugin and executable entries from declarations emitted by `tsc -b`. */
|
|
|
|
|
export default defineConfig({
|
2026-07-19 22:13:50 +08:00
|
|
|
entry: ['lib/types/index.js', 'lib/types/invariant.js', 'lib/types/bin.js'],
|
2026-07-15 21:21:24 +08:00
|
|
|
outDir: 'lib',
|
|
|
|
|
format: ['esm'],
|
|
|
|
|
platform: 'node',
|
|
|
|
|
target: 'es2024',
|
|
|
|
|
fixedExtension: false,
|
|
|
|
|
dts: false,
|
|
|
|
|
clean: false,
|
|
|
|
|
})
|