Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(build): build the broccoli tools with correct typescript version.
By default, gulp-typescript currently depends on typescript 1.4, which doesn't work for us. For example, it doesn't allow `let` when emitting ES5, along with lots of other errors. It so happens that npm sometimes makes this work, as seen by the warning ```npm WARN unmet dependency /Users/alexeagle/Projects/angular/node_modules/gulp-typescript requires typescript@'1.4.1' but will load npm WARN unmet dependency /Users/alexeagle/Projects/angular/node_modules/typescript, npm WARN unmet dependency which is version 1.5.0``` but when we update our node_modules in a certain way, we lose this setup and it breaks. We should be explicit about using a different version of typescript than gulp-typescript depends on.
- Loading branch information