This is how I use TSLint:
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
export default tseslint.config(
pluginJs.configs.recommended,
tseslint.configs.recommended, // note the change in this line
{
ignores: [],
rules: {},
}
);
Link to the full config file: https://github.com/Jay-Karia/jqlite/blob/main/eslint.config.mjs