For me it worked after importing the locale, as mentioned by Marcelo Vieira das Neves.
- Import locale in your module:
import { LOCALE_ID } from '@angular/core';
providers: [{provide: LOCALE_ID, useValue: 'pt-BR'}]
- Use the currency pipe
{{item.limite | currency:'BRL':true}}