chatgpt-web / service /tsup.config.ts
imseldrith's picture
Upload with huggingface_hub (#1)
3d83f0d
raw
history blame contribute delete
240 Bytes
import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['src/index.ts'],
outDir: 'build',
target: 'es2020',
format: ['cjs'],
splitting: false,
sourcemap: true,
minify: false,
shims: true,
dts: false,
})