Node.js   发布时间:2022-04-24  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了node.js – 在角度2中使用system.config.js文件有什么用?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_489_4@ var map,packages,var config是做什么的.并且还解释了map和package对象的所有配置属性.是否有可用配置的文档?

这是我的系统配置文件

/**
 * System configuration for Angular samples
 * Adjust as necessary for your application needs.
 */
(function (global) {
  System.config({
    paths: {
      // paths serve as alias
      'npm:': 'node_modules/'
    },// map tells the System loader where to look for things
    map: {
      // our app is within the app folder
      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.UR_797_11845@d.js',// other libraries
      'rxjs': 'npm:rxjs','angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js','fscopy': 'npm:fs-extra/lib/copy/index.js','file-system': 'npm:file-system/file-system.js'
    },// packages tells the System loader how to load when no filename and/or no extension
    packages: {
      app: {
        main: './main.js',defaultExtension: 'js'
      },rxjs: {
        defaultExtension: 'js'
      },fs: {
        defaultExtension: 'js'
      }
    }
  });
})(this);

解决方法

system.config.js允许加载使用TypeScript编译器编译的模块(节点模块).map指的是包含JavaScript代码的JS文件的模块名称.

大佬总结

以上是大佬教程为你收集整理的node.js – 在角度2中使用system.config.js文件有什么用?全部内容,希望文章能够帮你解决node.js – 在角度2中使用system.config.js文件有什么用?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。