@typescript-eslint/typescript-estree 8.69.1-alpha.0 → 8.70.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.
@@ -19,7 +19,7 @@ function getErrorStart(describedFilePath, parseSettings) {
19
19
  const describedPrograms = relativeProjects.length === 1
20
20
  ? ` ${relativeProjects[0]}`
21
21
  : `\n${relativeProjects.map(project => `- ${project}`).join('\n')}`;
22
- return `ESLint was configured to run on \`${describedFilePath}\` using \`parserOptions.project\`:${describedPrograms}`;
22
+ return `ESLint was configured to lint \`${describedFilePath}\` with type information from \`parserOptions.project\`:${describedPrograms}`;
23
23
  }
24
24
  function getErrorDetails(describedFilePath, parseSettings, programsForProjects) {
25
25
  if (programsForProjects.length === 1 &&
@@ -65,7 +65,7 @@ function getErrorDetails(describedFilePath, parseSettings, programsForProjects)
65
65
  : ['none of those TSConfigs', 'one of those TSConfigs'];
66
66
  return [
67
67
  ...details,
68
- `However, ${describedInclusions} include this file. Either:`,
68
+ `However, ${describedInclusions} include this file, so type information is not available for it. Either:`,
69
69
  `- Change ESLint's list of included files to not include this file`,
70
70
  `- Change ${describedSpecifiers} to include this file`,
71
71
  `- Create a new TSConfig that includes this file and include it in your parserOptions.project`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/typescript-estree",
3
- "version": "8.69.1-alpha.0",
3
+ "version": "8.70.0",
4
4
  "description": "A parser that converts TypeScript source code into an ESTree compatible form",
5
5
  "files": [
6
6
  "dist",
@@ -43,10 +43,10 @@
43
43
  "syntax"
44
44
  ],
45
45
  "dependencies": {
46
- "@typescript-eslint/project-service": "8.69.1-alpha.0",
47
- "@typescript-eslint/tsconfig-utils": "8.69.1-alpha.0",
48
- "@typescript-eslint/types": "8.69.1-alpha.0",
49
- "@typescript-eslint/visitor-keys": "8.69.1-alpha.0",
46
+ "@typescript-eslint/project-service": "8.70.0",
47
+ "@typescript-eslint/tsconfig-utils": "8.70.0",
48
+ "@typescript-eslint/types": "8.70.0",
49
+ "@typescript-eslint/visitor-keys": "8.70.0",
50
50
  "debug": "^4.4.3",
51
51
  "minimatch": "^10.2.2",
52
52
  "semver": "^7.7.3",