We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent def8f62 commit a7f2e7fCopy full SHA for a7f2e7f
packages/@angular/cli/tasks/eject.ts
@@ -286,8 +286,10 @@ class JsonWebpackSerializer {
286
}
287
288
private _resolveReplacer(value: any) {
289
+ this.variableImports['rxjs/_esm5/path-mapping'] = 'rxPaths';
290
return Object.assign({}, value, {
- modules: value.modules.map((x: string) => './' + path.relative(this._root, x))
291
+ modules: value.modules.map((x: string) => './' + path.relative(this._root, x)),
292
+ alias: this._escape('rxPaths()')
293
});
294
295
0 commit comments