Skip to content

Commit 16d1a78

Browse files
authored
Breaking: Support TypeScript 3.0 (eslint#504)
1 parent 7461462 commit 16d1a78

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

README.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ And in your ESLint configuration file:
4040

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

43-
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.
43+
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.
4444

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

@@ -57,10 +57,11 @@ The vast majority of issues which are submitted here are not actually parsing bu
5757
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.
5858

5959
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:
60-
- ESLint Version
61-
- TypeScript version
62-
- The `typescript-eslint-parser` version
63-
- ESLint config or rules and plugins currently enabled
60+
61+
- ESLint Version
62+
- TypeScript version
63+
- The `typescript-eslint-parser` version
64+
- ESLint config or rules and plugins currently enabled
6465

6566
## Integration Tests
6667

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

9192
## Build Commands
9293

93-
* `npm test` - run all linting and tests
94-
* `npm run lint` - run all linting
95-
* `npm run ast-alignment-tests` - run only Babylon AST alignment tests
96-
* `npm run integration-tests` - run only integration tests
94+
- `npm test` - run all linting and tests
95+
- `npm run lint` - run all linting
96+
- `npm run ast-alignment-tests` - run only Babylon AST alignment tests
97+
- `npm run integration-tests` - run only integration tests
9798

9899
## License
99100

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"npm-license": "0.3.3",
3131
"shelljs": "0.8.2",
3232
"shelljs-nodecli": "0.1.1",
33-
"typescript": "~2.9.1"
33+
"typescript": "~3.0.1"
3434
},
3535
"keywords": [
3636
"ast",

0 commit comments

Comments
 (0)