fix(bazel): tsickle dependency not working with typescript 3.1.x (#27402)

`@angular/bazel` currently requires TypeScript 3.1.x as a peer dependency, but comes with `tsickle` as dependency. The current version of `tsickle` that is specified by `@angular/bazel` does not support TypeScript 3.1.x (which is a peer dependency) and therefore we need to make sure that `tsickle` works with the required TypeScript versions.

This change updates `tsickle` to the latest version that comes with b10fb6de0a in order to work with TypeScript 3.1.x.

PR Close #27402
This commit is contained in:
Paul Gschwendtner 2018-12-02 20:06:56 +01:00 committed by Alex Rickabaugh
parent b0c75611d6
commit f0341142b8
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
"@schematics/angular": "^7.0.4",
"@types/node": "6.0.84",
"shelljs": "0.8.2",
"tsickle": "0.32.1"
"tsickle": "0.34.0"
},
"peerDependencies": {
"@angular/compiler-cli": "0.0.0-PLACEHOLDER",