| 12345678910111213141516 |
- 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'] },
- ])
|