From fb8d545e4b36c0fdb869447b34680741da822ce7 Mon Sep 17 00:00:00 2001 From: Hannah Issermann Date: Tue, 6 Feb 2024 09:17:19 +0100 Subject: [PATCH] fix(lib): wrong `types` file reference in lib `package.json` (#109) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Julien Déramond --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 52be2a0..9c15490 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "./dist/**/*" ], "main": "./dist/ods-charts.js", - "types": "./dist/ods-charts.d.js", + "types": "./dist/index.d.ts", "scripts": { "build": "webpack", "netlify": "npm run build ; cp -R dist docs/ ; npm run typedoc",