import js from "@eslint/js"; import tseslint from "typescript-eslint"; export default [ { ignores: [ ".codex/**", ".lean-ctx/**", ".opencode/**", "dist/**", "node_modules/**", ], }, js.configs.recommended, ...tseslint.configs.recommended, { files: ["**/*.ts", "**/*.mjs"], rules: { "no-undef": "off", }, }, ];