mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
import { createTsupConfig } from '../../tsup.config.js';
|
|
|
|
export default createTsupConfig({
|
|
entry: {
|
|
index: 'src/index.ts',
|
|
worker: 'src/strategies/sharding/worker.ts',
|
|
},
|
|
external: ['zlib-sync'],
|
|
});
|