At the moment, loopback-boot does not support non-value types like arrays or objects in .local.json and .js config files.
The reason for that is with non-value types, there are multiple possible operations that one may want to perform:
- override the whole value, replace one object/array with another
- override the item at a given index in an array or replace the value of the given key in an object
- add items to an array or key/values to an object
- remove items from an array or delete key/values from an object
We should come up with a solution flexible enough to support most of these use-cases. Note that they are recursive, e.g. one may want to override the object value of the ssl key in object stored under the transport key.
At the moment, loopback-boot does not support non-value types like arrays or objects in
.local.jsonand.jsconfig files.The reason for that is with non-value types, there are multiple possible operations that one may want to perform:
We should come up with a solution flexible enough to support most of these use-cases. Note that they are recursive, e.g. one may want to override the object value of the
sslkey in object stored under thetransportkey.