Fix JS configs for VSCode

This commit is contained in:
Vortrex
2021-05-08 08:36:18 -05:00
parent 1b1308ec8e
commit e1b5f32563
3 changed files with 18 additions and 5 deletions

View File

@@ -1,12 +1,11 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"target": "ES6",
"moduleResolution": "classic"
},
"include": [
"server/*",
"client/*",
"third-party/*"
"./*.js",
"../shared/*.js"
]
}

View File

@@ -1 +0,0 @@
empty

View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES6",
"moduleResolution": "classic"
},
"include": [
"./*.js",
"job/*.js",
"business/*.js",
"item/*.js",
"npc/*.js",
"../shared/*.js"
]
}