1 files changed, 6 insertions, 1 deletions
diff --git a/gateway/tsconfig.json b/gateway/tsconfig.json
index e5bf92c6..2530aa41 100644
--- a/gateway/tsconfig.json
+++ b/gateway/tsconfig.json
@@ -67,6 +67,11 @@
/* Advanced Options */
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
- "resolveJsonModule": true
+ "resolveJsonModule": true,
+ "baseUrl": ".",
+ "paths": {
+ "@fosscord/gateway/*": ["src/*"],
+ "@fosscord/util/*": ["../util/src/*"]
+ }
}
}
|