From 0635e0e04115c0a5794870f4700442fb0cac55c3 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 30 Jun 2022 19:59:20 +0000 Subject: [PATCH] [TS] Explicitly include `index.d.mts` (and `.mjs`) in package As apparently npm doesn't include it just because its listed in `types`. --- ts/package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/package.json b/ts/package.json index 907a0d4e..28cde247 100644 --- a/ts/package.json +++ b/ts/package.json @@ -15,6 +15,8 @@ "enums/*.d.mts", "bindings.mjs", "bindings.d.mts", + "index.mjs", + "index.d.mts", "version.mjs", "liblightningjs.wasm", "tsconfig.json", -- 2.39.5