'Some Modules not showing in import suggestion after implementing paths in jsconfig.json

I'm Making My App in Next.js and was struggling thru importing from deep folders

I saw this post https://nextjs.org/docs/advanced-features/module-path-aliases

But after i implemented paths in jsconfig.json

{
  "compilerOptions": {
    "target": "es2020",
    "baseUrl": ".",
    "paths": {
      "@styles/*": ["./styles/*"],
      "@components/*": ["./src/components/*"]
    }
  }
}

I'm not able to see suggestion for import of any other module from node_modules which starts with @

See Here

Because of this i cant use emmets for material ui (mui)



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source