Files
stats/packages/sdks/nextjs/tsup.config.ts
Carl-Gerhard Lindesvärd 84a734dd9b Revert "wip build nextjs 13"
This reverts commit 48ff1004f3.
2024-03-13 15:53:48 +01:00

10 lines
228 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'],
format: ['cjs', 'esm'],
});