Skip to content

Commit

Permalink
build: fix rxjs building error for closure (angular#4709)
Browse files Browse the repository at this point in the history
When testing against closure, RxJS will be re-compiled to target ES2015 modules.

The RxJS tsconfig file takes all `@types` that are installed and due to a recent update of the gulp types, building RxJS fails now.
  • Loading branch information
devversion authored and jelbourn committed May 22, 2017
1 parent 3a379b3 commit e2f67f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/closure-compiler/tsconfig-rxjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"module": "es2015",
"outDir": "../../dist/packages/rxjs",
"target": "es5",
"lib": ["es2015", "dom"]
"lib": ["es2015", "dom"],
"types": []
},
"files": [
"../../node_modules/rxjs/src/Rx.ts"
Expand Down

0 comments on commit e2f67f5

Please sign in to comment.