From 0080976feb0c2b1541f37c51e3c4ca49d0299c6c Mon Sep 17 00:00:00 2001 From: Dan Gowans Date: Wed, 24 Aug 2022 15:41:53 -0400 Subject: [PATCH] ignore node_modules --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 4d72b874..5d3ba08e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,8 @@ "allowUnreachableCode": false, "allowSyntheticDefaultImports": true, "resolveJsonModule": true, - "esModuleInterop": true + "esModuleInterop": true, + "skipLibCheck": true }, "compileOnSave": true, "buildOnSave": true, @@ -31,6 +32,7 @@ "placeOpenBraceOnNewLineForControlBlocks": false }, "exclude": [ + "node_modules/*", "public-typescript/*" ] }