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);
매력처럼 작동했습니다. 감사 –