From 0b46083360d256011cf340a5eda038689a2fadff Mon Sep 17 00:00:00 2001 From: Phil Date: Sat, 13 Apr 2024 22:40:15 -0700 Subject: [PATCH] Update exports and fix config --- package.json | 4 ++-- tsconfig.json | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 583d9cf..b4c3827 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "boring-vault-ui", - "version": "1.0.0", + "version": "1.0.1", "description": "A reusable package to quickly integrate boring vaults onto a UI.", - "main": "index.tsx", + "main": "dist/index.js", "scripts": { "build": "tsup", "test": "jest", diff --git a/tsconfig.json b/tsconfig.json index 1c114a9..c497334 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,5 +15,7 @@ "noEmit": true, "jsx": "react-jsx" }, - "include": ["src/**/*", "tests/**/*"] + "include": ["src/**/*", "tests/**/*"], + "exclude": ["node_modules"], + "files": ["dist/**/*"], }