diff --git a/packages/eslint-config-typescript/index.js b/packages/eslint-config-typescript/index.js index e2ead9dc..c14621b6 100644 --- a/packages/eslint-config-typescript/index.js +++ b/packages/eslint-config-typescript/index.js @@ -3,7 +3,10 @@ module.exports = { '@nuxtjs' ], plugins: ['@typescript-eslint'], - parser: '@typescript-eslint/parser', + parser: "vue-eslint-parser", + parserOptions: { + "parser": "@typescript-eslint/parser", + }, rules: { '@typescript-eslint/no-unused-vars': ['error', { args: 'all', argsIgnorePattern: '^_' }], // Per the docs, the root no-unused-vars should be disabled: