Currently working on my Angular 11 project, I am faced with the challenge of transitioning from tslint to eslint. When attempting the command below:
ng add @angular-eslint/schematics
An error arises:
Error: Angular CLI v10.1.0 and later (and no
tsconfig.base.json
) is required in order to run this schematic. Please update your workspace and try again.
Despite having an Angular CLI version higher than 10.1.0
, why do I still possess the tsconfig.base.json
file and how can I resolve this issue?