Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

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' }
}