@typescript-eslint/utils 8.60.1-alpha.5 → 8.60.1-alpha.7

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 +13 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/utils",
3
- "version": "8.60.1-alpha.5",
3
+ "version": "8.60.1-alpha.7",
4
4
  "description": "Utilities for working with TypeScript + ESLint together",
5
5
  "files": [
6
6
  "dist",
@@ -54,15 +54,16 @@
54
54
  ],
55
55
  "dependencies": {
56
56
  "@eslint-community/eslint-utils": "^4.9.1",
57
- "@typescript-eslint/typescript-estree": "8.60.1-alpha.5",
58
- "@typescript-eslint/types": "8.60.1-alpha.5",
59
- "@typescript-eslint/scope-manager": "8.60.1-alpha.5"
57
+ "@typescript-eslint/scope-manager": "8.60.1-alpha.7",
58
+ "@typescript-eslint/typescript-estree": "8.60.1-alpha.7",
59
+ "@typescript-eslint/types": "8.60.1-alpha.7"
60
60
  },
61
61
  "peerDependencies": {
62
62
  "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
63
63
  "typescript": ">=4.8.4 <6.1.0"
64
64
  },
65
65
  "devDependencies": {
66
+ "@typescript/native-preview": "7.0.0-dev.20260518.1",
66
67
  "@vitest/coverage-v8": "^4.0.18",
67
68
  "eslint": "^10.0.0",
68
69
  "rimraf": "^5.0.10",
@@ -88,6 +89,12 @@
88
89
  "{projectRoot}/dist"
89
90
  ]
90
91
  },
92
+ "typecheck:tsgo": {
93
+ "outputs": [
94
+ "{workspaceRoot}/dist",
95
+ "{projectRoot}/dist"
96
+ ]
97
+ },
91
98
  "test": {
92
99
  "dependsOn": [
93
100
  "^build",
@@ -102,6 +109,7 @@
102
109
  "format": "pnpm -w run format",
103
110
  "lint": "pnpm -w exec nx lint",
104
111
  "test": "pnpm -w exec nx test",
105
- "typecheck": "pnpm -w exec nx typecheck"
112
+ "typecheck": "pnpm -w exec nx typecheck",
113
+ "typecheck:tsgo": "pnpm -w exec nx typecheck:tsgo"
106
114
  }
107
115
  }