Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 266 Bytes

SYSTEMJS.md

File metadata and controls

21 lines (16 loc) · 266 Bytes

SystemJS

In your system.config.js

Append to map

var map = {
    ...
    'ng2-search-filter': 'node_modules/ng2-search-filter'
}

and then add to packages

var packages = {
    ...
    'ng2-search-filter': { main: 'dist/index.js' }
}