break up library, move bots to their own repositories
This commit is contained in:
19
packages/discord/tsdown.config.ts
Normal file
19
packages/discord/tsdown.config.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { defineConfig } from 'tsdown';
|
||||
|
||||
export default defineConfig([
|
||||
{
|
||||
entry: [
|
||||
'./src/index.ts',
|
||||
'./src/commands/index.ts',
|
||||
'./src/components/index.ts',
|
||||
'./src/pages/index.ts',
|
||||
'./src/common/index.ts',
|
||||
],
|
||||
platform: 'node',
|
||||
dts: true,
|
||||
minify: false,
|
||||
sourcemap: true,
|
||||
unbundle: true,
|
||||
external: ['bun:sqlite', 'bun'],
|
||||
},
|
||||
]);
|
||||
Reference in New Issue
Block a user