16 lines
354 B
JavaScript
16 lines
354 B
JavaScript
import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
|
|
import nextTypescript from "eslint-config-next/typescript";
|
|
|
|
const eslintConfig = [...nextCoreWebVitals, ...nextTypescript, {
|
|
ignores: [
|
|
"node_modules/**",
|
|
".next/**",
|
|
".history/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts",
|
|
]
|
|
}];
|
|
|
|
export default eslintConfig;
|