Skip to content

Commit

Permalink
fix(package.json): limit to supported TS versions
Browse files Browse the repository at this point in the history
Constrain the allowed versions of `typescript` to a maximum of `2.2.x`.

Since the supported versions of typescript [maxes out at 2.2] (1), this
package should not express support for higher versions of the package
(i.e. if typescript v2.3.0 were to exist, there would be a repeat of

1: https://github.com/mgechev/codelyzer/blob/28059b141c77dd6808bc748ea86285805af17f1e/src/util/syntaxKind.ts#L2806-L2809

related to mgechev#149
  • Loading branch information
Jon Wolski committed Feb 21, 2017
1 parent 0cacf41 commit 7da3686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"rxjs": "5.0.1",
"ts-node": "1.2.2",
"tslint": "^4.0.0",
"typescript": "^2.1.4",
"typescript": "2.1.4 - 2.2",
"zone.js": "^0.7.2"
},
"peerDependencies": {
Expand Down

0 comments on commit 7da3686

Please sign in to comment.