Angular2 projemde crypto-j'leri içe aktarmaya çalışıyorum.Bir açısal 2 projesinde crypto-js içe aktar (açısal-cli ile oluşturulmuş)
Birkaç SO soru ve ayrıca angular-cli guide takip etti, ama sonunda yine 'kripto-js'
Denedim Ne modül bulunamıyor hatası var:
npm install crypto-js --save
ve
typings install dt~crypto-js --global --save
sonra açısal cli-build.js
var Angular2App = require('angular-cli/lib/broccoli/angular2-app');
module.exports = function(defaults) {
return new Angular2App(defaults, {
vendorNpmFiles: [
'systemjs/dist/system-polyfills.js',
'systemjs/dist/system.src.js',
'zone.js/dist/**/*.+(js|js.map)',
'es6-shim/es6-shim.js',
'reflect-metadata/**/*.+(ts|js|js.map)',
'rxjs/**/*.+(js|js.map)',
'@angular/**/*.+(js|js.map)',
'crypto-js/**/*.+(js|js.map)'
]
});
};
ve dosya src/sistem config.ts
const map: any = {
'crypto-js': 'vendor/crypto-js'
};
/** User packages configuration. */
const packages: any = {
'crypto-js': {
format: 'cjs'
}
};
import * as CryptoJS from 'crypto-js';
Hala hatam var. Bir şey mi kaçırdım ?
Teşekkür
Bu bağlantı işe yaramıyor ... [link] (https://github.com/DefinitelyTyped/DefinitelyTyped/tree/4869992bc079b88280b9ff91213528904109e8ae/crypto-js) kullandı ve şu dosyaları ekledim: node_modules/crypto-js sonra sınıfım içe aktarılır: içe aktarma * içe aktarma * olarak CryptoJS'den '../../../node_modules/crypto-js' – antonio