From 2b9c43471a55a3551d2df04ec34e0f3335a00e35 Mon Sep 17 00:00:00 2001 From: Zhimin YE Date: Thu, 27 Oct 2016 16:53:40 +0100 Subject: [PATCH] fix: #105 --- public/docs/_examples/quickstart/ts/systemjs.config.1.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/public/docs/_examples/quickstart/ts/systemjs.config.1.js b/public/docs/_examples/quickstart/ts/systemjs.config.1.js index 0ef2c50f4e..afe873791d 100644 --- a/public/docs/_examples/quickstart/ts/systemjs.config.1.js +++ b/public/docs/_examples/quickstart/ts/systemjs.config.1.js @@ -26,7 +26,7 @@ // other libraries 'rxjs': 'npm:rxjs', - 'angular-in-memory-web-api': 'npm:angular-in-memory-web-api', + 'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js', }, // packages tells the System loader how to load when no filename and/or no extension packages: { @@ -36,10 +36,6 @@ }, rxjs: { defaultExtension: 'js' - }, - 'angular-in-memory-web-api': { - main: './index.js', - defaultExtension: 'js' } } });