config-webpack
Version:
Plugin that makes node-config work with Webpack
18 lines • 508 B
JSON
{
"integer": 3,
"decimal": 2.71,
"string": "Hello",
"trueValue": true,
"falseValue": false,
"nullValue": null,
"array": [1, true, "three"],
"complexArray": [1, [-1, -2, [-3, { "value": -3.5 }], -4], { "answer": 42, "array": [{ "one": 1 }, 2, 3] }],
"object": {
"nestedInteger": 10,
"nestedString": "Nested",
"nestedObject": {
"doublyNestedNull": null,
"doublyNestedArray": [ { "deepObject": true, "deepArray": [7, 8, 9] }, 10.0, { "deepDecimal": 3.14 } ]
}
}
}