diff --git a/scripts/client/jsconfig.json b/scripts/client/jsconfig.json index 9c32b246..a5e369f2 100644 --- a/scripts/client/jsconfig.json +++ b/scripts/client/jsconfig.json @@ -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/*" ] } \ No newline at end of file diff --git a/scripts/server/jsconfig.json b/scripts/server/jsconfig.json index 447ac942..f0347317 100644 --- a/scripts/server/jsconfig.json +++ b/scripts/server/jsconfig.json @@ -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" ] } \ No newline at end of file