Skip to content

Instantly share code, notes, and snippets.

@elvan
Last active April 2, 2023 07:22
Show Gist options
  • Save elvan/a7d56e0f9d8ad0849d0631a5635e1c22 to your computer and use it in GitHub Desktop.
Save elvan/a7d56e0f9d8ad0849d0631a5635e1c22 to your computer and use it in GitHub Desktop.
An example of jsconfig.json for React projects
{
"compilerOptions": {
"checkJs": false,
"jsx": "react",
"module": "UMD",
"moduleResolution": "nodenext",
"target": "es6",
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment