// @ts-check import tseslint from 'typescript-eslint'; import reactHooks from 'eslint-plugin-react-hooks'; import reactRefresh from 'eslint-plugin-react-refresh'; import globals from 'globals'; export default tseslint.config( { ignores: ['dist', 'node_modules'] }, { extends: [...tseslint.configs.recommendedTypeChecked], files: ['**/*.{ts,tsx}'], languageOptions: { globals: globals.browser, parserOptions: { project: true, tsconfigRootDir: import.meta.dirname, }, }, plugins: { 'react-hooks': reactHooks, 'react-refresh': reactRefresh, }, rules: { ...reactHooks.configs.recommended.rules, 'react-refresh/only-export-components': [ 'warn', { allowConstantExport: true }, ], }, }, );