As I attempt to create an angular project on Azure DevOps, the build is successful when using ng build
on my Visual Studio machine. However, when trying online with the Angular CLI Task, numerous errors occur, such as the one regarding ng-uikit-pro-standard:
ERROR in node_modules/ng-uikit-pro-standard/lib/free/buttons/radio.directive.d.ts:19:9 - error TS2380: 'get' and 'set' accessor must have the same type.
19 get uncheckable(): boolean;
~~~~~~~~~~~
ERROR in node_modules/ng-uikit-pro-standard/lib/free/buttons/radio.directive.d.ts:20:9 - error TS2380: 'get' and 'set' accessor must have the same type.
20 set uncheckable(value: BooleanInput);
~~~~~~~~~~~
Could there be a TypeScript version discrepancy between Azure and my local machine?
UPDATE: Following MikeOne's suggestion, I switched from the Angular CLI Task to a node task, but the errors persist.