From efdc327490e4773fba8aecb649deebaf9404617c Mon Sep 17 00:00:00 2001 From: Nathan Friedly Date: Mon, 25 May 2026 23:06:17 -0400 Subject: [PATCH] Change moduleResolution to 'nodenext' I think this is what we need to fix https://github.com/express-rate-limit/express-rate-limit/pull/635 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b8e100e..5630f3e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,6 @@ "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "esModuleInterop": true, - "moduleResolution": "node" + "moduleResolution": "nodenext" } }