While building the angular app on azure devops pipeline getting an error related to ngx-mask. But on local it is working fine.
The error is:-
./node_modules/cdp-angular-controls/fesm2020/cdp-angular-controls.mjs:1964:67-83 - Error: export 'MaskDirective' (imported as 'i3') was not found in 'ngx-mask' (possible exports: INITIAL_CONFIG, NEW_CONFIG, NGX_MASK_CONFIG, NgxMaskDirective, NgxMaskModule, NgxMaskPipe, NgxMaskService, _configFactory, initialConfig, timeMasks, withoutValidation)
Initially I upgraded the ngx-mask version from 14.2.3 to 14.3.0 but was getting
"Error: src/app/app.module.ts:18:10 - error TS2305: Module '"ngx-mask"' has no exported member 'NgxMaskModule'.
18 import { NgxMaskModule } from 'ngx-mask';"
So, I downgrade it to 14.2.4 and it was working fine. But, after code check-in to server while running the pipeline getting new error.
Expectation:- -> Build is successful on local & devops pipeline. -> OR get the same errors on server & local.
