Skip to content

Instantly share code, notes, and snippets.

@Alexisvt
Created January 23, 2020 11:51
Show Gist options
  • Save Alexisvt/617c5f2f49b3731b5569d84026ec6646 to your computer and use it in GitHub Desktop.
Save Alexisvt/617c5f2f49b3731b5569d84026ec6646 to your computer and use it in GitHub Desktop.
A configuration file for VSCode to work with Node.js projects
{
"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