chore(vscode): add jsconfig.json and remove .settings dir
VSCode recognizes jsconfig.json for es6 code in the same way as it recognizes tsconfig.json for ts code. Closes #4955
This commit is contained in:
parent
b329a58416
commit
6815acea32
|
@ -29,6 +29,7 @@ tmp
|
||||||
pubspec.lock
|
pubspec.lock
|
||||||
.c9
|
.c9
|
||||||
.idea/
|
.idea/
|
||||||
|
.settings/
|
||||||
*.swo
|
*.swo
|
||||||
modules/.settings
|
modules/.settings
|
||||||
.vscode
|
.vscode
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
"search.exclude": {
|
|
||||||
".git" : true,
|
|
||||||
".idea": true,
|
|
||||||
"node_modules" : true,
|
|
||||||
"bower_components" : true,
|
|
||||||
"packages" : true,
|
|
||||||
"build" : true,
|
|
||||||
"dist" : true,
|
|
||||||
"tmp" : true
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es6",
|
||||||
|
"module": "commonjs"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue