Closed pe8ter closed 4 years ago
With strict typings enabled, consumers are forced to specify all fields for the Config object, even though configureInstaller(conf) already handles missing fields.
Config
configureInstaller(conf)
Right now I have to do this
DynamoDbLocal.configureInstaller({ installPath: '/path/to/my/tmp', downloadUrl: null });
when I should be able to do this
DynamoDbLocal.configureInstaller({ installPath: '/path/to/my/tmp' });
v0.0.31 published. Thanks!
v0.0.31
No prob. Thanks for the fast turnaround!
With strict typings enabled, consumers are forced to specify all fields for the
Config
object, even thoughconfigureInstaller(conf)
already handles missing fields.Right now I have to do this
when I should be able to do this