Files
stats/packages/sdk-next/tsup.config.ts
Carl-Gerhard Lindesvärd 9c92803c4c a looooot
2024-02-22 21:50:30 +01:00

10 lines
223 B
TypeScript

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