mon-entreprise/api/tsup.config.ts

15 lines
218 B
TypeScript
Raw Normal View History

import { defineConfig } from 'tsup'
export default defineConfig([
{
entry: {
index: 'serverless.ts',
},
format: ['cjs'],
target: 'es2020',
clean: true,
dts: true,
2022-05-23 08:28:21 +00:00
onSuccess: 'yarn postbuild',
},
])