import coreWebVitals from "eslint-config-next/core-web-vitals"; import typescript from "eslint-config-next/typescript"; const eslintConfig = [ { ignores: [ ".next/**", ".open-next/**", ".wrangler/**", "coverage/**", "node_modules/**", "playwright-report/**", "test-results/**", ], }, ...coreWebVitals, ...typescript, ]; export default eslintConfig;