Closed gnoyixiang closed 2 years ago
The type checks is not working for @typescript-eslint rules. I cloned and repo and tried on the eslint.js file. It works once I change the import from
export type TsEslintPluginRules = Record< keyof typeof import('@typescript-eslint/eslint-plugin/dist/configs/all.json')['rules'], any >;
to
export type TsEslintPluginRules = Record< keyof typeof import('@typescript-eslint/eslint-plugin/dist/configs/all.js')['rules'], any >;
Cool will be bumping the deps soon and will test this out with latest.
The type checks is not working for @typescript-eslint rules. I cloned and repo and tried on the eslint.js file. It works once I change the import from
to