.eslintrc.js 268 B

1234567891011
  1. /** @type {import("eslint").Linter.Config} */
  2. module.exports = {
  3. root: true,
  4. extends: ["@repo/eslint-config/react-internal.js"],
  5. parser: "@typescript-eslint/parser",
  6. parserOptions: {
  7. project: "./tsconfig.lint.json",
  8. tsconfigRootDir: __dirname,
  9. },
  10. };