Skip to content

Commit e2f67f5

Browse files
devversionjelbourn
authored andcommitted
build: fix rxjs building error for closure (#4709)
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.
1 parent 3a379b3 commit e2f67f5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/closure-compiler/tsconfig-rxjs.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"module": "es2015",
44
"outDir": "../../dist/packages/rxjs",
55
"target": "es5",
6-
"lib": ["es2015", "dom"]
6+
"lib": ["es2015", "dom"],
7+
"types": []
78
},
89
"files": [
910
"../../node_modules/rxjs/src/Rx.ts"

0 commit comments

Comments
 (0)