I need ESLint to exclusively focus on processing .ts files and not .js files.
In order to achieve that, I made a .eslintignore
file and included the following lines:
*.js
**/*.js
Nevertheless, it appears that ESLint is disregarding this file. Is there something obvious that I am overlooking?