eslint typescript vite not showing lint on code

Solutions on MaxInterview for eslint typescript vite not showing lint on code by the best coders in the world

showing results for - "eslint typescript vite not showing lint on code"
Edoardo
04 Jan 2020
1{
2  // ...
3  overrides: [
4    {
5      files: ['*.ts', '*.tsx'], // Your TypeScript files extension
6      parserOptions: {
7        project: ['./tsconfig.json'], // Specify it only for TypeScript files
8      },
9    }
10  ],
11  parser: '@typescript-eslint/parser',
12  // ...
13}
14