Files
stats/packages/sdks/express/tsup.config.ts
Carl-Gerhard Lindesvärd edcc08e1df sdk: add express sdk
2024-03-31 15:19:03 +02:00

10 lines
245 B
TypeScript

import { defineConfig } from 'tsup';
import config from '@openpanel/tsconfig/tsup.config.json' assert { type: 'json' };
export default defineConfig({
...(config as any),
entry: ['index.ts', 'cdn.ts'],
format: ['cjs', 'esm', 'iife'],
});