Created
January 23, 2020 11:51
-
-
Save Alexisvt/617c5f2f49b3731b5569d84026ec6646 to your computer and use it in GitHub Desktop.
A configuration file for VSCode to work with Node.js projects
This file contains hidden or 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": { | |
"target": "es2015", | |
"allowSyntheticDefaultImports": true, | |
// why set module property https://github.com/Microsoft/vscode/issues/73118#issuecomment-488252519 | |
"module": "commonjs", | |
"checkJs": true | |
}, | |
"exclude": ["node_modules"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment