diff options
author | destruc7i0n <6181960+destruc7i0n@users.noreply.github.com> | 2021-12-24 17:51:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-24 17:51:26 -0500 |
commit | 328eec0cd4fff00f19e734cc7e9b54124ab44cf5 (patch) | |
tree | 3a36a0884f2d280ced7fedefffef4ad08574deed /tsconfig.json | |
parent | check if channel is valid on launch (diff) | |
download | shulker-328eec0cd4fff00f19e734cc7e9b54124ab44cf5.tar.gz shulker-328eec0cd4fff00f19e734cc7e9b54124ab44cf5.zip |
updated to discord.js v13 (#77)
* updated to discord.js v13 * update loading of config * updated debug lines * rcon cleanup * more code cleanup * bump version * message about node.js requirement Co-authored-by: destruc7i0n <destruc7i0n@users.noreply.github.com>
Diffstat (limited to '')
-rw-r--r-- | tsconfig.json | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/tsconfig.json b/tsconfig.json index d530d8a..9070fb4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,7 @@ { "compilerOptions": { "target": "es5", - "lib": [ - "es2018", - "esnext" - ], + "lib": ["es2018", "esnext"], "allowJs": true, "esModuleInterop": true, "noImplicitAny": true, @@ -13,14 +10,10 @@ "strict": false, "strictNullChecks": true, "strictFunctionTypes": true, + "downlevelIteration": true, "outDir": "build/", "moduleResolution": "node" }, - "include": [ - "./src/**/*", - "./typings/**/*" - ], - "exclude": [ - "node_modules" - ] + "include": ["./src/**/*", "./typings/**/*"], + "exclude": ["node_modules"] } |