@kitschpatrol/typescript-config 5.4.4 → 5.6.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.
package/bin/cli.js CHANGED
@@ -5138,7 +5138,7 @@ var Yargs = YargsFactory(esm_default);
5138
5138
  var yargs_default = Yargs;
5139
5139
 
5140
5140
  // ../../package.json
5141
- var version = "5.4.4";
5141
+ var version = "5.6.0";
5142
5142
 
5143
5143
  // ../../src/execa-utilities.ts
5144
5144
  function isErrorExecaError(error) {
@@ -5184,7 +5184,7 @@ function stringify(passedObj, options = {}) {
5184
5184
  ).slice(2, -3);
5185
5185
  const maxLength = indent === "" ? Infinity : options.maxLength === void 0 ? 80 : options.maxLength;
5186
5186
  let { replacer } = options;
5187
- return function _stringify(obj, currentIndent, reserved) {
5187
+ return (function _stringify(obj, currentIndent, reserved) {
5188
5188
  if (obj && typeof obj.toJSON === "function") {
5189
5189
  obj = obj.toJSON();
5190
5190
  }
@@ -5250,7 +5250,7 @@ ${currentIndent}`
5250
5250
  }
5251
5251
  }
5252
5252
  return string;
5253
- }(passedObj, "", 0);
5253
+ })(passedObj, "", 0);
5254
5254
  }
5255
5255
 
5256
5256
  // ../../src/json-utilities.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitschpatrol/typescript-config",
3
- "version": "5.4.4",
3
+ "version": "5.6.0",
4
4
  "description": "TypeScript configuration for @kitschpatrol/shared-config.",
5
5
  "keywords": [
6
6
  "shared-config",
@@ -41,14 +41,14 @@
41
41
  "cosmiconfig-typescript-loader": "^6.1.0",
42
42
  "execa": "^9.6.0",
43
43
  "find-workspaces": "^0.3.1",
44
- "fs-extra": "^11.3.0",
45
- "prettier": "^3.5.3"
44
+ "fs-extra": "^11.3.1",
45
+ "prettier": "^3.6.2"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "typescript": "^5.8.3"
49
49
  },
50
50
  "engines": {
51
- "node": ">=20.9.0"
51
+ "node": ">=20.19.0"
52
52
  },
53
53
  "publishConfig": {
54
54
  "access": "public"
@@ -18,6 +18,7 @@
18
18
  "noEmit": true,
19
19
  "forceConsistentCasingInFileNames": true,
20
20
  "isolatedModules": true,
21
+ "erasableSyntaxOnly": true,
21
22
  "skipLibCheck": true,
22
23
  "noErrorTruncation": true
23
24
  }