Skip to content
This repository was archived by the owner on Jan 19, 2019. It is now read-only.

Breaking: Support TypeScript 3.0 #504

Merged
merged 3 commits into from
Aug 6, 2018
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
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ And in your ESLint configuration file:

We will always endeavor to support the latest stable version of TypeScript.

The version of TypeScript currently supported by this parser is `~2.9.1`. This is reflected in the `devDependency` requirement within the package.json file, and it is what the tests will be run against. We have an open `peerDependency` requirement in order to allow for experimentation on newer/beta versions of TypeScript.
The version of TypeScript currently supported by this parser is `~3.0.1`. This is reflected in the `devDependency` requirement within the package.json file, and it is what the tests will be run against. We have an open `peerDependency` requirement in order to allow for experimentation on newer/beta versions of TypeScript.

If you use a non-supported version of TypeScript, the parser will log a warning to the console.

Expand All @@ -57,10 +57,11 @@ The vast majority of issues which are submitted here are not actually parsing bu
This is not ideal, but users need a place to be able to report those things, so it has become accepted that that will also be done in this repo.

Please check the current list of open and known issues and ensure the issue has not been reported before. When creating a new issue provide as much information about your environment as possible. This includes:
- ESLint Version
- TypeScript version
- The `typescript-eslint-parser` version
- ESLint config or rules and plugins currently enabled

- ESLint Version
- TypeScript version
- The `typescript-eslint-parser` version
- ESLint config or rules and plugins currently enabled

## Integration Tests

Expand Down Expand Up @@ -90,10 +91,10 @@ Issues and pull requests will be triaged and responded to as quickly as possible

## Build Commands

* `npm test` - run all linting and tests
* `npm run lint` - run all linting
* `npm run ast-alignment-tests` - run only Babylon AST alignment tests
* `npm run integration-tests` - run only integration tests
- `npm test` - run all linting and tests
- `npm run lint` - run all linting
- `npm run ast-alignment-tests` - run only Babylon AST alignment tests
- `npm run integration-tests` - run only integration tests

## License

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"npm-license": "0.3.3",
"shelljs": "0.8.2",
"shelljs-nodecli": "0.1.1",
"typescript": "~2.9.1"
"typescript": "~3.0.1"
},
"keywords": [
"ast",
Expand Down