Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/packages/TypeScript_ESLint.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ This package exports the following:
| `configs` | [Shared ESLint (flat) configs](../users/Shared_Configurations.mdx) |
| `parser` | A re-export of [`@typescript-eslint/parser`](./Parser.mdx) |
| `plugin` | A re-export of [`@typescript-eslint/eslint-plugin`](./ESLint_Plugin.mdx) |
| `FlatConfig` | A re-export of the type from [`@typescript-eslint/utils`](./Utils.mdx) |

## Installation

Expand Down
2 changes: 2 additions & 0 deletions packages/typescript-eslint/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ import type {
import { config } from './config-helper';
import { getTSConfigRootDirFromStack } from './getTSConfigRootDirFromStack';

export type { FlatConfig } from '@typescript-eslint/utils/ts-eslint';

export const parser: CompatibleParser =
rawPlugin.parser as CompatibleParser satisfies FlatConfig.Parser;

Expand Down
Loading