mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-12 05:48:57 +00:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig([
|
|
{
|
|
entry: 'src/index.ts',
|
|
// One file per module, so consumers can deep-import past the barrel.
|
|
unbundle: true,
|
|
},
|
|
]);
|