aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-25 18:32:18 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-25 18:32:18 -0400
commit479122efbd892c513b12b00f7860659e7fff8116 (patch)
treeab4be1be829e279e70e253eddbe768727891c1aa
parent398cf196bc145f856849925846df6f313e4f6184 (diff)
downloadtanzanite-479122efbd892c513b12b00f7860659e7fff8116.tar.gz
tanzanite-479122efbd892c513b12b00f7860659e7fff8116.tar.bz2
tanzanite-479122efbd892c513b12b00f7860659e7fff8116.zip
fix: misc
-rw-r--r--.github/FUNDING.yml2
-rw-r--r--package.json2
-rw-r--r--src/config/example-options.ts2
-rw-r--r--tsconfig.json2
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index 10abed2..8ece85b 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -1,6 +1,6 @@
# These are supported funding model platforms
-github: [IRONM00N]# Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
+github: [IRONM00N] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: IRONM00N # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
diff --git a/package.json b/package.json
index b63bf9a..c924bfc 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,7 @@
"@lib": "dist/lib"
},
"scripts": {
- "build-esbuild": "yarn rimraf dist && yarn esbuild --sourcemap=inline --minify-whitespace --minify-syntax --outdir=dist --platform=node --target=es2020 --format=cjs --log-level=warning src/**/*.ts",
+ "build-esbuild": "yarn rimraf dist && yarn esbuild --sourcemap=inline --outdir=dist --platform=node --target=es2020 --format=cjs --log-level=warning src/**/*.ts",
"build-tsc": "yarn rimraf dist && yarn tsc",
"_start": "yarn build-esbuild && node --trace-warnings -r source-map-support/register dist/bot.js",
"start": "yarn build-tsc && node --trace-warnings -r source-map-support/register dist/bot.js",
diff --git a/src/config/example-options.ts b/src/config/example-options.ts
index ed3fd51..55e655c 100644
--- a/src/config/example-options.ts
+++ b/src/config/example-options.ts
@@ -27,7 +27,7 @@ export default new Config({
},
logging: {
db: false,
- verbose: true,
+ verbose: false,
info: true
}
});
diff --git a/tsconfig.json b/tsconfig.json
index 751efc2..a4c0c58 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"module": "commonjs",
- "target": "esNext",
+ "target": "esnext",
"outDir": "dist",
"lib": ["ESNext", "ESNext.Array", "ESNext.AsyncIterable", "ESNext.Intl", "ESNext.Symbol", "DOM"],
"sourceMap": false,