Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
219 Bytes
import { defineConfig } from 'tsup'
import { legacyConfig, modernConfig } from './root.tsup.config.js'
export default defineConfig([
modernConfig({ entry: ['src/*.ts'] }),
legacyConfig({ entry: ['src/*.ts'] }),
])