UNPKG

@vsllabs/webgl-js

Version:

VSL-Labs Webgl implementation for translating text into 3D sign language

10 lines (9 loc) 212 B
import { defineConfig } from "tsup"; export default defineConfig({ format: ['cjs', 'esm'], entry: ['./src/index.ts'], dts: true, shims: true, skipNodeModulesBundle: true, clean: true, });