| 1 | import nextCoreVitals from "eslint-config-next/core-web-vitals.js"; |
| 2 | import nextTypescript from "eslint-config-next/typescript.js"; |
| 3 | |
| 4 | const eslintConfig = [ |
| 5 | nextCoreVitals, |
| 6 | nextTypescript, |
| 7 | { |
| 8 | ignores: [".next/**", "out/**", "build/**", "next-env.d.ts"], |
| 9 | }, |
| 10 | ]; |
| 11 | |
| 12 | export default eslintConfig; |
| 13 |