Initial commit
This commit is contained in:
25
packages/lib/tsdown.config.ts
Normal file
25
packages/lib/tsdown.config.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { defineConfig } from 'tsdown';
|
||||
|
||||
export default defineConfig([
|
||||
{
|
||||
entry: [
|
||||
'./src/util/**/*.ts',
|
||||
'!./src/util/**/*.test.ts',
|
||||
'./src/eve/**/*.ts',
|
||||
'!./src/eve/**/*.test.ts',
|
||||
'./src/discord/index.ts',
|
||||
'./src/discord/commands/index.ts',
|
||||
'./src/discord/components/index.ts',
|
||||
'./src/discord/pages/index.ts',
|
||||
'./src/discord/common/index.ts',
|
||||
'./src/discord/jsx/index.ts',
|
||||
'./src/discord/jsx/jsx-runtime.ts',
|
||||
'./src/discord/jsx/jsx-dev-runtime.ts',
|
||||
],
|
||||
platform: 'node',
|
||||
dts: true,
|
||||
minify: false,
|
||||
mangle: false,
|
||||
external: ['bun:sqlite', 'bun'],
|
||||
},
|
||||
]);
|
||||
Reference in New Issue
Block a user