import { defineConfig, globalIgnores } from 'eslint/config' import nextCoreWebVitals from 'eslint-config-next/core-web-vitals' import nextTypescript from 'eslint-config-next/typescript' export default defineConfig([ globalIgnores(['.next/**', 'node_modules/**', 'next-env.d.ts']), nextCoreWebVitals, nextTypescript, ])