mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-02-14 00:45:24 +00:00
14 lines
240 B
TypeScript
14 lines
240 B
TypeScript
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,
|
|
})
|