eslint icon indicating copy to clipboard operation
eslint copied to clipboard

Upgrading from 9.x to 10.x introduces error within VS Code: typescript with invalid interface loaded as resolver

Open ffxsam opened this issue 2 years ago • 0 comments

When I upgrade @nuxtjs/eslint-config-typescript to 10.0.0, I see this error in VS Code:

CleanShot 2022-07-04 at 13 13 47

Relevant config:

  env: {
    browser: true,
    es2021: true,
    node: true,
  },
  extends: [
    'eslint:recommended',
    'plugin:vue/vue3-recommended',
    '@vue/typescript/recommended',
    '@nuxtjs/eslint-config-typescript',
  ],
  parser: 'vue-eslint-parser',
  parserOptions: {
    ecmaVersion: 'latest',
    parser: '@typescript-eslint/parser',
    sourceType: 'module',
  },
  plugins: ['vue', '@typescript-eslint'],

ffxsam avatar Jul 04 '22 18:07 ffxsam