From 670dbc07239fb860961055eb7af6823786e4febe Mon Sep 17 00:00:00 2001 From: Asko Nõmm Date: Wed, 12 Feb 2025 00:44:57 +0200 Subject: Refactor to use Effect. --- tsup.config.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'tsup.config.ts') diff --git a/tsup.config.ts b/tsup.config.ts index 76a9a74..ca2b9c0 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -1,8 +1,10 @@ -import {defineConfig} from "tsup"; +import { defineConfig } from "tsup"; export default defineConfig({ - entry: ["src/index.ts"], - clean: true, - format: ["cjs", "esm"], - dts: true -}) \ No newline at end of file + entry: ["src/flatmatter.ts"], + clean: true, + format: ["cjs", "esm"], + dts: true, + treeshake: "smallest", + sourcemap: true, +}); -- cgit v1.2.3