我正在尝试在我的代码中使用外部模块,我已经按照指示但似乎无法获得任何地方,因为它似乎无法找到模块。 我只是使用带有我的模块的system.js文件的标准Angular2设置。我已经使用ng2-bootstrap这是一个外部模块。这里的区别在于它有一个.js文件,而这个扩展名没有。它只是打字稿文件。
扩展名为:https://www.npmjs.com/package/ng2-money-mask
这是我的system.config.js文件:
app: 'app',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
// other libraries
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
'core-js-shim': 'npm:core-js/client/shim.min.js',
'zone': 'npm:zone.js/dist/zone.js',
'reflect': 'npm:reflect-metadata/Reflect.js',
'ng2-http-interceptor': 'npm:ng2-http-interceptor/dist/http/http-interceptor.js',
'lodash' : 'node_modules/lodash/lodash.js',
'moment': 'node_modules/moment/moment.js',
'ng2-bootstrap': 'node_modules/ng2-bootstrap/bundles/ng2-bootstrap.umd.min.js'