import js from '@eslint/js' import tseslint from 'typescript-eslint' export default tseslint.config( { ignores: ['dist'] }, { files: ['src/**/*.ts'], extends: [js.configs.recommended, ...tseslint.configs.recommended], languageOptions: { ecmaVersion: 2022 }, rules: { '@typescript-eslint/no-explicit-any': 'warn', 'no-console': 'off', }, }, )