From 34fe56092193827ed42ea38341801d404e69baa7 Mon Sep 17 00:00:00 2001 From: benlesh Date: Sat, 13 Jan 2018 16:42:06 -0800 Subject: [PATCH] fix(build): properly output subdirectories like `rxjs/operators` The last alpha publish was missing appropriate references in the build script. This adds them back. --- tsconfig/tsconfig.base.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tsconfig/tsconfig.base.json b/tsconfig/tsconfig.base.json index a7d3c0211e..3971952f5d 100644 --- a/tsconfig/tsconfig.base.json +++ b/tsconfig/tsconfig.base.json @@ -2,6 +2,12 @@ "extends": "../tsconfig.json", "files": [ "../dist/src/Rx.ts", - "../dist/src/add/observable/of.ts" + "../dist/src/add/observable/of.ts", + "../dist/src/index.ts", + "../dist/src/operators/index.ts", + "../dist/src/create/index.ts", + "../dist/src/ajax/index.ts", + "../dist/src/websocket/index.ts", + "../dist/src/testing/index.ts" ] } \ No newline at end of file