Answers for "eslint typescript vite not showing lint on code"

0

eslint typescript vite not showing lint on code

{
  // ...
  overrides: [
    {
      files: ['*.ts', '*.tsx'], // Your TypeScript files extension
      parserOptions: {
        project: ['./tsconfig.json'], // Specify it only for TypeScript files
      },
    }
  ],
  parser: '@typescript-eslint/parser',
  // ...
}
Posted by: Guest on August-08-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language