antonybudianto / angular-starter

:star: Gulp Angular Starter using TypeScript (Updated to 4.4.3)

Home Page:https://antonybudianto.github.io/angular-starter/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

import { filter } from 'lodash';

ShridharGowda opened this issue · comments

Issue Overview

import { filter } from 'lodash';
this line showing build error at @todolist/completed-filter.pipe.ts

Issue Description

Reproducables

<Please explain the way to reproduce your issue, or even better with Plunker link>

Information

Use import { filter } from '@types/lodash';

Please complete the issue template, cannot reproduce the issue

Btw you cannot do

import { filter } from '@types/lodash';

you're supposed to do it with

import { filter } from 'lodash';