@typescript-eslint/tsconfig-utils 8.60.1-alpha.4 → 8.60.1-alpha.6

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 (1) hide show
  1. package/package.json +8 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/tsconfig-utils",
3
- "version": "8.60.1-alpha.4",
3
+ "version": "8.60.1-alpha.6",
4
4
  "description": "Utilities for collecting TSConfigs for linting scenarios.",
5
5
  "files": [
6
6
  "dist",
@@ -39,6 +39,7 @@
39
39
  "typescript": ">=4.8.4 <6.1.0"
40
40
  },
41
41
  "devDependencies": {
42
+ "@typescript/native-preview": "7.0.0-dev.20260518.1",
42
43
  "@vitest/coverage-v8": "^4.0.18",
43
44
  "rimraf": "^5.0.10",
44
45
  "typescript": ">=4.8.4 <6.1.0",
@@ -55,7 +56,10 @@
55
56
  "name": "tsconfig-utils",
56
57
  "includedScripts": [
57
58
  "clean"
58
- ]
59
+ ],
60
+ "targets": {
61
+ "typecheck:tsgo": {}
62
+ }
59
63
  },
60
64
  "scripts": {
61
65
  "//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
@@ -64,6 +68,7 @@
64
68
  "format": "pnpm -w exec format",
65
69
  "lint": "pnpm -w exec nx lint",
66
70
  "test": "pnpm -w exec nx test",
67
- "typecheck": "pnpm -w exec nx typecheck"
71
+ "typecheck": "pnpm -w exec nx typecheck",
72
+ "typecheck:tsgo": "pnpm -w exec nx typecheck:tsgo"
68
73
  }
69
74
  }