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 23be14e commit 3b22146Copy full SHA for 3b22146
knip.config.ts
@@ -40,6 +40,7 @@ const config: KnipConfig = {
40
},
41
'packages/vue-i18n': {
42
ignore: ['src/runtime.ts'],
43
+ ignoreFiles: ['src/vue.d.ts', 'src/vue.ts'],
44
ignoreDependencies: ['@vue/devtools-api', '@intlify/devtools-types']
45
46
'packages/size-check-core': {
scripts/build-types.ts
@@ -39,7 +39,7 @@ export async function buildTypings(targets: string[]): Promise<void> {
39
}
const ts = await fs.readFile(file, 'utf-8')
- const dts = isolatedDeclaration(file, ts, {
+ const dts = await isolatedDeclaration(file, ts, {
sourcemap: false,
stripInternal: true
})
0 commit comments