tsup/tsup.config.ts
2023-06-26 00:32:18 +08:00

13 lines
336 B
TypeScript

import { defineConfig } from 'tsup'
export default defineConfig({
name: 'tsup',
target: 'node16.14',
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',
},
})