From df685b1bd9ad346ee7863beb6c3ca3f4e94932a2 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Sat, 22 Apr 2023 18:53:35 +0900 Subject: [PATCH] Support transitive dependants that use non-node16 moduleResolution (#3920). --- tsconfig.types.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.types.json b/tsconfig.types.json index b4efdc9560..018c522c0b 100644 --- a/tsconfig.types.json +++ b/tsconfig.types.json @@ -8,6 +8,7 @@ "declaration": true, "declarationMap": true, "declarationDir": "./types", - "emitDeclarationOnly": true + "emitDeclarationOnly": true, + "moduleResolution": "node" } }