module.exports = { root: true, extends: [ "eslint:recommended", "plugin:react/recommended", "plugin:react-hooks/recommended", "plugin:react/jsx-runtime", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking", "prettier", ], plugins: ["@typescript-eslint", "prettier", "react", "react-hooks"], parser: "@typescript-eslint/parser", parserOptions: { project: ["./tsconfig.json", "tools/tsconfig.json"], tsconfigRootDir: __dirname }, settings: { react: { version: "detect", }, }, };