Oxlint has type rule.meta.replacedBy?: RuleReplacedByInfo[] for JS plugin.
But ESLint has rule.meta.replacedBy?: readonly string[] | undefined; defined here.
The below screenshot shows the type error when I'm trying to pass down eslintCompatPlugin({ ... }) into the type of import('@eslint/core').Plugin

Oxlint has type
rule.meta.replacedBy?: RuleReplacedByInfo[]for JS plugin.But ESLint has
rule.meta.replacedBy?: readonly string[] | undefined;defined here.The below screenshot shows the type error when I'm trying to pass down
eslintCompatPlugin({ ... })into the type ofimport('@eslint/core').Plugin