ente/web/packages/build-config/eslintrc-next-app.mjs
2024-11-20 08:03:56 +05:30

19 lines
313 B
JavaScript

// @ts-check
import config from "./eslintrc-react.mjs";
// A base config for Next.js apps.
export default [
...config,
{
ignores: [
"out",
".next",
"public",
".env*",
"next.config.js",
"next-env.d.ts",
],
},
];