Package Exports
- typescript-eslint-parser
- typescript-eslint-parser/parser
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (typescript-eslint-parser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
TypeScript ESLint Parser (Experimental)
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.
Usage
Install:
npm i typescript-eslint-parser --save
And in your ESLint configuration file:
"parser": "typescript-eslint-parser"
Help Wanted!
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.
Contributing
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.
Build Commands
npm test
- run all linting and testsnpm run lint
- run all linting
Development Plan
- Phase 1: Full ES6 support, stripping out all TypeScript-specific syntax.
- Phase 2: Add support for attaching comments.
- Phase 3: Add JSX support.
- Phase 4: Add support for top-level TypeScript syntax.
- Phase 5: Add support for types.
The high-level goal is to have output that matches Espree v3.x.