2 files changed, 1 insertions, 2 deletions
diff --git a/api/package.json b/api/package.json
index a5ec5f37..8ad7f201 100644
--- a/api/package.json
+++ b/api/package.json
@@ -8,7 +8,7 @@
"test": "jest",
"test:watch": "jest --watch",
"start": "npm run build && node dist/start",
- "build": "tsc -b .",
+ "build": "npx tsc -b .",
"build-docker": "tsc -p tsconfig-docker.json",
"dev": "tsnd --respawn src/start.ts"
},
diff --git a/api/src/index.ts b/api/src/index.ts
index 6037e31f..73b9dbd2 100644
--- a/api/src/index.ts
+++ b/api/src/index.ts
@@ -5,7 +5,6 @@ export * from "./schema/Channel";
export * from "./schema/Guild";
export * from "./schema/Invite";
export * from "./schema/Message";
-export * from "./util/Config";
export * from "./util/Constants";
export * from "./util/instanceOf";
export * from "./util/instanceOf";
|