Migrate from TSLint to ESLint
TSLint has been the recommended linter in the past but now TSLint is deprecated and ESLint is taking over its duties. This article will help you migrate from TSLint to ESLint.
ESLint: Installation
You need to install ESLint. ESLint doesn't natively support TypeScript, so you will also need to install eslint-typescript-support:
npm install --save-dev eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin
or if you're using yarn as your package manager:
yarn add eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin --dev