eslint: fix linting

This commit is contained in:
mahula 2025-05-04 22:35:05 +02:00
parent 99216cecba
commit 74d5511cfa
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import { defineUserConfig } from 'vuepress'
import { viteBundler } from '@vuepress/bundler-vite' import { viteBundler } from '@vuepress/bundler-vite'
import { defineUserConfig } from 'vuepress'
import { hopeTheme } from 'vuepress-theme-hope' import { hopeTheme } from 'vuepress-theme-hope'
export default defineUserConfig({ export default defineUserConfig({

View File

@ -4,5 +4,5 @@
"lib": ["es5", "dom"], "lib": ["es5", "dom"],
"types": ["cypress", "node"] "types": ["cypress", "node"]
}, },
"include": ["./**/*.ts"] "include": ["./**/*.ts", ".vuepress/config.ts"]
} }

View File

@ -6,6 +6,6 @@
"strict": true, "strict": true,
"types": ["cypress", "node"] "types": ["cypress", "node"]
}, },
"include": ["**/*.ts"], "include": ["**/*.ts", ".vuepress/config.ts"],
"exclude": ["node_modules"] "exclude": ["node_modules"]
} }