Skip to content

Commit

Permalink
Disable schema strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamscached committed Mar 29, 2024
1 parent 20e533c commit 0673417
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ import { readFile } from "fs/promises";
import Ajv from "ajv";

const ajv = new Ajv({
allowMatchingProperties: true,
allowUnionTypes: true,
allErrors: true,
allowMatchingProperties: true
strict: false
});

async function compileSchemaJson(name) {
Expand Down

0 comments on commit 0673417

Please sign in to comment.