I configured eslint in the project but it is pointing import and export errors.
I added the plugin config:
"plugins": [
"@typescript-eslint"
"@typescript-eslint/tslint"
]
but it is generating the error " Failed to load plugin '@typescript-eslint/tslint' declared in '.eslintrc.json': Cannot find module 'tslint'"
In the devDependencies was added:
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.5.0"
how could I solve this issue?