.eslintrc.js 284 B

12345678
  1. module.exports = {
  2. extends: ["@/build-config/eslintrc-typescript-react"],
  3. parserOptions: {
  4. tsconfigRootDir: __dirname,
  5. },
  6. // TODO (MR): Figure out a way to not have to ignored the next config .js
  7. ignorePatterns: [".eslintrc.js", "next.config.base.js"],
  8. };