Error while loading rule ‘@typescript-eslint/dot-notation’. .eslintrc.json

ERROR
[eslint] Error while loading rule '@typescript-eslint/dot-notation': You have used a rule which requires parserServices to be generated. You must therefore provide a value for the "parserOptions.project" property for @typescript-eslint/parser.

this is the .eslintrc.json file contains

{
    "env": {
        "browser": true,
        "es2021": true
    },
    "extends": [
        "standard-with-typescript",
        "plugin:react/recommended"
    ],
    "parserOptions": {
        "ecmaVersion": "latest",
        "sourceType": "module",
        "project": "tsconfig.json",
        "tsconfigRootDir": "./"
    },
    "plugins": [
        "react"
    ],
    "rules": {
        "@typescript-eslint/no-unnecessary-type-assertion": 2
    }
}

“project”: “tsconfig.json”, already tried adding this but when I do so I keep getting other eslint errors.