An parser that converts TypeScript into an ESTree-compatible form so it can be used in ESLint.
Important: This parser is still in the very early stages and is considered experimental. There are likely a lot of bugs. You should not rely on this in a production environment yet.
Install:
npm i typescript-eslint-parser --save
And in your ESLint configuration file:
"parser": "typescript-eslint-parser"
If you're familiar with TypeScript and ESLint, and you'd like to see this project progress, please consider contributing. We need people with a good knowledge of TypeScript to ensure this parser is useful.
Issues and pull requests will be triaged and responded to as quickly as possible. We operate under the ESLint Contributor Guidelines, so please be sure to read them before contributing. If you're not sure where to dig in, check out the issues.
TypeScript ESLint Parser is licensed under a permissive BSD 2-clause license.
npm test
- run all linting and testsnpm run lint
- run all linting
- Phase 1: Full ES6 support, stripping out all TypeScript-specific syntax.
- Phase 2: Add JSX support.
- Phase 3: Add support for attaching comments.
- Phase 4: Add support for types.
- Phase 5: Add support for top-level TypeScript syntax.
The high-level goal is to have output that matches Espree v3.x.