I'm very new to Nx and today I tried to migrate all our Angular apps from TSLint to ESLint. What I did was to run the following command for each app:
nx g convert-tslint-to-eslint --project=SELECTED_PROJECT
After the migration I ran npm install and then npm run lint. But each time I run the linter, I get the following error without any detailed information:
Cannot read properties of undefined (reading 'start')
The project specs:
- Angular v12.2.13
- Nx v12.10.1
Any idea what might be wrong?