Update JS config files

This commit is contained in:
Vortrex
2022-01-09 17:18:23 -06:00
parent 990fc9b450
commit d6836a7064
2 changed files with 9 additions and 5 deletions

View File

@@ -1,11 +1,14 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES6",
"target": "es6",
"moduleResolution": "classic"
},
"include": [
"./*.js",
"../shared/*.js"
"*.js",
"gui/*.js",
"native/*.js",
"../shared/*.js",
"../third-party/mexui/*"
]
}

View File

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