🦺 Update schema validation, disable strict for multi options

This commit is contained in:
Alicia Sykes 2024-04-28 15:05:53 +01:00
parent 29626ebb06
commit 27f10d76db
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const schema = require('../src/utils/ConfigSchema.json');
/* Tell AJV to use strict mode, and report all errors */
const validatorOptions = {
strict: true,
strict: false,
allowUnionTypes: true,
allErrors: true,
};