mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
14 lines
296 B
TypeScript
14 lines
296 B
TypeScript
import { createTsupConfig } from '../../tsup.config.js';
|
|
|
|
export default [
|
|
createTsupConfig({
|
|
entry: ['src/index.ts', 'bin/generateSplitDocumentation.ts'],
|
|
minify: 'terser',
|
|
}),
|
|
createTsupConfig({
|
|
entry: ['src/populateDevDatabaseBranch.ts'],
|
|
format: 'esm',
|
|
minify: 'terser',
|
|
}),
|
|
];
|