Parse {} in schemas as Type.Unknown(). Closes #50.
Type.Any() and Type.Unknown() produce {} in schemas. When {} was parsed, the unsupported schema error was thrown. Now {} is parsed to Type.Unknown() without an error.
Added test in parser.spec.ts, bumped version, and added changelog item.
Summary
Parse
{}
in schemas asType.Unknown()
. Closes #50.Type.Any()
andType.Unknown()
produce{}
in schemas. When{}
was parsed, the unsupported schema error was thrown. Now{}
is parsed toType.Unknown()
without an error.Added test in
parser.spec.ts
, bumped version, and added changelog item.