From 8357a8890cc6dd66702af5ae8ccfb6b54590a35e Mon Sep 17 00:00:00 2001 From: Anton Tayanovskyy Date: Wed, 17 Jul 2024 13:04:13 -0400 Subject: [PATCH] skipLibCheck for examples/cluster (#1260) ### Proposed changes This change instructs TypeScript to avoid re-checking node_modules (dependencies) in the examples/cluster. ### Related issues (optional) This partially addresses https://github.com/pulumi/pulumi-eks/issues/1258 --- examples/cluster/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/cluster/tsconfig.json b/examples/cluster/tsconfig.json index 2ea71672d..79f95535c 100644 --- a/examples/cluster/tsconfig.json +++ b/examples/cluster/tsconfig.json @@ -16,7 +16,8 @@ "noImplicitAny": true, "noImplicitReturns": true, "forceConsistentCasingInFileNames": true, - "strictNullChecks": true + "strictNullChecks": true, + "skipLibCheck": true }, "files": [ "index.ts"