sdk: add express sdk

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-03-31 15:19:03 +02:00
parent fdc035d321
commit edcc08e1df
6 changed files with 154 additions and 17 deletions

View File

@@ -0,0 +1,9 @@
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'],
});