@ttoss/config 1.32.9 → 1.33.0

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/package.json +3 -3
  2. package/tsconfig.json +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/config",
3
- "version": "1.32.9",
3
+ "version": "1.33.0",
4
4
  "description": "Default configuration for packages.",
5
5
  "author": "ttoss",
6
6
  "contributors": [
@@ -37,11 +37,11 @@
37
37
  },
38
38
  "devDependencies": {
39
39
  "@jest/types": "^29.6.3",
40
- "@types/jest": "^29.5.12",
40
+ "@types/jest": "^29.5.13",
41
41
  "@types/node": "^20.16.1",
42
42
  "esbuild": "^0.23.1",
43
43
  "jest": "^29.7.0",
44
- "tsup": "^8.2.4"
44
+ "tsup": "^8.3.0"
45
45
  },
46
46
  "keywords": [],
47
47
  "publishConfig": {
package/tsconfig.json CHANGED
@@ -42,7 +42,14 @@
42
42
  * decorators in your application as we use with sequelize-typescript.
43
43
  */
44
44
  "experimentalDecorators": true,
45
- "emitDecoratorMetadata": true
45
+ "emitDecoratorMetadata": true,
46
+ /**
47
+ * Set `strictPropertyInitialization` to `true` to ensure that each instance
48
+ * property of a class gets initialized in the constructor body, or by a
49
+ * property initializer.
50
+ * https://chatgpt.com/share/66f55e86-c3ec-8002-bf29-ba18c3af3d0e
51
+ */
52
+ "strictPropertyInitialization": true
46
53
  },
47
54
  "exclude": ["tests"]
48
55
  }