// eslint-config-next v16 ships flat-config exports natively; no FlatCompat shim. import nextWebVitals from "eslint-config-next/core-web-vitals"; import nextTypescript from "eslint-config-next/typescript"; const config = [ ...nextWebVitals, ...nextTypescript, { ignores: [ ".next/**", "node_modules/**", "coverage/**", "next-env.d.ts", // Auto-generated by `msw init` — patched on every MSW upgrade. "public/mockServiceWorker.js", ], }, ]; export default config;