File size: 219 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 | import { defineConfig } from 'tsup'
import { legacyConfig, modernConfig } from './root.tsup.config.js'
export default defineConfig([
modernConfig({ entry: ['src/*.ts'] }),
legacyConfig({ entry: ['src/*.ts'] }),
])
|