diff options
| author | Fuwn <[email protected]> | 2025-09-24 19:33:25 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-24 19:33:33 -0700 |
| commit | f26c434d77071e89356f2ec0c64f4787f07b166b (patch) | |
| tree | 6223e1c70f36334eb5f5c73b78fbfe8284d62195 /packages/gateway | |
| parent | chore: Update package names (diff) | |
| download | umabotdiscord-f26c434d77071e89356f2ec0c64f4787f07b166b.tar.xz umabotdiscord-f26c434d77071e89356f2ec0c64f4787f07b166b.zip | |
refactor: Move shared constants to shared module
Diffstat (limited to 'packages/gateway')
| -rw-r--r-- | packages/gateway/src/constants.ts | 2 | ||||
| -rw-r--r-- | packages/gateway/tsconfig.json | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/packages/gateway/src/constants.ts b/packages/gateway/src/constants.ts index 77ef6cd..c660644 100644 --- a/packages/gateway/src/constants.ts +++ b/packages/gateway/src/constants.ts @@ -1 +1 @@ -export const GUILD_ID = "1406422617724026901"; +export { GUILD_ID } from "../../shared"; diff --git a/packages/gateway/tsconfig.json b/packages/gateway/tsconfig.json index c2767fd..e3953f6 100644 --- a/packages/gateway/tsconfig.json +++ b/packages/gateway/tsconfig.json @@ -13,7 +13,6 @@ "isolatedModules": true, "noEmit": false, "outDir": "./dist", - "rootDir": "./src", "declaration": true, "declarationMap": true, "sourceMap": true |