mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 08:05:19 +00:00
14 lines
246 B
TypeScript
14 lines
246 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig([
|
|
{
|
|
entry: 'src/index.ts',
|
|
outDir: 'dist',
|
|
},
|
|
{
|
|
entry: 'src/react/index.ts',
|
|
outDir: 'dist/react',
|
|
unbundle: true,
|
|
},
|
|
]);
|