diff --git a/vite.config.ts b/vite.config.ts index add2aa7..53cdf23 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -5,5 +5,12 @@ import checker from "vite-plugin-checker"; // https://vitejs.dev/config/ export default defineConfig({ - plugins: [react(), tsconfigPaths(), checker({ typescript: true })], + plugins: [ + react(), + tsconfigPaths(), + checker({ + typescript: true, + eslint: { lintCommand: "eslint .", useFlatConfig: true }, + }), + ], });