From 00e16d9ef314ae252ed7ecaf429097675a107352 Mon Sep 17 00:00:00 2001 From: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> Date: Fri, 1 Oct 2021 22:46:54 +0530 Subject: [PATCH] fix(beep): ensure types are exported in npm pkg (#969) * fix: add `types` directory in registry * fix: set typings value in package.json --- packages/beep/package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/beep/package.json b/packages/beep/package.json index 3f0562d7a..ad9e95ded 100644 --- a/packages/beep/package.json +++ b/packages/beep/package.json @@ -26,6 +26,7 @@ }, "files": [ "lib/", + "types/", "README.md", "LICENSE" ], @@ -41,6 +42,7 @@ "rollup": "^2.23.0", "strip-ansi": "^6.0.0" }, + "types": "types/index.d.ts", "ava": { "babel": { "compileEnhancements": false