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