mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-19 00:55:13 +00:00
16 lines
322 B
TypeScript
16 lines
322 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig([
|
|
{
|
|
entry: [
|
|
'src/index.ts',
|
|
'src/icons.ts',
|
|
'src/types.ts',
|
|
'src/getIconStyle.ts',
|
|
'src/IconSources.ts',
|
|
'src/version.ts',
|
|
],
|
|
unbundle: true,
|
|
},
|
|
]);
|