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 26d99fd commit 59e9781Copy full SHA for 59e9781
tools/generate-typegen.mjs
@@ -2,8 +2,13 @@ import fs from 'node:fs/promises'
2
import { pluginsToRulesDTS } from 'eslint-typegen/core'
3
import plugin from '../lib/index.js'
4
5
-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