cloud-take-home-assignment-2/tsup.config.ts

11 lines
213 B
TypeScript
Raw Permalink Normal View History

2024-05-10 13:03:05 +00:00
import { defineConfig } from 'tsup';
export default defineConfig(() => ({
format: ['cjs'],
splitting: false,
sourcemap: true,
clean: true,
external: [/@aws-sdk\/.*$/],
entry: ['./src/index.ts'],
}));