import js from "@eslint/js"; import tseslint from "@typescript-eslint/eslint-plugin"; import tsparser from "@typescript-eslint/parser"; export default [ js.configs.recommended, { files: ["**/*.ts"], languageOptions: { parser: tsparser, parserOptions: { ecmaVersion: 2022, sourceType: "module", }, globals: { console: "readonly", process: "readonly", }, }, plugins: { "@typescript-eslint": tseslint, }, rules: { ...tseslint.configs.recommended.rules, "@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }], "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/no-explicit-any": "warn", "prefer-const": "error", "no-var": "error", "no-undef": "off", }, }, { files: ["examples/**/*.ts"], languageOptions: { globals: { console: "readonly", process: "readonly", }, }, }, { ignores: ["dist/**", "node_modules/**", "*.js", "!eslint.config.mjs"], }, ];