Skip to content

Instantly share code, notes, and snippets.

@risingnote
Created December 16, 2016 17:07
Show Gist options
  • Save risingnote/411e72ebe72b168f40244c5813630bdc to your computer and use it in GitHub Desktop.
Save risingnote/411e72ebe72b168f40244c5813630bdc to your computer and use it in GitHub Desktop.
vscode jsconfig examples
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"allowSyntheticDefaultImports": true
},
"exclude": [
"node_modules",
"bower_components",
"jspm_packages",
"tmp",
"temp"
]
}
{
"compilerOptions": {
"target": "es6",
"module": "es6",
"allowSyntheticDefaultImports": true
},
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment