From 79f6c6a1f04952efc6fab09d0f8b4feff22aaa48 Mon Sep 17 00:00:00 2001 From: mshanemc Date: Thu, 5 Oct 2023 12:22:42 -0500 Subject: [PATCH] ci: match tsconfig for typedoc examples --- typedocExamples/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/typedocExamples/tsconfig.json b/typedocExamples/tsconfig.json index 17060ec47d..9901656c6a 100644 --- a/typedocExamples/tsconfig.json +++ b/typedocExamples/tsconfig.json @@ -4,6 +4,9 @@ "compilerOptions": { "noEmit": true, "skipLibCheck": true, - "resolveJsonModule": true + "resolveJsonModule": true, + "moduleResolution": "Node16", + "module": "Node16", + "esModuleInterop": true } }