mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
import { createTsupConfig } from '../../tsup.config.js';
|
|
|
|
export default createTsupConfig({
|
|
entry: ['src/index.ts', 'src/formatTag/index.ts', 'src/uploadDocumentation/index.ts'],
|
|
dts: false,
|
|
format: 'esm',
|
|
minify: 'terser',
|
|
});
|