chore: scaffold IdentityDB package tooling

This commit is contained in:
2026-05-11 10:41:48 +09:00
parent bf1495a4d0
commit cadc1b0733
8 changed files with 553 additions and 1 deletions

11
tsup.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['esm'],
dts: true,
sourcemap: true,
clean: true,
target: 'node20',
treeshake: true,
});