🐛 fix invites: ajv doesn't treat null as undefined

This commit is contained in:
Flam3rboy
2021-09-13 00:00:11 +02:00
parent 33533fc183
commit e32bb24fa8
4 changed files with 266 additions and 333 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ const settings: TJS.PartialArgs = {
defaultProps: false
};
const compilerOptions: TJS.CompilerOptions = {
strictNullChecks: false
strictNullChecks: true
};
const ExcludedSchemas = ["DefaultSchema", "Schema", "EntitySchema"];