@ttoss/config 1.12.1 → 1.12.2

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.
package/dist/esm/index.js CHANGED
@@ -19,7 +19,10 @@ var defaultConfig = {
19
19
  idInterpolationPattern: "[sha512:contenthash:base64:6]",
20
20
  ast: true
21
21
  }
22
- ]
22
+ ],
23
+ ["@babel/plugin-proposal-class-properties", { loose: true }],
24
+ ["@babel/plugin-proposal-private-methods", { loose: true }],
25
+ ["@babel/plugin-proposal-private-property-in-object", { loose: true }]
23
26
  ]
24
27
  };
25
28
  var babelConfig = configCreator(defaultConfig);
package/dist/index.js CHANGED
@@ -52,7 +52,10 @@ var defaultConfig = {
52
52
  idInterpolationPattern: "[sha512:contenthash:base64:6]",
53
53
  ast: true
54
54
  }
55
- ]
55
+ ],
56
+ ["@babel/plugin-proposal-class-properties", { loose: true }],
57
+ ["@babel/plugin-proposal-private-methods", { loose: true }],
58
+ ["@babel/plugin-proposal-private-property-in-object", { loose: true }]
56
59
  ]
57
60
  };
58
61
  var babelConfig = configCreator(defaultConfig);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/config",
3
- "version": "1.12.1",
3
+ "version": "1.12.2",
4
4
  "description": "Default configuration for packages.",
5
5
  "license": "UNLICENSED",
6
6
  "publishConfig": {
@@ -40,7 +40,7 @@
40
40
  "identity-obj-proxy": "^3.0.0",
41
41
  "tsup": "^5.11.11"
42
42
  },
43
- "gitHead": "1236f19e0efc3ed37df87f1bbfd21776b6b5d697",
43
+ "gitHead": "da3750c7ee25f994a1fd647d48278fc46707257e",
44
44
  "devDependencies": {
45
45
  "@jest/types": "^27.4.2"
46
46
  }
package/src/babel.ts CHANGED
@@ -22,6 +22,9 @@ export const defaultConfig: any = {
22
22
  ast: true,
23
23
  },
24
24
  ],
25
+ ['@babel/plugin-proposal-class-properties', { loose: true }],
26
+ ['@babel/plugin-proposal-private-methods', { loose: true }],
27
+ ['@babel/plugin-proposal-private-property-in-object', { loose: true }],
25
28
  ],
26
29
  };
27
30