From 30f5efafc7f0387f83342fce1f3d88f3de11dd51 Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Thu, 30 Mar 2023 20:54:13 +0100 Subject: [PATCH] fix: types location (#491) `test` was added to the `tsconfig.json` at some point and the types output started to include the `test` directory instead of just the contents of `src`. --- packages/keyring-core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/keyring-core/package.json b/packages/keyring-core/package.json index 0ca8ea7b..2b3b59cd 100644 --- a/packages/keyring-core/package.json +++ b/packages/keyring-core/package.json @@ -8,7 +8,7 @@ "module": "build/esm/index.js", "main": "build/cjs/index.js", "browser": "build/umd/index.production.js", - "types": "build/types/index.d.ts" + "types": "build/types/src/index.d.ts" }, "scripts": { "compile": "../../node_modules/.bin/tsc -p tsconfig.json --noEmit --emitDeclarationOnly false",