diff --git a/packages/http/testing/public_api.ts b/packages/http/testing/public_api.ts new file mode 100644 index 0000000000..886eaecbc9 --- /dev/null +++ b/packages/http/testing/public_api.ts @@ -0,0 +1,14 @@ +/** + * @license + * Copyright Google Inc. All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ + +/** + * @module + * @description + * Entry point for all public APIs of the http testing package. + */ +export * from './src/testing'; diff --git a/packages/http/testing/tsconfig-build.json b/packages/http/testing/tsconfig-build.json index 2b7421fa40..7a18d963dc 100644 --- a/packages/http/testing/tsconfig-build.json +++ b/packages/http/testing/tsconfig-build.json @@ -8,9 +8,12 @@ } }, "files": [ - "index.ts" + "public_api.ts" ], "angularCompilerOptions": { - "strictMetadataEmit": true + "annotateForClosureCompiler": true, + "strictMetadataEmit": true, + "flatModuleOutFile": "index.js", + "flatModuleId": "@angular/http/testing" } }