From a3dceafe926d93c11cab07442bb22684b37e4385 Mon Sep 17 00:00:00 2001 From: "Pimm \"de Chinchilla\" Hogeling" Date: Fri, 20 Sep 2024 00:17:36 +0200 Subject: [PATCH] Change path of the types in package.json. It seems that the TypeScript compiler previously put the type definitions into dist/types/src, but now puts them in dist/types. This may have happened here: https://github.com/mollie/mollie-api-node/pull/360. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 44f82447..0accaf3c 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "main": "dist/mollie.cjs.js", "module": "dist/mollie.esm.js", "jsnext:main": "dist/mollie.esm.js", - "types": "dist/types/src/types.d.ts", + "types": "dist/types/types.d.ts", "engines": { "node": ">=8" },