mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-08 03:43:56 -05:00
* fix: update blob compressor lib + update dependencies + use tsup * fix: update dict path * fix: lockfile issue * fix: bump package json version
14 lines
261 B
TypeScript
14 lines
261 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
tsconfig: "tsconfig.build.json",
|
|
format: ["esm", "cjs"],
|
|
target: "esnext",
|
|
dts: true,
|
|
clean: true,
|
|
sourcemap: true,
|
|
minify: true,
|
|
outDir: "dist",
|
|
});
|