From 391a7eced5ca9dc31f1e203d1fb5056e20551696 Mon Sep 17 00:00:00 2001 From: Niranjan Jayakar <16217941+nija-at@users.noreply.github.com> Date: Thu, 10 Oct 2019 16:03:54 +0100 Subject: [PATCH] fix(jsii): Correct the 'types' attribute in package.json (#876) index.ts is not part of the tarball. Switch to the declaration file instead. --- packages/jsii/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/jsii/package.json b/packages/jsii/package.json index 11a0ccc800..560994285b 100644 --- a/packages/jsii/package.json +++ b/packages/jsii/package.json @@ -20,7 +20,7 @@ "node": ">= 10.3.0" }, "main": "lib/index.js", - "types": "lib/index.ts", + "types": "lib/index.d.ts", "bin": { "jsii": "bin/jsii" },