Skip to content

Instantly share code, notes, and snippets.

@carlos-algms
Created June 14, 2018 18:54
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