- Enable interpolation of all types of settings values, not just strings. For
example, the following now works as expected:
ITEMS = ["a", "b", "c"]
SOMETHING.x.y.z = {{ITEMS}}
`SOMETHING.x.y.z` will be equal to `["a", "b", "c"]` after interpolation.
Previously, this would cause an error when the settings file was parsed.