typescript fixes

This commit is contained in:
Anton Lavrenov
2023-09-09 16:39:57 -05:00
parent f6bcbb7c8f
commit 99334e197a
16 changed files with 71 additions and 63 deletions

View File

@@ -9,7 +9,14 @@
"moduleResolution": "node",
"declaration": true,
"removeComments": false,
"strictNullChecks": true,
"strict": true,
"noImplicitAny": false,
"noImplicitThis": false,
"useUnknownInCatchVariables": false,
// probably we would never enable this one
// because it's too strict, konva generates many functions on the runtime
"strictPropertyInitialization": false,
},
"include": ["./src/**/*.ts"]
}