mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
dts: true,
|
|
entryPoints: ['src/index.ts'],
|
|
format: ['esm', 'cjs'],
|
|
minify: true,
|
|
skipNodeModulesBundle: true,
|
|
sourcemap: true,
|
|
target: 'es2021',
|
|
});
|