Skip to content

Instantly share code, notes, and snippets.

@yeasin2002
Last active May 3, 2024 09:13
Show Gist options
  • Save yeasin2002/7b7f79a6c3dc07945b4af822e80cdf7c to your computer and use it in GitHub Desktop.
Save yeasin2002/7b7f79a6c3dc07945b4af822e80cdf7c to your computer and use it in GitHub Desktop.
VS Code auto suggestions issue fix

for nextjs:

{
  "include": ["**/*"],
  "exclude": ["node_modules", "**/node_modules", "dist", "build", ".next"],
  "compilerOptions": {
    "paths": {
      "@/*": ["./*"]
    },
    "allowJs": true,
    "target": "es6",
    "module": "esnext",
    "moduleResolution": "node"
  }
}

for reactjs

{
  "include": ["**/*"],
  "exclude": ["node_modules", "**/node_modules", "dist", "build"],
  "compilerOptions": {
    "allowJs": true,
    "target": "es6",
    "module": "esnext",
    "moduleResolution": "node"
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment