declapract-typescript-ehmpathy 0.43.7 → 0.43.8

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.
@@ -12,7 +12,8 @@
12
12
  "!**/coverage",
13
13
  "!**/node_modules",
14
14
  "!**/.artifact",
15
- "!**/.generated/**"
15
+ "!**/.generated/**",
16
+ "!**/.test*/**"
16
17
  ]
17
18
  },
18
19
  "formatter": {
@@ -27,7 +28,13 @@
27
28
  "trailingCommas": "all"
28
29
  }
29
30
  },
30
- "assist": { "actions": { "source": { "organizeImports": "on" } } },
31
+ "assist": {
32
+ "actions": {
33
+ "source": {
34
+ "organizeImports": "on"
35
+ }
36
+ }
37
+ },
31
38
  "linter": {
32
39
  "enabled": true,
33
40
  "rules": {
@@ -36,13 +43,19 @@
36
43
  "noExcessiveCognitiveComplexity": "warn"
37
44
  },
38
45
  "correctness": {
39
- "noUnusedImports": { "level": "error", "fix": "safe" },
46
+ "noUnusedImports": {
47
+ "level": "error",
48
+ "fix": "safe"
49
+ },
40
50
  "noUnusedVariables": "warn",
41
51
  "useExhaustiveDependencies": "off"
42
52
  },
43
53
  "style": {
44
54
  "noDefaultExport": "error",
45
- "noNonNullAssertion": { "level": "warn", "fix": "none" },
55
+ "noNonNullAssertion": {
56
+ "level": "warn",
57
+ "fix": "none"
58
+ },
46
59
  "useImportType": "error",
47
60
  "noParameterAssign": "off"
48
61
  },
@@ -14,7 +14,9 @@
14
14
  "sourceMap": true,
15
15
  "outDir": "dist",
16
16
  "target": "es2020",
17
- "incremental": true
17
+ "incremental": true,
18
+ "module": "commonjs", // enable usage of esm modules without a strict boundary; todo, cutover to be esm native
19
+ "moduleResolution": "node"
18
20
  },
19
21
  "include": [
20
22
  "**/*.ts"
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "declapract-typescript-ehmpathy",
3
3
  "author": "ehmpathy",
4
4
  "description": "declapract best practices declarations for typescript",
5
- "version": "0.43.7",
5
+ "version": "0.43.8",
6
6
  "license": "MIT",
7
7
  "main": "src/index.js",
8
8
  "repository": "ehmpathy/declapract-typescript-ehmpathy",
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "chalk": "4.1.2",
45
- "domain-objects": "0.31.0",
45
+ "domain-objects": "0.31.3",
46
46
  "expect": "29.4.2",
47
47
  "flat": "5.0.2",
48
48
  "helpful-errors": "1.5.3",
@@ -61,8 +61,8 @@
61
61
  "@trivago/prettier-plugin-sort-imports": "4.3.0",
62
62
  "@tsconfig/node-lts-strictest": "18.12.1",
63
63
  "@types/flat": "5.0.2",
64
- "@types/node": "22.15.21",
65
64
  "@types/jest": "29.4.0",
65
+ "@types/node": "22.15.21",
66
66
  "@typescript-eslint/eslint-plugin": "7.8.0",
67
67
  "@typescript-eslint/parser": "7.8.0",
68
68
  "babel-jest": "30.2.0",