UNPKG

lambert-w-function

Version:

An efficient JavaScript implementation for the Lambert W Function on the principial branch.

14 lines (12 loc) 272 B
import { defineConfig } from 'tsup' export default defineConfig({ entry: ['src/index.ts'], platform: 'neutral', minify: false, treeshake: true, splitting: false, sourcemap: false, clean: true, dts: true, outDir: 'dist' })