I wrote component that is using a pipe in angular 2. Now I am trying to downgrade the component to be used in my angular 1.5:
angular.module('myApp')
.directive('Item', downgradeComponent({component: ItemComponent, inputs: ['item'], outputs: ['onTagRemoved'] }) as angular.IDirectiveFactory);
The template of my ItemComponent
is using a new pipe. While downgrade I get error message about that pipe.
systemjs.import error: Error: (SystemJS) Can't resolve all parameters for tagPipe: (?).
Do I need to downgrade the pipe to? How? Didn't find anything while search for pipes downgrade.