Last active
April 2, 2023 07:22
-
-
Save elvan/a7d56e0f9d8ad0849d0631a5635e1c22 to your computer and use it in GitHub Desktop.
An example of jsconfig.json for React projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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