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"], }