13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
import { defineConfig, globalIgnores } from "eslint/config";
|
|
|
|
const eslintConfig = defineConfig([
|
|
globalIgnores([
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts",
|
|
]),
|
|
]);
|
|
|
|
export default eslintConfig;
|