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