typescript-eslint 8.59.4-alpha.6 → 8.59.4-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 (2) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/package.json +5 -5
package/dist/index.d.ts CHANGED
@@ -152,3 +152,4 @@ declare const _default: {
152
152
  };
153
153
  export default _default;
154
154
  export { config, type ConfigWithExtends, type InfiniteDepthConfigWithExtends, type ConfigArray, } from './config-helper';
155
+ export type { CompatibleConfig, CompatibleConfigArray, CompatibleParser, CompatiblePlugin, } from './compatibility-types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-eslint",
3
- "version": "8.59.4-alpha.6",
3
+ "version": "8.59.4-alpha.7",
4
4
  "description": "Tooling which enables you to use TypeScript with ESLint",
5
5
  "files": [
6
6
  "dist",
@@ -42,10 +42,10 @@
42
42
  "eslint-plugin"
43
43
  ],
44
44
  "dependencies": {
45
- "@typescript-eslint/typescript-estree": "8.59.4-alpha.6",
46
- "@typescript-eslint/utils": "8.59.4-alpha.6",
47
- "@typescript-eslint/eslint-plugin": "8.59.4-alpha.6",
48
- "@typescript-eslint/parser": "8.59.4-alpha.6"
45
+ "@typescript-eslint/parser": "8.59.4-alpha.7",
46
+ "@typescript-eslint/typescript-estree": "8.59.4-alpha.7",
47
+ "@typescript-eslint/eslint-plugin": "8.59.4-alpha.7",
48
+ "@typescript-eslint/utils": "8.59.4-alpha.7"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",