Files
stats/packages/sdks/nextjs/tsup.config.ts
Carl-Gerhard Lindesvärd 2226cb463d wip
2024-08-09 23:00:38 +02:00

10 lines
246 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.tsx', 'server.ts'],
external: ['react', 'next'],
});