2017-11-25 16 views
0

시스템 경로의 매핑 경로로 고심하고 있습니다.하위 디렉토리에 대한 SystemJS 패키지 구성 경로 맵

아래는 현재 구성입니다. 내가 @angular-redux/form/dist/source/connect/index.js

@angular-redux/form/dist/source/connect를 원하지만 그것은 내가 올바른지도를 작성 않을거야 아니면 내가 대신 메타를 이용해야 겠지 @angular-redux/form/dist/source/connect.js

에 지시 유지 ... 은 누군가가 나를 통해 걸을 수 ?

'use strict'; 
 
/** 
 
* System configuration for Angular samples 
 
* Adjust as necessary for your application needs. 
 
*/ 
 
(function() { 
 
    System.config({ 
 
    paths: { 
 
     // paths serve as alias 
 
     'npm:': '../node_modules/' 
 
    }, 
 
    // map tells the System loader where to look for things 
 
    map: { 
 
     "@angular-redux/form": "npm:@angular-redux/form" 
 
    }, 
 
    // packages tells the System loader how to load when no filename and/or no extension 
 
    packages: { 
 
     '@angular-redux/form': { 
 
     main: 'dist/source/index.js', 
 
     map: { 
 
      './connect': './connect/index.js', 
 
      './connect-array': './connect-array/index.js' 
 
     } 
 
     } 
 
    } 
 
    }); 
 
})(this);

답변

1

난 당신이 올바른 위치로 매핑 할 생각하지 않습니다.

는 매핑이 유사 뭔가 할 필요가

import '@angular-redux/form/dist/source/connect' 

있는 경우 :

'./dist/source/connect': './dist/source/connect/index.js', 
'./dist/source/connect-array': './dist/source/connect-array/index.js' 

당신이있는 경우

import '@angular-redux/form/connect' 

매핑이 유사 뭔가 할 필요가 :

'./connect': './dist/source/connect/index.js', 
'./connect-array': './dist/source/connect-array/index.js' 
+0

매력처럼 작동했습니다. 감사 –