We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6900058 commit 82ec0caCopy full SHA for 82ec0ca
packages/plugin-vue-jsx/index.d.ts
@@ -1,6 +1,14 @@
1
import { Plugin } from 'vite'
2
import { VueJSXPluginOptions } from '@vue/babel-plugin-jsx'
3
+import { FilterPattern } from '@rollup/pluginutils'
4
-declare function createPlugin(options?: VueJSXPluginOptions): Plugin
5
+declare interface FilterOptions {
6
+ include?: FilterPattern
7
+ exclude?: FilterPattern
8
+}
9
+
10
+declare function createPlugin(
11
+ options?: VueJSXPluginOptions & FilterOptions
12
+): Plugin
13
14
export default createPlugin
0 commit comments