Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9140c63 commit e2d50c7Copy full SHA for e2d50c7
.changeset/eight-camels-refuse.md
@@ -0,0 +1,5 @@
1
+---
2
+"eslint-plugin-vue": patch
3
4
+
5
+Resolved TypeScript compatibility issues introduced by eslint-typegen
tools/generate-typegen.mjs
@@ -2,8 +2,13 @@ import fs from 'node:fs/promises'
import { pluginsToRulesDTS } from 'eslint-typegen/core'
import plugin from '../lib/index.js'
-const dts = await pluginsToRulesDTS({
6
- vue: plugin
7
-})
+const dts = await pluginsToRulesDTS(
+ {
+ vue: plugin
8
+ },
9
10
+ includeAugmentation: false
11
+ }
12
+)
13
14
await fs.writeFile('lib/eslint-typegen.d.ts', dts)
0 commit comments