summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js14
1 files changed, 8 insertions, 6 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index f3b7cac..9ec4bcf 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -4,13 +4,15 @@ module.exports = {
node: true
},
'extends': [
- 'plugin:vue/vue3-essential',
- 'eslint:recommended',
- '@vue/typescript/recommended'
- ],
+ 'plugin:vue/vue3-essential',
+ 'eslint:recommended',
+ '@vue/typescript/recommended',
+ '@vue/typescript'
+ ],
parserOptions: {
- ecmaVersion: 2020
- },
+ ecmaVersion: 2020,
+ parser: '@typescript-eslint/parser'
+ },
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'