From 70f57d2a95de438fcc367b60b53cfe1708e88c3e Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Wed, 15 May 2024 13:45:07 -0500 Subject: [PATCH] ignore node_modules in ts --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index a9c5df04c..da4622615 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,9 +14,11 @@ "noImplicitAny": false, "noImplicitThis": false, "useUnknownInCatchVariables": false, + "skipLibCheck": true, // probably we would never enable this one // because it's too strict, konva generates many functions on the runtime "strictPropertyInitialization": false, + }, - "include": ["./src/**/*.ts"] + "include": ["./src/**/*.ts"], }