Add VSCode IntelliSense support.

This commit is contained in:
Michael Teeuw 2016-10-13 13:10:33 +02:00
parent d5d22844ab
commit 2b4939a875

13
jsconfig.json Normal file
View File

@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=759670
// for the documentation about the jsconfig.json format
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"allowSyntheticDefaultImports": true
},
"exclude": [
"modules",
"node_modules"
]
}