@effected/tsconfig-json 0.4.1 → 0.5.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/TsconfigJson.js CHANGED
@@ -107,7 +107,7 @@ const TsconfigJsonFromString = Jsonc.schema(TsconfigJson);
107
107
  *
108
108
  * @public
109
109
  */
110
- var TsconfigParseError = class extends Schema.TaggedErrorClass()("TsconfigParseError", {
110
+ var TsconfigParseError = class extends Schema.TaggedError()("TsconfigParseError", {
111
111
  /** The file path that failed to parse, or `""` when not file-bound. */
112
112
  path: Schema.String,
113
113
  /** The underlying decode failure. */
package/TsconfigLoader.js CHANGED
@@ -21,7 +21,7 @@ const MAX_EXTENDS_DEPTH = 32;
21
21
  *
22
22
  * @public
23
23
  */
24
- var TsconfigExtendsError = class extends Schema.TaggedErrorClass()("TsconfigExtendsError", {
24
+ var TsconfigExtendsError = class extends Schema.TaggedError()("TsconfigExtendsError", {
25
25
  /** The config whose `extends` could not be resolved. */
26
26
  path: Schema.String,
27
27
  /** The target that failed: the spec, the re-entered path, or the refused path. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effected/tsconfig-json",
3
- "version": "0.4.1",
3
+ "version": "0.5.0",
4
4
  "private": false,
5
5
  "description": "Composable tsconfig.json handling for Effect: schemas, extends-chain resolution, and config discovery.",
6
6
  "keywords": [
@@ -39,9 +39,9 @@
39
39
  "./package.json": "./package.json"
40
40
  },
41
41
  "peerDependencies": {
42
- "@effected/jsonc": "^0.5.2",
43
- "@effected/walker": "^0.3.4",
44
- "effect": "4.0.0-beta.101"
42
+ "@effected/jsonc": "^0.6.0",
43
+ "@effected/walker": "^0.4.0",
44
+ "effect": "4.0.0-beta.107"
45
45
  },
46
46
  "engines": {
47
47
  "node": ">=24.11.0"