Skip to content

Instantly share code, notes, and snippets.

@carlos-algms
Created June 14, 2018 18:54
Show Gist options
  • Save carlos-algms/04ec437e7e5821b6ba4f228eb6fd54b7 to your computer and use it in GitHub Desktop.
Save carlos-algms/04ec437e7e5821b6ba4f228eb6fd54b7 to your computer and use it in GitHub Desktop.
VSCode jsconfig.json enable type acquisitions for JavaScript
{
"compilerOptions": {
"target": "es6"
},
"typeAcquisition": {
"include": [
"chai",
"chai-as-promised",
"lodash",
"mocha",
"sinon",
"sinon-chai"
]
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment