tsup/tsup.config.ts
2023-10-16 12:39:54 +00:00

13 lines
333 B
TypeScript

import { defineConfig } from 'tsup'
export default defineConfig({
name: 'tsup',
target: 'node18',
dts: {
resolve: true,
// build types for `src/index.ts` only
// otherwise `Options` will not be exported by `tsup`, not sure how this happens, probably a bug in rollup-plugin-dts
entry: './src/index.ts',
},
})