This test fails because the USE_BIG_DECIMAL_FOR_FLOATS feature is ignored and Double objects are stiill used.
@Test
public void testParseDecimals() throws Exception {
JSON json = JSON.builder()
.treeCodec(new JacksonJrsTreeCodec())
.enable(JSON.Feature.USE_BIG_DECIMAL_FOR_FLOATS)
.build();
String input = "[1.1]";
TreeNode node = json.treeFrom(input);
TreeNode elemNode = node.get(0);
assertTrue(elemNode instanceof JrsNumber);
assertTrue(((JrsNumber) elemNode).getValue() instanceof BigDecimal);
}