Fix VS Code errors by setting JS version

This commit is contained in:
Zoroark 2021-11-27 18:11:18 +01:00
parent dfad51cdec
commit c1c64f190e

View File

@ -1,10 +1,11 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"*"
]
}
}
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"*"
]
},
"target": "es2015"
}
}