| 12345678910111213 |
- import { defineConfig } from 'tsdown'
- /** Build the pure migration library. */
- export default defineConfig({
- entry: ['lib/types/index.js'],
- outDir: 'lib',
- format: ['esm'],
- platform: 'node',
- target: 'es2024',
- fixedExtension: false,
- dts: false,
- clean: false,
- })
|