{ "parser": "@typescript-eslint/parser", "extends": ["plugin:@typescript-eslint/recommended"], "parserOptions": { "ecmaVersion": 2018, // Allows for the parsing of modern ECMAScript features "sourceType": "module" // Allows for the use of imports }, "rules": { "react/jsx-uses-react": "off", "react/react-in-jsx-scope": "off", "quotes": [2, "single"], "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-this-alias": "off", "@typescript-eslint/no-empty-interface": "off" } }