diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-09-06 20:41:51 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-09-06 20:41:51 -0400 |
commit | 7e3f789f5bbe245710e4d32d47070c6dade092b7 (patch) | |
tree | 95ffb432afa2211d97045003fe82cc9eedd1ef9f | |
parent | 4c9ecda5ea07984109c4a9cfc121c916fe5d4a0b (diff) | |
parent | 66cc90cafe96b19665abd393d056e23db73ba10d (diff) | |
download | tanzanite-7e3f789f5bbe245710e4d32d47070c6dade092b7.tar.gz tanzanite-7e3f789f5bbe245710e4d32d47070c6dade092b7.tar.bz2 tanzanite-7e3f789f5bbe245710e4d32d47070c6dade092b7.zip |
Merge branch 'master' of https://github.com/NotEnoughUpdates/bush-bot
-rw-r--r-- | tsconfig.json | 28 |
1 files changed, 6 insertions, 22 deletions
diff --git a/tsconfig.json b/tsconfig.json index 0cc1391..f3fa5ba 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,14 +3,7 @@ "module": "commonjs", "target": "esnext", "outDir": "dist", - "lib": [ - "esnext", - "esnext.array", - "esnext.asyncIterable", - "esnext.intl", - "esnext.symbol", - "DOM" - ], + "lib": ["esnext", "esnext.array", "esnext.asyncIterable", "esnext.intl", "esnext.symbol", "DOM"], "sourceMap": false, "inlineSourceMap": true, "inlineSources": true, @@ -26,20 +19,11 @@ "baseUrl": "./", "useUnknownInCatchVariables": false, "paths": { - "src/*": [ - "./src/*" - ], - "@lib": [ - "./src/lib" - ], - "@root": [ - "." - ] + "src/*": ["./src/*"], + "@lib": ["./src/lib"], + "@root": ["."] } }, - "include": [ - "src/**/*.ts", - "ecosystem.config.js" - ], + "include": ["src/**/*.ts", "ecosystem.config.js"], "exclude": [] -}
\ No newline at end of file +} |