Reactjs – Unable to Enforce Restricted Imports in TypeScript Project Despite Configuring baseUrl and resolve
I'm trying to enforce restricted imports in my TypeScript project using ESLint, but I'm encountering issues with the configuration. I've set the baseUrl in my tsconfig.json to "src" and tried using modules in my ESLint configuration with path.resolve(__dirname, "app"), but…