mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-22 02:23:30 +00:00
10 lines
164 B
TypeScript
10 lines
164 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig([
|
|
{
|
|
entry: ['src/index.ts'],
|
|
dts: true,
|
|
format: ['esm'],
|
|
},
|
|
]);
|