discord.js/tsup.config.ts

41 lines
674 B
TypeScript
Raw Normal View History

2023-04-15 03:11:12 +12:00
import type { Options } from 'tsup';
import { defineConfig } from 'tsup';
export function createTsupConfig({
entry = ['src/index.ts'],
external = [],
noExternal = [],
platform = 'node',
format = ['esm', 'cjs'],
target = 'es2022',
skipNodeModulesBundle = true,
clean = true,
shims = true,
minify = false,
splitting = false,
keepNames = true,
dts = true,
sourcemap = true,
esbuildPlugins = [],
2023-08-22 10:30:08 +12:00
treeshake = false,
2023-04-15 03:11:12 +12:00
}: Options = {}) {
return defineConfig({
entry,
external,
noExternal,
platform,
format,
skipNodeModulesBundle,
target,
clean,
shims,
minify,
splitting,
keepNames,
dts,
sourcemap,
esbuildPlugins,
2023-08-22 10:30:08 +12:00
treeshake,
});
}