@dsmrt/axiom-config 0.0.10 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -14,7 +14,7 @@ class ConfigContainer {
14
14
  this.aws = config.aws;
15
15
  this.prodEnvName ??= config.prodEnvName;
16
16
  for (const prop in config) {
17
- // @ts-ignore
17
+ // @ts-expect-error due to the interface being dynamic, we can't predict their properties
18
18
  this[prop] = config[prop];
19
19
  }
20
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dsmrt/axiom-config",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Config library for axiom cli",
5
5
  "main": "lib/index.js",
6
6
  "repository": {