fix: disable eslint for Vue 3 type shim (for now)

See https://github.com/vuejs/vue-cli/pull/6023

It's not the ideal solution, though.

In the long run we should have the shim built-in (either in this plugin
or in the `vue-loader` package), for which ESLint rules should be
properly applied, and the user can simply import that shim module.
This commit is contained in:
Haoqun Jiang
2020-12-14 19:21:33 +08:00
parent e22d7f867a
commit 81dc30a56f
@@ -1,3 +1,4 @@
/* eslint-disable */
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>