Next.js: Absolute imports

Next.js: Absolute imports

Here is an example of a jsconfig.json or tsconfig.json file for absolute imports
{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/components/*": ["src/components/*"],
      "@/styles/*": ["src/styles/*"],
      "@/state/*": ["src/state/*"],
      "@/lib/*": ["src/lib/*"]
    }
  }
}