UNPKG

numerical-methods

Version:

A library that I made while studying Computer Science at UFPB. Documentation's available through TypeScript.

13 lines (11 loc) 229 B
import type { Options } from "tsup"; export const tsup: Options = { clean: true, entry: ["src/**/*.ts"], dts: true, format: ["cjs", "esm"], minify: true, outDir: "dist", skipNodeModulesBundle: true, target: "node18", };