tsdown.config.ts 277 B

12345678910111213
  1. import { defineConfig } from 'tsdown'
  2. /** Build the pure migration library. */
  3. export default defineConfig({
  4. entry: ['lib/types/index.js'],
  5. outDir: 'lib',
  6. format: ['esm'],
  7. platform: 'node',
  8. target: 'es2024',
  9. fixedExtension: false,
  10. dts: false,
  11. clean: false,
  12. })