@pobammer-ts/eslint-cease-nonsense-rules 1.4.1 → 1.4.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.
@@ -25,6 +25,7 @@ interface VariableLike {
25
25
  readonly defs: ReadonlyArray<VariableDefinitionLike>;
26
26
  }
27
27
  interface CaptureInfo {
28
+ readonly forceDependency: boolean;
28
29
  readonly name: string;
29
30
  readonly node: TSESTree.Node;
30
31
  readonly usagePath: string;
package/package.json CHANGED
@@ -70,7 +70,7 @@
70
70
  "prepare": "bun x --bun simple-git-hooks",
71
71
  "prepublishOnly": "bun run build",
72
72
  "release": "bumpp",
73
- "typecheck": "bun x --bun tsgo --noEmit",
73
+ "typecheck": "bun x --bun tsgo --noEmit || bun run typecheck:safe",
74
74
  "typecheck:safe": "bun x --bun tsc --noEmit"
75
75
  },
76
76
  "sideEffects": false,
@@ -79,5 +79,5 @@
79
79
  },
80
80
  "type": "module",
81
81
  "types": "./dist/index.d.ts",
82
- "version": "1.4.1"
82
+ "version": "1.4.2"
83
83
  }