Skip to content

WIP: feat: new ast for typescript 3.8 #1465

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@
"lint-staged": "^9.4.3",
"prettier": "^1.19.1",
"ts-jest": "^25.0.0",
"ts-node": "^8.5.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": ">=3.2.1 <3.8.0"
"typescript": "3.8.0-dev.20200211"
},
"resolutions": {
"typescript": "^3.7.2"
"typescript": "3.8.0-dev.20200211"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-plugin-tslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"peerDependencies": {
"eslint": "^5.0.0 || ^6.0.0",
"tslint": "^5.0.0",
"typescript": "*"
"typescript": "3.8.0-dev.20200211"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"chalk": "^3.0.0",
"marked": "^0.7.0",
"prettier": "*",
"typescript": "*"
"typescript": "3.8.0-dev.20200211"
},
"peerDependencies": {
"@typescript-eslint/parser": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/experimental-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"eslint": "*"
},
"devDependencies": {
"typescript": "*"
"typescript": "3.8.0-dev.20200211"
},
"funding": {
"type": "opencollective",
Expand Down
4 changes: 4 additions & 0 deletions packages/parser/tests/lib/__snapshots__/tsx.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ Object {
}
`;

exports[`TSX fixtures/generic-jsx-private.src 1`] = `"Identifier expected."`;

exports[`TSX fixtures/generic-jsx-private-element.src 1`] = `"Identifier expected."`;

exports[`TSX fixtures/react-typed-props.src 1`] = `
Object {
"$id": 7,
Expand Down
Loading