From 360f272323e720fb79105afe9ae1f104ba8d19d7 Mon Sep 17 00:00:00 2001 From: Jack Hadrill Date: Mon, 31 Jan 2022 00:56:04 +0000 Subject: [PATCH] Update typings and build excludes --- package.json | 4 ++-- tsconfig.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 205b98e..e2664f0 100644 --- a/package.json +++ b/package.json @@ -2,8 +2,8 @@ "name": "romulus-js", "version": "1.0.0", "description": "An implementation of the Romulus-M cryptography specification.", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", + "main": "index.js", + "types": "index", "scripts": { "lint": "ts-standard", "test": "jest", diff --git a/tsconfig.json b/tsconfig.json index aabd87d..f48a496 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,7 @@ "declaration": true }, "exclude": [ - "./tests/**/*", - "./dist/**/*" + "tests", + "dist" ] }