diff --git a/.eslintrc.js b/.eslintrc.js index d5db580..973909b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -24,6 +24,7 @@ module.exports = { }, plugins: ['vue', '@typescript-eslint', 'prettier'], rules: { + 'no-undef': 'off', 'vue/multi-word-component-names': 'off', '@typescript-eslint/ban-ts-ignore': 'off', '@typescript-eslint/no-unused-vars': 'warn', diff --git a/tsconfig.json b/tsconfig.json index 814b016..3e945b9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,7 @@ "jsx": "preserve", "moduleResolution": "node", "skipLibCheck": true, + "ignoreDeprecations": "5.0", "suppressImplicitAnyIndexErrors": true, "esModuleInterop": true, "allowJs": true,